All Projects → wearerequired → User Feedback

wearerequired / User Feedback

Licence: gpl-2.0
Collect user feedback directly from your WordPress site

Projects that are alternatives of or similar to User Feedback

Wordpress
Docker based Wordpress deployment using a collection of optimized containers w/ Nginx, PHP-FPM, MariaDB and Redis.
Stars: ✭ 44 (-10.2%)
Mutual labels:  wordpress, wordpress-plugin
Performance Improvements For Woocommerce
Performance tweaks for the front-end and back-end of a store.
Stars: ✭ 46 (-6.12%)
Mutual labels:  wordpress, wordpress-plugin
Wp Shopify
🎉 Sell and build custom Shopify experiences on WordPress.
Stars: ✭ 38 (-22.45%)
Mutual labels:  wordpress, wordpress-plugin
Sermon Manager
Sermon Manager for WordPress is the #1 plugin for churches who want to manage their sermons easily and missionally.
Stars: ✭ 35 (-28.57%)
Mutual labels:  wordpress, wordpress-plugin
Osen Wc Mpesa
WordPress Plugin that extends WordPress and WooCommerce functionality to integrate MPESA for making payments, remittances, checking account balance transaction status and reversals.
Stars: ✭ 45 (-8.16%)
Mutual labels:  wordpress, wordpress-plugin
Woosidebars
Replace registered sidebars in your WordPress themes using different conditions such as a specific page, a category or even an individual blog post.
Stars: ✭ 47 (-4.08%)
Mutual labels:  wordpress, wordpress-plugin
Meta Box
The best plugin for WordPress custom fields and custom meta boxes
Stars: ✭ 1,039 (+2020.41%)
Mutual labels:  wordpress, wordpress-plugin
Wp2static
WordPress static site generator for security, performance and cost benefits
Stars: ✭ 952 (+1842.86%)
Mutual labels:  wordpress, wordpress-plugin
Geodirectory
GeoDirectory is the fastest growing Directory plugin for WordPress. Feel free to contribute or suggest new developments and help us take GD to the next level. http://wpgeodirectory.com | http://wordpress.org/plugins/geodirectory/
Stars: ✭ 41 (-16.33%)
Mutual labels:  wordpress, wordpress-plugin
Ultimate Fields
The plugin for custom fields in WordPress
Stars: ✭ 39 (-20.41%)
Mutual labels:  wordpress, wordpress-plugin
Einsatzverwaltung
WordPress plugin for public incident reports for fire departments and other rescue services
Stars: ✭ 32 (-34.69%)
Mutual labels:  wordpress, wordpress-plugin
Preferred Languages
Choose languages for displaying WordPress in, in order of preference.
Stars: ✭ 48 (-2.04%)
Mutual labels:  wordpress, wordpress-plugin
Afb instant articles
allfacebook Instant Articles - The WordPress Plugin for facebook instant articles.
Stars: ✭ 31 (-36.73%)
Mutual labels:  wordpress, wordpress-plugin
Elasticpress
A fast and flexible search and query engine for WordPress.
Stars: ✭ 1,037 (+2016.33%)
Mutual labels:  wordpress, wordpress-plugin
Wp Gdpr Core
This WordPress plugin assists you in making your website ready for the GDPR. We try to cover the core WordPress features with this plugin.
Stars: ✭ 31 (-36.73%)
Mutual labels:  wordpress, wordpress-plugin
Cloud Blocks
WP plugin for Gutenberg Cloud – Your library of blocks in the cloud!
Stars: ✭ 44 (-10.2%)
Mutual labels:  wordpress, wordpress-plugin
Ultimate Blocks
Custom Gutenberg Blocks for Bloggers and Marketers. Create Better Content With Gutenberg.
Stars: ✭ 29 (-40.82%)
Mutual labels:  wordpress, wordpress-plugin
Wordpress To Jekyll Exporter
One-click WordPress plugin that converts all posts, pages, taxonomies, metadata, and settings to Markdown and YAML which can be dropped into Jekyll
Stars: ✭ 951 (+1840.82%)
Mutual labels:  wordpress, wordpress-plugin
Tribe Common
Common classes and functions used in our plugins
Stars: ✭ 38 (-22.45%)
Mutual labels:  wordpress, wordpress-plugin
Object Sync For Salesforce
WordPress plugin that maps and syncs data between Salesforce objects and WordPress objects.
Stars: ✭ 48 (-2.04%)
Mutual labels:  wordpress, wordpress-plugin

User Feedback

Contributors: wearerequired, swissspidy, karinchristen, neverything
Tags: users, feedback, email, media, support
Requires at least: 4.0
Tested up to: 4.9
Requires PHP: 5.4
Stable tag: 1.1.1
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Allow users to submit feedback and bug reports anywhere on the site using an interactive feedback button.

Description

With this plugin, logged-in users can send feedback using a dedicated feedback button on the front-end. For example, when you find a bug you can highlight the relevant part of the page and write some additional notes to it.

This information is sent via email to the blog administrator, including a screenshot of your annotated page and helpful debugging data.

Demo: Watch video

The plugin is highly flexible, you can adjust almost anything via filters & hooks. We also plan to release a couple of extensions for various use cases:

  • Stylish HTML emails
  • GitHub and HelpScout integration
  • An admin dashboard to store all sent feedback in the back-end.
  • Detailed usage analytics

Installation

Manual Installation

  1. Upload the entire /user-feedback directory to the /wp-content/plugins/ directory.
  2. Activate User Feedback through the 'Plugins' menu in WordPress.
  3. Visit the front-end to submit feedback
  4. Watch your inbox

Frequently Asked Questions

How can I enable the plugin for guests too?

You can configure where the User Feedback tool should be loaded in 'Settings' -> 'General'. It’s possible to show it for guests and also inside the WordPress admin.

How can I leverage this tool in my own plugin?

If you’re a developer, you may want to support User Feedback in your own plugin. For example, if you have a custom settings page and want to load the plugin there, just add the following snippet on that screen:

do_action( 'user_feedback_init', array(
    'name'      => 'My Awesome Plugin',
    'data'      => array(), /* some additional debug data */
    'recipient' => '[email protected]', /* your email address */  
) );

This snippet registers your plugin properly so the User Feedback plugin gets loaded on that screen. If the user now submits some feedback, the email gets sent to you, including the debug data you provide. How awesome is that!

How can I change the wording inside the tool?

This is possible by leveraging the user_feedback_script_data filter. For example, you can change the message after submitting the feedback like this:

/**
 * Modify the script data passed to the user feedback tool.
 *
 * This example function changes the message shown after submitting feedback.
 *
 * @param array $data User Feedback script data.
 *
 * @return array
 */
function custom_user_feedback_script_data( $data ) {  
    $data['templates']['wizardStep5']['intro2'] = '– awesome company';  

    return $data;
}

add_filter( 'user_feedback_script_data', 'custom_user_feedback_script_data' );

What else can I do with this plugin?

You can dig into the source code and the wiki on GitHub if you’re interested in that.

Screenshots

  1. The unobtrusive feedback button added by the plugin.
  2. Users can highlight specific areas and leave a message.
  3. This is how the email sent to the blog admin looks like.
  4. The settings section under 'Settings' -> 'General'.

Contribute

Here is how you can contribute:

We develop everything on GitHub. There you can submit bug reports and pull requests.

Changelog

1.1.1

  • Fixed: Don’t print templates when the plugin should not be loaded.
  • Fixed: Load JavaScript files correctly. Ensures compatibility with WordPress 4.4.
  • New: Modernized setup to pave the way for future versions.

1.1.0

  • New: Configure where the User Feedback tool should be loaded under 'Settings' -> 'General'

1.0.0

  • First release

Upgrade Notice

1.1.1

100% compatible with WordPress 4.4, this version fixes some bugs related to loading the JavaScript.

1.1.0

100% compatible with WordPress 4.3, this version adds a settings section for the User Feedback tool.

1.0.0

First release

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].