Version Description
Download this release
Release Info
Developer | roymahfooz |
Plugin | WP Review |
Version | 4.0.14 |
Comparing to | |
See all releases |
Code changes from version 4.0.13 to 4.0.14
- readme.txt +4 -1
- wp-review.php +3 -2
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Creator's website link: http://mythemeshop.com/plugins/wp-review/
|
|
4 |
Tags: review, wp review, rating, wp rating, user rating, google rating, star rating, product review
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 4.9.6
|
7 |
-
Stable tag: 4.0.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -101,6 +101,9 @@ Please disable all plugins and check if rating is working properly. Then you can
|
|
101 |
7. Percentage Review type
|
102 |
|
103 |
== Changelog ==
|
|
|
|
|
|
|
104 |
|
105 |
= v4.0.13 (May 31, 2018) =
|
106 |
* Fixed disable review issue
|
4 |
Tags: review, wp review, rating, wp rating, user rating, google rating, star rating, product review
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 4.9.6
|
7 |
+
Stable tag: 4.0.14
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
101 |
7. Percentage Review type
|
102 |
|
103 |
== Changelog ==
|
104 |
+
|
105 |
+
= v4.0.14 (June 13, 2018) =
|
106 |
+
* Fixed text-domain issue translations
|
107 |
|
108 |
= v4.0.13 (May 31, 2018) =
|
109 |
* Fixed disable review issue
|
wp-review.php
CHANGED
@@ -3,9 +3,10 @@
|
|
3 |
* Plugin Name: WP Review
|
4 |
* Plugin URI: http://mythemeshop.com/plugins/wp-review/
|
5 |
* Description: Create reviews! Choose from stars, percentages or points for review scores. Supports Retina Display, WPMU and Unlimited Color Schemes.
|
6 |
-
* Version: 4.0.
|
7 |
* Author: MyThemesShop
|
8 |
* Author URI: http://mythemeshop.com/
|
|
|
9 |
*
|
10 |
* @since 1.0
|
11 |
* @copyright Copyright (c) 2013, MyThemesShop
|
@@ -20,7 +21,7 @@ if ( ! defined( 'ABSPATH' ) ) exit;
|
|
20 |
if ( ! defined( 'MTS_WP_REVIEW_DB_TABLE' )) {
|
21 |
|
22 |
/* Plugin version */
|
23 |
-
define( 'WP_REVIEW_PLUGIN_VERSION', '4.0.
|
24 |
|
25 |
/* Sets the custom db table name. */
|
26 |
define( 'MTS_WP_REVIEW_DB_TABLE', 'mts_wp_reviews' );
|
3 |
* Plugin Name: WP Review
|
4 |
* Plugin URI: http://mythemeshop.com/plugins/wp-review/
|
5 |
* Description: Create reviews! Choose from stars, percentages or points for review scores. Supports Retina Display, WPMU and Unlimited Color Schemes.
|
6 |
+
* Version: 4.0.14
|
7 |
* Author: MyThemesShop
|
8 |
* Author URI: http://mythemeshop.com/
|
9 |
+
* Text Domain: wp-review
|
10 |
*
|
11 |
* @since 1.0
|
12 |
* @copyright Copyright (c) 2013, MyThemesShop
|
21 |
if ( ! defined( 'MTS_WP_REVIEW_DB_TABLE' )) {
|
22 |
|
23 |
/* Plugin version */
|
24 |
+
define( 'WP_REVIEW_PLUGIN_VERSION', '4.0.14' );
|
25 |
|
26 |
/* Sets the custom db table name. */
|
27 |
define( 'MTS_WP_REVIEW_DB_TABLE', 'mts_wp_reviews' );
|