Version Description
- FIXED: Yasr Stylish compatibility
- TWEAKED: changed extensions images
Download this release
Release Info
Developer | Dudo |
Plugin | Yasr – Yet Another Stars Rating |
Version | 1.1.1 |
Comparing to | |
See all releases |
Code changes from version 1.1.0 to 1.1.1
- img/Yasr-Stylish.png +0 -0
- img/yasr-custom-image.png +0 -0
- img/yasr-user-reviews.png +0 -0
- readme.txt +5 -1
- yasr-settings-page.php +2 -2
- yet-another-stars-rating.php +5 -2
img/Yasr-Stylish.png
ADDED
Binary file
|
img/yasr-custom-image.png
DELETED
Binary file
|
img/yasr-user-reviews.png
CHANGED
Binary file
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: 5 star, admin, administrator, AJAX, five-star, javascript, jquery, post r
|
|
4 |
Requires at least: 3.5
|
5 |
Contributors: Dudo
|
6 |
Tested up to: 4.4
|
7 |
-
Stable tag: 1.1.
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
10 |
Yet Another Stars Rating is a simple plugin which allows you and / or your visitor to rate a post or element. Ideal for review's website
|
@@ -120,6 +120,10 @@ Of course not: you can easily add it on the visual editor just by clicking on th
|
|
120 |
|
121 |
== Changelog ==
|
122 |
|
|
|
|
|
|
|
|
|
123 |
= 1.1.0 =
|
124 |
* Yasr is not anymore a freemium plugin: it works now with extensions that you can be installed through the settings panel
|
125 |
|
4 |
Requires at least: 3.5
|
5 |
Contributors: Dudo
|
6 |
Tested up to: 4.4
|
7 |
+
Stable tag: 1.1.1
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
10 |
Yet Another Stars Rating is a simple plugin which allows you and / or your visitor to rate a post or element. Ideal for review's website
|
120 |
|
121 |
== Changelog ==
|
122 |
|
123 |
+
= 1.1.1 =
|
124 |
+
* FIXED: Yasr Stylish compatibility
|
125 |
+
* TWEAKED: changed extensions images
|
126 |
+
|
127 |
= 1.1.0 =
|
128 |
* Yasr is not anymore a freemium plugin: it works now with extensions that you can be installed through the settings panel
|
129 |
|
yasr-settings-page.php
CHANGED
@@ -370,7 +370,7 @@ $n_multi_set = NULL; //Evoid undefined variable when printed outside multiset ta
|
|
370 |
|
371 |
<span class="yasr-extension-title">Yasr Stylish</span>
|
372 |
|
373 |
-
<img src=<?php echo YASR_IMG_DIR . '/
|
374 |
|
375 |
<span class="yasr-extension-description">
|
376 |
<?php _e("Choose between ready to use image or upload your own!", "yet-another-stars-rating"); ?>
|
@@ -408,7 +408,7 @@ $n_multi_set = NULL; //Evoid undefined variable when printed outside multiset ta
|
|
408 |
|
409 |
<span class="yasr-extension-title">Yasr Custom Rankings</span>
|
410 |
|
411 |
-
<img src=<?php echo YASR_IMG_DIR . '/create-ranking.png'?> alt='Yasr
|
412 |
|
413 |
<span class="yasr-extension-description">
|
414 |
<?php _e("Unleash all the power of your rankings with just a click!", "yet-another-stars-rating"); ?>
|
370 |
|
371 |
<span class="yasr-extension-title">Yasr Stylish</span>
|
372 |
|
373 |
+
<img src=<?php echo YASR_IMG_DIR . '/Yasr-Stylish.png'?> alt='Yasr Stylish' class="yasr-extension-image-no-width"/>
|
374 |
|
375 |
<span class="yasr-extension-description">
|
376 |
<?php _e("Choose between ready to use image or upload your own!", "yet-another-stars-rating"); ?>
|
408 |
|
409 |
<span class="yasr-extension-title">Yasr Custom Rankings</span>
|
410 |
|
411 |
+
<img src=<?php echo YASR_IMG_DIR . '/create-ranking.png'?> alt='Yasr Custom Rankings' class="yasr-extension-image"/>
|
412 |
|
413 |
<span class="yasr-extension-description">
|
414 |
<?php _e("Unleash all the power of your rankings with just a click!", "yet-another-stars-rating"); ?>
|
yet-another-stars-rating.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Yet Another Stars Rating
|
4 |
* Plugin URI: http://wordpress.org/plugins/yet-another-stars-rating/
|
5 |
* Description: Yet Another Stars Rating turn your WordPress into a complete review website.
|
6 |
-
* Version: 1.1.
|
7 |
* Author: Dario Curvino
|
8 |
* Author URI: https://yetanotherstarsrating.com/
|
9 |
* Text Domain: yet-another-stars-rating
|
@@ -32,7 +32,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
32 |
if ( ! defined( 'ABSPATH' ) ) exit('You\'re not allowed to see this page'); // Exit if accessed directly
|
33 |
|
34 |
|
35 |
-
define('YASR_VERSION_NUM', '1.1.
|
36 |
|
37 |
//Plugin relative path
|
38 |
define( "YASR_ABSOLUTE_PATH", dirname(__FILE__) );
|
@@ -106,6 +106,9 @@ define ("YASR_METABOX_OVERALL_RATING", $stored_options['metabox_overall_rating']
|
|
106 |
define( 'YASR_EDD_SL_STORE_URL', 'https://yetanotherstarsrating.com' );
|
107 |
|
108 |
|
|
|
|
|
|
|
109 |
|
110 |
//Get stored style options
|
111 |
$style_options = get_option ('yasr_style_options');
|
3 |
* Plugin Name: Yet Another Stars Rating
|
4 |
* Plugin URI: http://wordpress.org/plugins/yet-another-stars-rating/
|
5 |
* Description: Yet Another Stars Rating turn your WordPress into a complete review website.
|
6 |
+
* Version: 1.1.1
|
7 |
* Author: Dario Curvino
|
8 |
* Author URI: https://yetanotherstarsrating.com/
|
9 |
* Text Domain: yet-another-stars-rating
|
32 |
if ( ! defined( 'ABSPATH' ) ) exit('You\'re not allowed to see this page'); // Exit if accessed directly
|
33 |
|
34 |
|
35 |
+
define('YASR_VERSION_NUM', '1.1.1');
|
36 |
|
37 |
//Plugin relative path
|
38 |
define( "YASR_ABSOLUTE_PATH", dirname(__FILE__) );
|
106 |
define( 'YASR_EDD_SL_STORE_URL', 'https://yetanotherstarsrating.com' );
|
107 |
|
108 |
|
109 |
+
//this is for yasr stylish extension
|
110 |
+
define("YASR_ST_STARS_DIR", NULL);
|
111 |
+
define("YASR_ST_CUSTOM_STARS_DIR", NULL);
|
112 |
|
113 |
//Get stored style options
|
114 |
$style_options = get_option ('yasr_style_options');
|