BlueCube Content Feedback

This plugin provides a simple content feedback system.

Author:Blue Cube Communications Ltd (profile at wordpress.org)
WordPress version required:4.5
WordPress version tested:4.5.31
Plugin version:1.0
Added to WordPress repository:17-05-2016
Last updated:11-10-2016
Warning! This plugin has not been updated in over 2 years. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.
Rating, %:0
Rated by:0
Plugin URI:https://thebluecube.com
Total downloads:674
plugin download
Click to start download

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; }