Blue Cube Content Feedback

0

Sometimes you need to know whether users of your website find the content useful or not. This plugin provides an easy YES / NO  feedback system for your website content. Users would

Version
Last updated
Active installations
WordPress Version
Tested up to
Rating
Total ratings
Tags
This plugin is outdated and might not be supported anymore.

Description

Sometimes you need to know whether users of your website find the content useful or not. This plugin provides an easy YES / NO  feedback system for your website content. Users would only need to click on a ‘Yes’ or ‘No’ button, simple as that!

To disable the widget on any specific pages, you can use the ‘bc_show_content_feedback_widget’ filter like this:

add_filter('bc_show_content_feedback_widget', 'turn_off_content_feedback_widget'); function turn_off_content_feedback_widget($show_widget) {     global $post;     if ($post->ID == 198) {         $show_widget = false;     }     return $show_widget; }