Yasr – Yet Another Stars Rating - Version 1.7.0

Version Description

  • FIXED: Yasr overall rating not showing up if custom text isn't set
Download this release

Release Info

Developer Dudo
Plugin Icon 128x128 Yasr – Yet Another Stars Rating
Version 1.7.0
Comparing to
See all releases

Code changes from version 1.6.9 to 1.7.0

lib/yasr-shortcode-functions.php CHANGED
@@ -77,6 +77,12 @@ add_shortcode ('yasr_overall_rating', 'shortcode_overall_rating_callback');
77
 
78
  }
79
 
 
 
 
 
 
 
80
  $shortcode_html .= '<!--End Yasr Overall Rating Shortcode-->';
81
 
82
 
77
 
78
  }
79
 
80
+ else {
81
+
82
+ $shortcode_html .= $html_stars;
83
+
84
+ }
85
+
86
  $shortcode_html .= '<!--End Yasr Overall Rating Shortcode-->';
87
 
88
 
readme.txt CHANGED
@@ -5,7 +5,7 @@ Requires at least: 4.3.0
5
  Contributors: Dudo
6
  Tested up to: 5.0
7
  Requires PHP: 5.3
8
- Stable tag: 1.6.9
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
11
  Boost the way people interact with your website, e-commerce or blog with an easy and intuitive WordPress rating system!
@@ -108,6 +108,9 @@ Of course not: you can easily add it on the visual editor just by clicking the "
108
 
109
  The full changelog can be found in the plugin's directory. Recent entries:
110
 
 
 
 
111
  = 1.6.9 =
112
  * TWEAKED: Most of work have been done on making Yasr working without jquery. This is still in beta but now supports all shortcodes
113
  except "yasr_visitor_multiset" one
5
  Contributors: Dudo
6
  Tested up to: 5.0
7
  Requires PHP: 5.3
8
+ Stable tag: 1.7.0
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
11
  Boost the way people interact with your website, e-commerce or blog with an easy and intuitive WordPress rating system!
108
 
109
  The full changelog can be found in the plugin's directory. Recent entries:
110
 
111
+ = 1.7.0 =
112
+ * FIXED: Yasr overall rating not showing up if custom text isn't set
113
+
114
  = 1.6.9 =
115
  * TWEAKED: Most of work have been done on making Yasr working without jquery. This is still in beta but now supports all shortcodes
116
  except "yasr_visitor_multiset" one
yet-another-stars-rating.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin Name: Yet Another Stars Rating
5
  * Plugin URI: http://wordpress.org/plugins/yet-another-stars-rating/
6
  * Description: Yet Another Stars Rating turn your WordPress into a complete review website.
7
- * Version: 1.6.9
8
  * Author: Dario Curvino
9
  * Author URI: https://yetanotherstarsrating.com/
10
  * Text Domain: yet-another-stars-rating
@@ -74,7 +74,7 @@ function yasr_fs()
74
  yasr_fs();
75
  // Signal that SDK was initiated.
76
  do_action( 'yasr_fs_loaded' );
77
- define( 'YASR_VERSION_NUM', '1.6.9' );
78
  //Plugin relative path
79
  define( "YASR_ABSOLUTE_PATH", dirname( __FILE__ ) );
80
  //Plugin RELATIVE PATH without slashes (just the directory's name)
@@ -299,4 +299,4 @@ function yasr_plugin_row_meta( $links, $file )
299
 
300
  //this is for user who use extensions
301
  //remove on Gen 2019
302
- define( 'YASR_EDD_SL_STORE_URL', 'http://yetanotherstarsrating.com' );
4
  * Plugin Name: Yet Another Stars Rating
5
  * Plugin URI: http://wordpress.org/plugins/yet-another-stars-rating/
6
  * Description: Yet Another Stars Rating turn your WordPress into a complete review website.
7
+ * Version: 1.7.0
8
  * Author: Dario Curvino
9
  * Author URI: https://yetanotherstarsrating.com/
10
  * Text Domain: yet-another-stars-rating
74
  yasr_fs();
75
  // Signal that SDK was initiated.
76
  do_action( 'yasr_fs_loaded' );
77
+ define( 'YASR_VERSION_NUM', '1.7.0' );
78
  //Plugin relative path
79
  define( "YASR_ABSOLUTE_PATH", dirname( __FILE__ ) );
80
  //Plugin RELATIVE PATH without slashes (just the directory's name)
299
 
300
  //this is for user who use extensions
301
  //remove on Gen 2019
302
+ define( 'YASR_EDD_SL_STORE_URL', 'http://yetanotherstarsrating.com' );