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; }
Installation
Download and unzip the plugin. Then upload the "bluecube-content-feedback"
folder to the /wp-content/plugins/
directory (or the relevant directory if your WordPress file structure is different), or you can simply install it using WordPress plugin installer.
Reviews
There are no reviews for this plugin.
Contributors & Developers
“Blue Cube Content Feedback” is open source software. The following people have contributed to this plugin.
ContributorsTranslate “Blue Cube Content Feedback” into your language.
Interested in development?
Browse the code, check out the SVN repository, or subscribe to the development log by RSS.
Changelog
1.0
- This is the first version of the plugin, providing a very simple content feedback system