Google Reviews Widget - Version 1.7.2

Version Description

  • Update readme and links to the business version
Download this release

Release Info

Developer widgetpack
Plugin Icon 128x128 Google Reviews Widget
Version 1.7.2
Comparing to
See all releases

Code changes from version 1.7.1 to 1.7.2

Files changed (4) hide show
  1. grw-options.php +1 -1
  2. grw-setting.php +2 -2
  3. grw.php +4 -4
  4. readme.txt +11 -8
grw-options.php CHANGED
@@ -102,7 +102,7 @@
102
  <div class="form-group">
103
  <div class="rplg-pro">
104
  <?php echo grw_i('Try more features in the Business version: '); ?>
105
- <a href="https://richplugins.com/google-reviews-pro-wordpress-plugin" target="_blank">
106
  <?php echo grw_i('Upgrade to Business'); ?>
107
  </a>
108
  </div>
102
  <div class="form-group">
103
  <div class="rplg-pro">
104
  <?php echo grw_i('Try more features in the Business version: '); ?>
105
+ <a href="https://richplugins.com/business-reviews-bundle-wordpress-plugin" target="_blank">
106
  <?php echo grw_i('Upgrade to Business'); ?>
107
  </a>
108
  </div>
grw-setting.php CHANGED
@@ -170,7 +170,7 @@ $grw_google_api_key = get_option('grw_google_api_key');
170
  <p>Please see Introduction Video to understand how it works. Also you can find most common answers and solutions for most common questions and issues in next tabs.</p>
171
  <div class="rplg-alert rplg-alert-success">
172
  <strong>Try more features in the Business version</strong>: Merge Google, Facebook and Yelp reviews, Beautiful themes (Slider, Grid, Trust Badges), Shortcode support, Rich Snippets, Rating filter, Any sorting, Include/Exclude words filter, Hide/Show any elements, Priority support and many others.
173
- <a class="button-primary button" href="https://richplugins.com/google-reviews-pro-wordpress-plugin" target="_blank" style="margin-left:10px">Upgrade to Business</a>
174
  </div>
175
  <br>
176
  <div class="rplg-socials">
@@ -252,7 +252,7 @@ $grw_google_api_key = get_option('grw_google_api_key');
252
 
253
  <div id="shortcode" class="tab-content" style="display:<?php echo $tab == 'shortcode' ? 'block' : 'none'?>;">
254
  <h3>Shortcode Builder is available in the Business version of the plugin</h3>
255
- <a href="https://richplugins.com/google-reviews-pro-wordpress-plugin" target="_blank" style="color:#00bf54;font-size:16px;text-decoration:underline;"><?php echo grw_i('Upgrade to Business'); ?></a>
256
  </div>
257
 
258
  <div id="support" class="tab-content" style="display:<?php echo $tab == 'support' ? 'block' : 'none'?>;">
170
  <p>Please see Introduction Video to understand how it works. Also you can find most common answers and solutions for most common questions and issues in next tabs.</p>
171
  <div class="rplg-alert rplg-alert-success">
172
  <strong>Try more features in the Business version</strong>: Merge Google, Facebook and Yelp reviews, Beautiful themes (Slider, Grid, Trust Badges), Shortcode support, Rich Snippets, Rating filter, Any sorting, Include/Exclude words filter, Hide/Show any elements, Priority support and many others.
173
+ <a class="button-primary button" href="https://richplugins.com/business-reviews-bundle-wordpress-plugin" target="_blank" style="margin-left:10px">Upgrade to Business</a>
174
  </div>
175
  <br>
176
  <div class="rplg-socials">
252
 
253
  <div id="shortcode" class="tab-content" style="display:<?php echo $tab == 'shortcode' ? 'block' : 'none'?>;">
254
  <h3>Shortcode Builder is available in the Business version of the plugin</h3>
255
+ <a href="https://richplugins.com/business-reviews-bundle-wordpress-plugin" target="_blank" style="color:#00bf54;font-size:16px;text-decoration:underline;"><?php echo grw_i('Upgrade to Business'); ?></a>
256
  </div>
257
 
258
  <div id="support" class="tab-content" style="display:<?php echo $tab == 'support' ? 'block' : 'none'?>;">
grw.php CHANGED
@@ -1,10 +1,10 @@
1
  <?php
2
  /*
3
  Plugin Name: Google Reviews Widget
4
- Plugin URI: https://richplugins.com/google-reviews-pro-wordpress-plugin
5
  Description: Instantly Google Places Reviews on your website to increase user confidence and SEO.
6
  Author: RichPlugins <support@richplugins.com>
7
- Version: 1.7.1
8
  Author URI: https://richplugins.com
9
  */
10
 
@@ -13,7 +13,7 @@ require(ABSPATH . 'wp-includes/version.php');
13
  include_once(dirname(__FILE__) . '/api/urlopen.php');
14
  include_once(dirname(__FILE__) . '/helper/debug.php');
15
 
16
- define('GRW_VERSION', '1.7.1');
17
  define('GRW_GOOGLE_PLACE_API', 'https://maps.googleapis.com/maps/api/place/');
18
  define('GRW_GOOGLE_AVATAR', 'https://lh3.googleusercontent.com/-8hepWJzFXpE/AAAAAAAAAAI/AAAAAAAAAAA/I80WzYfIxCQ/s64-c/114307615494839964028.jpg');
19
  define('GRW_PLUGIN_URL', plugins_url(basename(plugin_dir_path(__FILE__ )), basename(__FILE__)));
@@ -72,7 +72,7 @@ function grw_plugin_row_meta($input, $file) {
72
 
73
  $links = array(
74
  '<a href="' . esc_url('https://richplugins.com/documentation') . '" target="_blank">' . grw_i('View Documentation') . '</a>',
75
- '<a href="' . esc_url('https://richplugins.com/google-reviews-pro-wordpress-plugin') . '" target="_blank">' . grw_i('Upgrade to Business') . ' &raquo;</a>',
76
  );
77
  $input = array_merge($input, $links);
78
  return $input;
1
  <?php
2
  /*
3
  Plugin Name: Google Reviews Widget
4
+ Plugin URI: https://richplugins.com/business-reviews-bundle-wordpress-plugin
5
  Description: Instantly Google Places Reviews on your website to increase user confidence and SEO.
6
  Author: RichPlugins <support@richplugins.com>
7
+ Version: 1.7.2
8
  Author URI: https://richplugins.com
9
  */
10
 
13
  include_once(dirname(__FILE__) . '/api/urlopen.php');
14
  include_once(dirname(__FILE__) . '/helper/debug.php');
15
 
16
+ define('GRW_VERSION', '1.7.2');
17
  define('GRW_GOOGLE_PLACE_API', 'https://maps.googleapis.com/maps/api/place/');
18
  define('GRW_GOOGLE_AVATAR', 'https://lh3.googleusercontent.com/-8hepWJzFXpE/AAAAAAAAAAI/AAAAAAAAAAA/I80WzYfIxCQ/s64-c/114307615494839964028.jpg');
19
  define('GRW_PLUGIN_URL', plugins_url(basename(plugin_dir_path(__FILE__ )), basename(__FILE__)));
72
 
73
  $links = array(
74
  '<a href="' . esc_url('https://richplugins.com/documentation') . '" target="_blank">' . grw_i('View Documentation') . '</a>',
75
+ '<a href="' . esc_url('https://richplugins.com/business-reviews-bundle-wordpress-plugin') . '" target="_blank">' . grw_i('Upgrade to Business') . ' &raquo;</a>',
76
  );
77
  $input = array_merge($input, $links);
78
  return $input;
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === Google Reviews Widget ===
2
  Contributors: richplugins
3
- Donate link: https://richplugins.com/google-reviews-pro-wordpress-plugin
4
  Tags: google, reviews, google reviews, google places, google places reviews, testimonials, google review widget, google business reviews, slider, google review, review, google place review, google map reviews, google reviews pro, facebook reviews, facebook page reviews, yelp reviews, yelp business reviews
5
  Requires at least: 2.8
6
  Tested up to: 5.1
7
- Stable tag: 1.7.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -12,7 +12,7 @@ Google Reviews Widget show Google Places Reviews on your WordPress website to in
12
 
13
  == Description ==
14
 
15
- `To get more features we have <a href="https://richplugins.com/google-reviews-pro-wordpress-plugin">Business version</a> of the plugin`
16
 
17
  This plugin display Google Business Reviews on your websites in sidebar widget. A unique feature of the plugin is that it saves reviews in WordPress database and have no depend on any services like Google to show reviews in the widget.
18
 
@@ -39,7 +39,7 @@ This plugin display Google Business Reviews on your websites in sidebar widget.
39
 
40
  = Get More Features with Business version! =
41
 
42
- [Upgrade to Business](https://richplugins.com/google-reviews-pro-wordpress-plugin)
43
 
44
  * Merge reviews between each other from different platforms (Google, Facebook, Yelp) and places
45
  * Trying to get more than 5 Google reviews
@@ -54,12 +54,12 @@ This plugin display Google Business Reviews on your websites in sidebar widget.
54
  * Minimum rating filter
55
  * Priority support
56
 
57
- = Additional Business Reviews Plugins =
58
 
59
- Why limit your reviews to just Google Reviews? Check out our other free business reviews plugins to add to your site as well:
60
 
61
- * [Facebook Reviews Pro](https://richplugins.com/facebook-reviews-pro-wordpress-plugin "Facebook Reviews Pro")
62
- * [Yelp Reviews Pro](https://richplugins.com/yelp-reviews-pro-wordpress-plugin "Yelp Reviews Pro")
63
 
64
  == Installation ==
65
 
@@ -74,6 +74,9 @@ Why limit your reviews to just Google Reviews? Check out our other free business
74
 
75
  == Changelog ==
76
 
 
 
 
77
  = 1.7.1 =
78
  * Improve: added hook to enqueue scripts and styles
79
 
1
  === Google Reviews Widget ===
2
  Contributors: richplugins
3
+ Donate link: https://richplugins.com/business-reviews-bundle-wordpress-plugin
4
  Tags: google, reviews, google reviews, google places, google places reviews, testimonials, google review widget, google business reviews, slider, google review, review, google place review, google map reviews, google reviews pro, facebook reviews, facebook page reviews, yelp reviews, yelp business reviews
5
  Requires at least: 2.8
6
  Tested up to: 5.1
7
+ Stable tag: 1.7.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
12
 
13
  == Description ==
14
 
15
+ `To get more features we have <a href="https://richplugins.com/business-reviews-bundle-wordpress-plugin">Business version</a> of the plugin`
16
 
17
  This plugin display Google Business Reviews on your websites in sidebar widget. A unique feature of the plugin is that it saves reviews in WordPress database and have no depend on any services like Google to show reviews in the widget.
18
 
39
 
40
  = Get More Features with Business version! =
41
 
42
+ [Upgrade to Business](https://richplugins.com/business-reviews-bundle-wordpress-plugin)
43
 
44
  * Merge reviews between each other from different platforms (Google, Facebook, Yelp) and places
45
  * Trying to get more than 5 Google reviews
54
  * Minimum rating filter
55
  * Priority support
56
 
57
+ = Additional Free Reviews Plugins =
58
 
59
+ Why limit your reviews to just Google Reviews? Check out our other free reviews plugins to add to your site as well:
60
 
61
+ * [Facebook Reviews Widget](https://wordpress.org/plugins/fb-reviews-widget/ "Facebook Reviews Widget")
62
+ * [Yelp Reviews Widget](https://wordpress.org/plugins/widget-yelp-reviews/ "Yelp Reviews Widget")
63
 
64
  == Installation ==
65
 
74
 
75
  == Changelog ==
76
 
77
+ = 1.7.2 =
78
+ * Update readme and links to the business version
79
+
80
  = 1.7.1 =
81
  * Improve: added hook to enqueue scripts and styles
82