Plugin Directory

Changeset 2927372


Ignore:
Timestamp:
06/17/2023 04:34:27 PM (3 years ago)
Author:
ludovicsclain
Message:

Minor updates and fixes

Location:
helpfulnessmeter
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • helpfulnessmeter/tags/1.0/changelog.txt

    r2927290 r2927372  
    1 *** Was This Information Useful To You Changelog ***
     1*** HelpfulnessMeter Changelog ***
    222023-06-16 - version 1.0
    33 * First Release.
  • helpfulnessmeter/tags/1.0/readme.txt

    r2927290 r2927372  
    3838This 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.
    3939
    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 
    4940= Review =
    5041Great people use HelpfulnessMeter to [leave their best review afterwards…](https://wordpress.org/support/plugin/helpfulnessmeter/reviews/) and you are great too!
    5142
    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
     461. Visit `Plugins > Add New`
     472. Search for `HelpfulnessMeter`
     482. Click on `Install Now` then `Activate` to activate it
     49
     50= From wordpress.org =
     511. Download [HelpfulnessMeter](https://wordpress.org/plugins/helpfulnessmeter)
     522. Upload the ‘HelpfulnessMeter’ directory to your ‘/wp-content/plugins/’ directory, using your favorite method (ftp, sftp, scp, etc…)
     533. Activate HelpfulnessMeter from your Plugins page
     54
     55= Once activated =
     56Visit `Settings > HelpfulnessMeter` and configure the settings to best match your needs.
     57
     58= Once configured =
     59Depending 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.
    5760
    5861== Frequently Asked Questions ==
     
    7376Of 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.
    7477
     78== Screenshots ==
     791. HelpfulnessMeter question displayed at the bottom of the page.
     802. HelpfulnessMeter Thank You Message displayed at the bottom of the page after the user vote.
     813. The statistics in WordPress dashboard > Posts.
     824. The admin interface for configuring HelpfulnessMeter settings.
     83
    7584== Changelog ==
    7685For 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 ***
     22023-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
    262023-06-16 - version 1.0
    37 * First Release.
  • helpfulnessmeter/trunk/helpfulnessmeter.php

    r2927290 r2927372  
    33Plugin Name: HelpfulnessMeter
    44Description: Improve your WordPress content by easily collecting feedback from your visitors.
    5 Version: 1.0
     5Version: 1.0.1
    66Author: Ludovic S. Clain
    77Author URI: https://ludovicclain.com
     
    199199            update_option('hfnm_types', '[]');
    200200        }
    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"])) : '';
    205205        update_option('hfnm_question_text', $question_text);
    206206        update_option('hfnm_yes_text', $yes_text);
  • helpfulnessmeter/trunk/readme.txt

    r2927290 r2927372  
    55Requires at least: 6.0
    66Tested up to: 6.2
    7 Stable tag: 1.0
     7Stable tag: 1.0.1
    88Requires PHP: 7.4
    99License: GPLv2 or later
     
    3838This 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.
    3939
    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 
    4940= Review =
    5041Great people use HelpfulnessMeter to [leave their best review afterwards…](https://wordpress.org/support/plugin/helpfulnessmeter/reviews/) and you are great too!
    5142
    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
     461. Visit `Plugins > Add New`
     472. Search for `HelpfulnessMeter`
     482. Click on `Install Now` then `Activate` to activate it
     49
     50= From wordpress.org =
     511. Download [HelpfulnessMeter](https://wordpress.org/plugins/helpfulnessmeter)
     522. Upload the ‘HelpfulnessMeter’ directory to your ‘/wp-content/plugins/’ directory, using your favorite method (ftp, sftp, scp, etc…)
     533. Activate HelpfulnessMeter from your Plugins page
     54
     55= Once activated =
     56Visit `Settings > HelpfulnessMeter` and configure the settings to best match your needs.
     57
     58= Once configured =
     59Depending 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.
    5760
    5861== Frequently Asked Questions ==
     
    7376Of 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.
    7477
     78== Screenshots ==
     791. HelpfulnessMeter question displayed at the bottom of the page.
     802. HelpfulnessMeter Thank You Message displayed at the bottom of the page after the user vote.
     813. The statistics in WordPress dashboard > Posts.
     824. The admin interface for configuring HelpfulnessMeter settings.
     83
    7584== Changelog ==
    7685For the complete changelog history, please refer to the separate "changelog.txt" file included in the plugin directory.
    7786
    7887== Latest Updates ==
     88= 1.0.1 =
     89* Minor updates and fixes
     90
    7991= 1.0 =
    8092* Initial Release
Note: See TracChangeset for help on using the changeset viewer.