Site Reviews - Version 5.0.3

Version Description

(2020-10-23) =

  • Fixed a regression which prevented translations from including a link (i.e. the terms toggle)
  • Fixed the trustalyze add-on link
Download this release

Release Info

Developer geminilabs
Plugin Icon 128x128 Site Reviews
Version 5.0.3
Comparing to
See all releases

Code changes from version 5.0.2 to 5.0.3

config/forms/review-form.php CHANGED
@@ -2,32 +2,32 @@
2
 
3
  return [
4
  'rating' => [
5
- 'label' => esc_html__('Your overall rating', 'site-reviews'),
6
  'type' => 'rating',
7
  ],
8
  'title' => [
9
- 'label' => esc_html__('Title of your review', 'site-reviews'),
10
  'placeholder' => esc_attr__('Summarize your review or highlight an interesting detail', 'site-reviews'),
11
  'type' => 'text',
12
  ],
13
  'content' => [
14
- 'label' => esc_html__('Your review', 'site-reviews'),
15
  'placeholder' => esc_attr__('Tell people your review', 'site-reviews'),
16
  'rows' => 5,
17
  'type' => 'textarea',
18
  ],
19
  'name' => [
20
- 'label' => esc_html__('Your name', 'site-reviews'),
21
  'placeholder' => esc_attr__('Tell us your name', 'site-reviews'),
22
  'type' => 'text',
23
  ],
24
  'email' => [
25
- 'label' => esc_html__('Your email', 'site-reviews'),
26
  'placeholder' => esc_attr__('Tell us your email', 'site-reviews'),
27
  'type' => 'email',
28
  ],
29
  'terms' => [
30
- 'label' => esc_html__('This review is based on my own experience and is my genuine opinion.', 'site-reviews'),
31
  'type' => 'toggle',
32
  ],
33
  ];
2
 
3
  return [
4
  'rating' => [
5
+ 'label' => __('Your overall rating', 'site-reviews'),
6
  'type' => 'rating',
7
  ],
8
  'title' => [
9
+ 'label' => __('Title of your review', 'site-reviews'),
10
  'placeholder' => esc_attr__('Summarize your review or highlight an interesting detail', 'site-reviews'),
11
  'type' => 'text',
12
  ],
13
  'content' => [
14
+ 'label' => __('Your review', 'site-reviews'),
15
  'placeholder' => esc_attr__('Tell people your review', 'site-reviews'),
16
  'rows' => 5,
17
  'type' => 'textarea',
18
  ],
19
  'name' => [
20
+ 'label' => __('Your name', 'site-reviews'),
21
  'placeholder' => esc_attr__('Tell us your name', 'site-reviews'),
22
  'type' => 'text',
23
  ],
24
  'email' => [
25
+ 'label' => __('Your email', 'site-reviews'),
26
  'placeholder' => esc_attr__('Tell us your email', 'site-reviews'),
27
  'type' => 'email',
28
  ],
29
  'terms' => [
30
+ 'label' => __('This review is based on my own experience and is my genuine opinion.', 'site-reviews'),
31
  'type' => 'toggle',
32
  ],
33
  ];
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: reviews, ratings, testimonials, business reviews, product reviews, stars,
5
  Tested up to: 5.5
6
  Requires at least: 5.5
7
  Requires PHP: 5.6
8
- Stable tag: 5.0.2
9
  License: GPLv3
10
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -113,6 +113,11 @@ All documentation can be found in the "Help" page of the plugin. If your questio
113
 
114
  == Changelog ==
115
 
 
 
 
 
 
116
  = 5.0.2 (2020-10-23) =
117
 
118
  - Fixed the terms toggle (Sorry about that! It was caused by a last-minute adjustment of the conditional checkboxes in the settings)
5
  Tested up to: 5.5
6
  Requires at least: 5.5
7
  Requires PHP: 5.6
8
+ Stable tag: 5.0.3
9
  License: GPLv3
10
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
11
 
113
 
114
  == Changelog ==
115
 
116
+ = 5.0.3 (2020-10-23) =
117
+
118
+ - Fixed a regression which prevented translations from including a link (i.e. the terms toggle)
119
+ - Fixed the trustalyze add-on link
120
+
121
  = 5.0.2 (2020-10-23) =
122
 
123
  - Fixed the terms toggle (Sorry about that! It was caused by a last-minute adjustment of the conditional checkboxes in the settings)
site-reviews.php CHANGED
@@ -7,7 +7,7 @@
7
  * Plugin Name: Site Reviews
8
  * Plugin URI: https://wordpress.org/plugins/site-reviews
9
  * Description: Receive and display reviews on your website
10
- * Version: 5.0.2
11
  * Author: Paul Ryley
12
  * Author URI: https://geminilabs.io
13
  * License: GPL2
7
  * Plugin Name: Site Reviews
8
  * Plugin URI: https://wordpress.org/plugins/site-reviews
9
  * Description: Receive and display reviews on your website
10
+ * Version: 5.0.3
11
  * Author: Paul Ryley
12
  * Author URI: https://geminilabs.io
13
  * License: GPL2
views/pages/addons/index.php CHANGED
@@ -26,7 +26,7 @@
26
  $template->render('partials/addons/addon', [
27
  'context' => [
28
  'description' => _x('Integrate with the Trustalyze Confidence System and post reviews to the blockchain.', 'admin-text', 'site-reviews'),
29
- 'link' => 'https://niftyplugins.com/plugins/site-reviews-trustalyze/',
30
  'slug' => 'trustalyze',
31
  'title' => 'Trustalyze',
32
  ],
26
  $template->render('partials/addons/addon', [
27
  'context' => [
28
  'description' => _x('Integrate with the Trustalyze Confidence System and post reviews to the blockchain.', 'admin-text', 'site-reviews'),
29
+ 'link' => 'https://niftyplugins.com/plugins/trustalyze/',
30
  'slug' => 'trustalyze',
31
  'title' => 'Trustalyze',
32
  ],