helsingborg-stad / customer-feedback
This WordPress plugin adds a feedback form to the end of every page (or any other activated post type).
Installs: 16 130
Dependents: 1
Suggesters: 0
Security: 0
Stars: 2
Watchers: 13
Forks: 4
Open Issues: 7
Type:wordpress-plugin
Requires
- helsingborg-stad/acf-export-manager: >=1.0.0
- dev-master
- dev-main
- dev-3.0/develop
- 4.0.9
- 4.0.8
- 4.0.7
- 4.0.6
- 4.0.5
- 4.0.4
- 4.0.3
- 4.0.2
- 3.0.0
- 2.2.24
- 2.2.23
- 2.2.22
- 2.2.21
- 2.2.20
- 2.2.19
- 2.2.18
- 2.2.17
- 2.2.16
- 2.2.15
- 2.2.14
- 2.2.13
- 2.2.12
- 2.2.11
- 2.2.10
- 2.2.0
- 2.1.9
- 2.1.8
- 2.1.7
- 2.1.6
- 2.1.5
- 2.1.4
- 2.1.3
- 2.1.2
- 2.1.1
- 2.1.0
- 2.0.9
- 2.0.8
- 2.0.7
- 2.0.6
- 2.0.5
- 2.0.4
- 2.0.3
- 2.0.1
- 2.0.0
- 1.2.0
- 1.1.5
- 1.1.4
- 1.1.3
- 1.1.2
- 1.1.1
- 1.1.0
- 1.0.5
- 1.0.4
- 1.0.3
- 1.0.2
- 1.0.1
- 1.0.0
- dev-feat/install-npm
- dev-fix/only-first-reciever-gets-the-mail
- dev-fix/empty-mails
- dev-fix/dont-send-empty-emails
- dev-dependabot/npm_and_yarn/webpack-5.76.0
- dev-dependabot/npm_and_yarn/json5-1.0.2
- dev-dependabot/npm_and_yarn/terser-5.16.5
- dev-dependabot/npm_and_yarn/loader-utils-1.4.2
- dev-dependabot/npm_and_yarn/minimist-1.2.8
- dev-3.0/feature/feedback-margin-top
- dev-fix/text-is-clipped-a11y
- dev-feature/accessibility-improvements
- dev-feat/flat-card
- dev-ci/builder
- dev-feat/update-npm-packages
This package is auto-updated.
Last update: 2024-10-24 13:50:41 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);