helsingborg-stad / customer-feedback
This WordPress plugin adds a feedback form to the end of every page (or any other activated post type).
Package info
github.com/helsingborg-stad/Customer-feedback
Type:wordpress-plugin
pkg:composer/helsingborg-stad/customer-feedback
Requires
- helsingborg-stad/acf-export-manager: >=1.0.0
- helsingborg-stad/component-library: ^5.0.0
- helsingborg-stad/wpservice: ^2.0
- helsingborg-stad/wputilservice: ^0.2.44
Requires (Dev)
- carthage-software/mago: ^1.0.0-rc.3
- phpunit/phpunit: ^11.5
Suggests
- helsingborg-stad/municipio: ^6.0.0
This package is auto-updated.
Last update: 2026-06-08 08:13:00 UTC
README
This WordPress plugin adds a feedback form to the end of every page (or any other activated post type). The visitor can then answer a question like "did the information on the current page help you?", yes or no. The results will be stored and presented in the admin area.
Filter reference
CustomerFeedback/post_types
Array with post type slugs where the customer feedback form should be shown
Example:
add_filter('CustomerFeedback/post_types', function ($postTypes) { $postTypes[] = 'post'; return $postTypes; });
Disable auto enqueue function on loop end
define('CUSTOMER_FEEDBACK_DISABLE_AUTO_LOAD', true);