Changeset 2927372
- Timestamp:
- 06/17/2023 04:34:27 PM (3 years ago)
- Location:
- helpfulnessmeter
- Files:
-
- 5 edited
-
tags/1.0/changelog.txt (modified) (1 diff)
-
tags/1.0/readme.txt (modified) (2 diffs)
-
trunk/changelog.txt (modified) (1 diff)
-
trunk/helpfulnessmeter.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
helpfulnessmeter/tags/1.0/changelog.txt
r2927290 r2927372 1 *** Was This Information Useful To YouChangelog ***1 *** HelpfulnessMeter Changelog *** 2 2 2023-06-16 - version 1.0 3 3 * First Release. -
helpfulnessmeter/tags/1.0/readme.txt
r2927290 r2927372 38 38 This plugin is 95% fork of WaspThemes’s WordPress plugin [Was This Helpful?](https://wordpress.org/plugins/was-this-article-helpful/). Since the "Was This Helpful?" plugin is not actively maintained and not tested with the latest version of WordPress, I decided to take it over and continue to improve. 39 39 40 == Installation ==41 Install "HelpfulnessMeter" just as you would any other WP Plugin:42 43 1. Download HelpfulnessMeter from WordPress.org.44 2. Unzip the .zip file.45 3. Upload the Plugin folder (helpfulnessmeter/) to the `wp-content/plugins` folder.46 4. Go to the Plugins Admin Panel and find the newly uploaded Plugin, "HelpfulnessMeter" in the list.47 5. Click Activate Plugin to activate it.48 49 40 = Review = 50 41 Great people use HelpfulnessMeter to [leave their best review afterwards…](https://wordpress.org/support/plugin/helpfulnessmeter/reviews/) and you are great too! 51 42 52 == Screenshots == 53 1. HelpfulnessMeter question displayed at the bottom of the page. 54 2. HelpfulnessMeter Thank You Message displayed at the bottom of the page after the user vote. 55 3. The statistics in WordPress dashboard > Posts. 56 4. The admin interface for configuring HelpfulnessMeter settings. 43 == Installation == 44 = From your WordPress dashboard = 45 46 1. Visit `Plugins > Add New` 47 2. Search for `HelpfulnessMeter` 48 2. Click on `Install Now` then `Activate` to activate it 49 50 = From wordpress.org = 51 1. Download [HelpfulnessMeter](https://wordpress.org/plugins/helpfulnessmeter) 52 2. Upload the ‘HelpfulnessMeter’ directory to your ‘/wp-content/plugins/’ directory, using your favorite method (ftp, sftp, scp, etc…) 53 3. Activate HelpfulnessMeter from your Plugins page 54 55 = Once activated = 56 Visit `Settings > HelpfulnessMeter` and configure the settings to best match your needs. 57 58 = Once configured = 59 Depending on your configuration choices, you could find the voting statistics for your content in a new column in the list of your posts for example (if you have configured HelpfulnessMeter globally for your articles). You can also use the shortcode `[helpfulness_meter]` to manually put the HelpfulnessMeter voting inset in your content. 57 60 58 61 == Frequently Asked Questions == … … 73 76 Of course! Please contact me by [opening a support ticket](https://wordpress.org/support/plugin/helpfulnessmeter/), it's always a blessing to have help on a plugin. 74 77 78 == Screenshots == 79 1. HelpfulnessMeter question displayed at the bottom of the page. 80 2. HelpfulnessMeter Thank You Message displayed at the bottom of the page after the user vote. 81 3. The statistics in WordPress dashboard > Posts. 82 4. The admin interface for configuring HelpfulnessMeter settings. 83 75 84 == Changelog == 76 85 For the complete changelog history, please refer to the separate "changelog.txt" file included in the plugin directory. -
helpfulnessmeter/trunk/changelog.txt
r2927290 r2927372 1 *** Was This Information Useful To You Changelog *** 1 *** HelpfulnessMeter Changelog *** 2 2023-06-17 - version 1.0.1 3 * Update: readme file. 4 * Fix: backslashes were added to the backup if the texts contained apostrophes for example. 5 2 6 2023-06-16 - version 1.0 3 7 * First Release. -
helpfulnessmeter/trunk/helpfulnessmeter.php
r2927290 r2927372 3 3 Plugin Name: HelpfulnessMeter 4 4 Description: Improve your WordPress content by easily collecting feedback from your visitors. 5 Version: 1.0 5 Version: 1.0.1 6 6 Author: Ludovic S. Clain 7 7 Author URI: https://ludovicclain.com … … 199 199 update_option('hfnm_types', '[]'); 200 200 } 201 $question_text = isset($_POST["hfnm_question_text"]) ? sanitize_text_field($_POST["hfnm_question_text"]) : '';202 $yes_text = isset($_POST["hfnm_yes_text"]) ? sanitize_text_field($_POST["hfnm_yes_text"]) : '';203 $no_text = isset($_POST["hfnm_no_text"]) ? sanitize_text_field($_POST["hfnm_no_text"]) : '';204 $thank_text = isset($_POST["hfnm_thank_text"]) ? sanitize_text_field($_POST["hfnm_thank_text"]) : '';201 $question_text = isset($_POST["hfnm_question_text"]) ? wp_unslash(sanitize_text_field($_POST["hfnm_question_text"])) : ''; 202 $yes_text = isset($_POST["hfnm_yes_text"]) ? wp_unslash(sanitize_text_field($_POST["hfnm_yes_text"])) : ''; 203 $no_text = isset($_POST["hfnm_no_text"]) ? wp_unslash(sanitize_text_field($_POST["hfnm_no_text"])) : ''; 204 $thank_text = isset($_POST["hfnm_thank_text"]) ? wp_unslash(sanitize_text_field($_POST["hfnm_thank_text"])) : ''; 205 205 update_option('hfnm_question_text', $question_text); 206 206 update_option('hfnm_yes_text', $yes_text); -
helpfulnessmeter/trunk/readme.txt
r2927290 r2927372 5 5 Requires at least: 6.0 6 6 Tested up to: 6.2 7 Stable tag: 1.0 7 Stable tag: 1.0.1 8 8 Requires PHP: 7.4 9 9 License: GPLv2 or later … … 38 38 This plugin is 95% fork of WaspThemes’s WordPress plugin [Was This Helpful?](https://wordpress.org/plugins/was-this-article-helpful/). Since the "Was This Helpful?" plugin is not actively maintained and not tested with the latest version of WordPress, I decided to take it over and continue to improve. 39 39 40 == Installation ==41 Install "HelpfulnessMeter" just as you would any other WP Plugin:42 43 1. Download HelpfulnessMeter from WordPress.org.44 2. Unzip the .zip file.45 3. Upload the Plugin folder (helpfulnessmeter/) to the `wp-content/plugins` folder.46 4. Go to the Plugins Admin Panel and find the newly uploaded Plugin, "HelpfulnessMeter" in the list.47 5. Click Activate Plugin to activate it.48 49 40 = Review = 50 41 Great people use HelpfulnessMeter to [leave their best review afterwards…](https://wordpress.org/support/plugin/helpfulnessmeter/reviews/) and you are great too! 51 42 52 == Screenshots == 53 1. HelpfulnessMeter question displayed at the bottom of the page. 54 2. HelpfulnessMeter Thank You Message displayed at the bottom of the page after the user vote. 55 3. The statistics in WordPress dashboard > Posts. 56 4. The admin interface for configuring HelpfulnessMeter settings. 43 == Installation == 44 = From your WordPress dashboard = 45 46 1. Visit `Plugins > Add New` 47 2. Search for `HelpfulnessMeter` 48 2. Click on `Install Now` then `Activate` to activate it 49 50 = From wordpress.org = 51 1. Download [HelpfulnessMeter](https://wordpress.org/plugins/helpfulnessmeter) 52 2. Upload the ‘HelpfulnessMeter’ directory to your ‘/wp-content/plugins/’ directory, using your favorite method (ftp, sftp, scp, etc…) 53 3. Activate HelpfulnessMeter from your Plugins page 54 55 = Once activated = 56 Visit `Settings > HelpfulnessMeter` and configure the settings to best match your needs. 57 58 = Once configured = 59 Depending on your configuration choices, you could find the voting statistics for your content in a new column in the list of your posts for example (if you have configured HelpfulnessMeter globally for your articles). You can also use the shortcode `[helpfulness_meter]` to manually put the HelpfulnessMeter voting inset in your content. 57 60 58 61 == Frequently Asked Questions == … … 73 76 Of course! Please contact me by [opening a support ticket](https://wordpress.org/support/plugin/helpfulnessmeter/), it's always a blessing to have help on a plugin. 74 77 78 == Screenshots == 79 1. HelpfulnessMeter question displayed at the bottom of the page. 80 2. HelpfulnessMeter Thank You Message displayed at the bottom of the page after the user vote. 81 3. The statistics in WordPress dashboard > Posts. 82 4. The admin interface for configuring HelpfulnessMeter settings. 83 75 84 == Changelog == 76 85 For the complete changelog history, please refer to the separate "changelog.txt" file included in the plugin directory. 77 86 78 87 == Latest Updates == 88 = 1.0.1 = 89 * Minor updates and fixes 90 79 91 = 1.0 = 80 92 * Initial Release
Note: See TracChangeset
for help on using the changeset viewer.