Version Description
Download this release
Release Info
Developer | MyThemeShop |
Plugin | WP Review |
Version | 5.3.3 |
Comparing to | |
See all releases |
Code changes from version 5.3.2 to 5.3.3
- box-templates/aqua.php +1 -1
- box-templates/default.php +1 -1
- readme.txt +5 -1
- wp-review.php +2 -2
box-templates/aqua.php
CHANGED
@@ -174,7 +174,7 @@ ob_start();
|
|
174 |
<style type="text/css">
|
175 |
.wp-review-<?php echo $review['post_id']; ?>.review-wrapper {
|
176 |
width: <?php echo $review['width']; ?>%;
|
177 |
-
|
178 |
border: 1px solid <?php echo $colors['bordercolor']; ?>;
|
179 |
}
|
180 |
.wp-review-<?php echo $review['post_id']; ?>.review-wrapper .review-desc {
|
174 |
<style type="text/css">
|
175 |
.wp-review-<?php echo $review['post_id']; ?>.review-wrapper {
|
176 |
width: <?php echo $review['width']; ?>%;
|
177 |
+
overflow: hidden;
|
178 |
border: 1px solid <?php echo $colors['bordercolor']; ?>;
|
179 |
}
|
180 |
.wp-review-<?php echo $review['post_id']; ?>.review-wrapper .review-desc {
|
box-templates/default.php
CHANGED
@@ -140,7 +140,7 @@ ob_start();
|
|
140 |
<style type="text/css">
|
141 |
.wp-review-<?php echo $review['post_id']; ?>.review-wrapper {
|
142 |
width: <?php echo $review['width']; ?>%;
|
143 |
-
|
144 |
}
|
145 |
.wp-review-<?php echo $review['post_id']; ?>.review-wrapper,
|
146 |
.wp-review-<?php echo $review['post_id']; ?> .review-title,
|
140 |
<style type="text/css">
|
141 |
.wp-review-<?php echo $review['post_id']; ?>.review-wrapper {
|
142 |
width: <?php echo $review['width']; ?>%;
|
143 |
+
overflow: hidden;
|
144 |
}
|
145 |
.wp-review-<?php echo $review['post_id']; ?>.review-wrapper,
|
146 |
.wp-review-<?php echo $review['post_id']; ?> .review-title,
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Creator's website link: http://mythemeshop.com/plugins/wp-review/
|
|
4 |
Tags: review, schema.org, rating, schema, user rating, google rating, star rating, product review
|
5 |
Requires at least: 4.9
|
6 |
Tested up to: 5.4
|
7 |
-
Stable tag: 5.3.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -151,6 +151,10 @@ There are two ways you can do this. You can update the plugin by downloading a f
|
|
151 |
|
152 |
== Changelog ==
|
153 |
|
|
|
|
|
|
|
|
|
154 |
= v5.3.2 (Apr 9, 2020) =
|
155 |
* Fixed `Fatal error: Uncaught ArgumentCountError` appearing on some installations
|
156 |
|
4 |
Tags: review, schema.org, rating, schema, user rating, google rating, star rating, product review
|
5 |
Requires at least: 4.9
|
6 |
Tested up to: 5.4
|
7 |
+
Stable tag: 5.3.3
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
151 |
|
152 |
== Changelog ==
|
153 |
|
154 |
+
= v5.3.3 (Apr 12, 2020) =
|
155 |
+
* Fixed content layout breaking in some installations
|
156 |
+
|
157 |
+
|
158 |
= v5.3.2 (Apr 9, 2020) =
|
159 |
* Fixed `Fatal error: Uncaught ArgumentCountError` appearing on some installations
|
160 |
|
wp-review.php
CHANGED
@@ -3,7 +3,7 @@
|
|
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: 5.3.
|
7 |
* Author: MyThemeShop
|
8 |
* Author URI: http://mythemeshop.com/
|
9 |
* Text Domain: wp-review
|
@@ -46,7 +46,7 @@ if ( version_compare( phpversion(), '5.6', '<' ) ) {
|
|
46 |
}
|
47 |
|
48 |
/* Plugin version */
|
49 |
-
define( 'WP_REVIEW_PLUGIN_VERSION', '5.3.
|
50 |
|
51 |
/* Sets the custom db table name. */
|
52 |
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: 5.3.3
|
7 |
* Author: MyThemeShop
|
8 |
* Author URI: http://mythemeshop.com/
|
9 |
* Text Domain: wp-review
|
46 |
}
|
47 |
|
48 |
/* Plugin version */
|
49 |
+
define( 'WP_REVIEW_PLUGIN_VERSION', '5.3.3' );
|
50 |
|
51 |
/* Sets the custom db table name. */
|
52 |
define( 'MTS_WP_REVIEW_DB_TABLE', 'mts_wp_reviews' );
|