Writing documentation is no easy task. It takes a lot of time and effort to write good documentation for any product, service, or technology. But all this effort and time would be wasted if users are not finding it helpful. To bridge this gap, larger corporations provide a simple feedback form at the end of their documentation articles that asks the user a simple question βDid you find this article useful?β. Recently, while working on a clientβs project, we found a need for a solution that allows us to get user feedback on our documentation. In this article, we will show you how to get readers feedback on your documentation in WordPress.
First thing you need to do is install and activate Document Feedback plugin. Once activated the plugin adds a nice little prompt at the end of your WordPress pages asking for user feedback.
Otherwise, if a user clicked No, they are asked what information they would like to see here.
The plugin then displays the document feedback to the authors/admins.
This plugin is fairly new, and it is in itβs infancy stage. The plugin by default is limited only to pages. However, you can enable for posts, pages, and any other post type that you like. All you would have to do is add the following code in a site-specific plugin:
1 2 3 4 5 6 7 | //Document Feedback Filter function wpb_new_document_post_type( $post_types ){ $post_types = array ( 'page' , 'post' ); // Add post type return $post_types ; } add_filter( 'document_feedback_post_types' , 'wpb_new_document_post_type' ); |
Simply add any other post type that you want in the array above.
The plugin is also limited to logged-in users only. That worked fine for our use case because the documentation was only available to registered customers. From the looks of the pluginβs development comments, it seems that the author has plans on making it available for logged out users as well.
This plugin provides quick private feedback to improve your documentation pages. It is better than embedding a contact form at the bottom of documentation pages or enabling comments. Let us know how you get user feedback on documentation on your sites?