Version Description
Download this release
Release Info
Developer | MyThemeShop |
Plugin | WP Review |
Version | 5.0.5 |
Comparing to | |
See all releases |
Code changes from version 5.0.4 to 5.0.5
- admin/assets/css/admin.css +1 -1
- admin/assets/js/admin.js +6 -0
- readme.txt +4 -1
- wp-review.php +2 -2
admin/assets/css/admin.css
CHANGED
@@ -141,7 +141,7 @@
|
|
141 |
|
142 |
.review-total { text-align: right; }
|
143 |
|
144 |
-
.wp-picker-holder { position: absolute; z-index: 9; }
|
145 |
|
146 |
.review-value-incorrect { border-color: #F00 !important; }
|
147 |
|
141 |
|
142 |
.review-total { text-align: right; }
|
143 |
|
144 |
+
.wp-review-field-option:not(.pyre_field) .wp-picker-holder { position: absolute; z-index: 9; }
|
145 |
|
146 |
.review-value-incorrect { border-color: #F00 !important; }
|
147 |
|
admin/assets/js/admin.js
CHANGED
@@ -607,6 +607,12 @@
|
|
607 |
window.tinyMCE.triggerSave();
|
608 |
});
|
609 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
610 |
});
|
611 |
})( jQuery, Cookies );
|
612 |
|
607 |
window.tinyMCE.triggerSave();
|
608 |
});
|
609 |
}
|
610 |
+
|
611 |
+
// Fix conflict with color picker in Avada theme.
|
612 |
+
if ( $( '.pyre_field.avada-color' ).length ) {
|
613 |
+
$( '.wp-review-color' ).closest( '.wp-review-field-option' ).addClass( 'pyre_field' );
|
614 |
+
$( '.input-color, .input-inactive-color' ).closest( '.col-2' ).addClass( 'pyre_field' );
|
615 |
+
}
|
616 |
});
|
617 |
})( jQuery, Cookies );
|
618 |
|
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.8
|
7 |
-
Stable tag: 5.0.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -103,6 +103,9 @@ Please disable all plugins and check if rating is working properly. Then you can
|
|
103 |
|
104 |
== Changelog ==
|
105 |
|
|
|
|
|
|
|
106 |
= v5.0.4 (Sep 18, 2018) =
|
107 |
* Added missing options in the `wp_review_metabox_item_fields` filter
|
108 |
|
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.8
|
7 |
+
Stable tag: 5.0.5
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
103 |
|
104 |
== Changelog ==
|
105 |
|
106 |
+
= v5.0.5 (Sep 19, 2018) =
|
107 |
+
* Fixed colorpicker conflict with Avada theme
|
108 |
+
|
109 |
= v5.0.4 (Sep 18, 2018) =
|
110 |
* Added missing options in the `wp_review_metabox_item_fields` filter
|
111 |
|
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.0.
|
7 |
* Author: MyThemesShop
|
8 |
* Author URI: http://mythemeshop.com/
|
9 |
* Text Domain: wp-review
|
@@ -45,7 +45,7 @@ if ( version_compare( phpversion(), '5.6', '<' ) ) {
|
|
45 |
}
|
46 |
|
47 |
/* Plugin version */
|
48 |
-
define( 'WP_REVIEW_PLUGIN_VERSION', '5.0.
|
49 |
|
50 |
/* Sets the custom db table name. */
|
51 |
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.0.5
|
7 |
* Author: MyThemesShop
|
8 |
* Author URI: http://mythemeshop.com/
|
9 |
* Text Domain: wp-review
|
45 |
}
|
46 |
|
47 |
/* Plugin version */
|
48 |
+
define( 'WP_REVIEW_PLUGIN_VERSION', '5.0.5' );
|
49 |
|
50 |
/* Sets the custom db table name. */
|
51 |
define( 'MTS_WP_REVIEW_DB_TABLE', 'mts_wp_reviews' );
|