• It seems that the plugin is currently very limited.

    1. By default it only adds support for feedback prompt on pages and no other post types.

    2. Only logged in users can send feedback.

    Hopefully this will be changed in upcoming version unregistered users can send feedback too. It will be nice if there was a configuration page to select post types and decide whether or not to accept anonymous feedback.

    UPDATE:

    Seems like more post types can be added using a filter. I am changing my rating accordingly.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Why are you rating this plugin 2 stars for doing what it says it does?

    I wouldn’t hold features a plugin doesn’t claim to have against that plugin. I hope you’ll reconsider your lower rating in that light, and rate it on the scale of 1 – 5 of how the plugin functions as it was built.

    Also, you can choose to use more than just pages for post types by adding a filter:

    add_filter( 'document_feedback_post_types', 'add_more_feedback_post_types' );
    function add_more_feedback_post_types ( $post_types ) {
        $post_types[] = 'post';
        $post_types[] = 'another_post_type';
        // ... etc
    
        return $post_types;
    }
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Limited Functionality with potential to extend’ is closed to new replies.