Google Sitemap by BestWebSoft - Version 2.8.5

Version Description

  • 13.01.2014 =
  • Bugfix : Bugs related on using string offset as an array were fixed.
  • Update : Screenshots was updated.
Download this release

Release Info

Developer bestwebsoft
Plugin Icon 128x128 Google Sitemap by BestWebSoft
Version 2.8.5
Comparing to
See all releases

Code changes from version 2.8.4 to 2.8.5

css/style.css CHANGED
@@ -22,6 +22,11 @@
22
  color: #FFFFFF;
23
  border-color: #11688F;
24
  }
 
 
 
 
 
25
  /*
26
  * styles for rate-support div on the settings page
27
  */
22
  color: #FFFFFF;
23
  border-color: #11688F;
24
  }
25
+ .bws_go_pro_tab.nav-tab-active {
26
+ background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
27
+ border-color: #CCCCCC #CCCCCC #F1F1F1;
28
+ color: #000000;
29
+ }
30
  /*
31
  * styles for rate-support div on the settings page
32
  */
google-sitemap-plugin.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Google Sitemap
4
  Plugin URI: http://bestwebsoft.com/plugin/
5
  Description: Plugin to add google sitemap file in Google Webmaster Tools account.
6
  Author: BestWebSoft
7
- Version: 2.8.4
8
  Author URI: http://bestwebsoft.com/
9
  License: GPLv2 or later
10
  */
@@ -231,12 +231,12 @@ if ( ! function_exists ( 'gglstmp_settings_page' ) ) {
231
  if ( ! $au && ( $_POST['gglstmp_email'] ) && ( $_POST['gglstmp_passwd'] ) )
232
  $error = __( 'Login and password do not match. Please try again', 'sitemap' );
233
  }
234
-
235
  /* GO PRO */
236
  if ( isset( $_GET['action'] ) && 'go_pro' == $_GET['action'] ) {
237
  global $wpmu;
238
 
239
  $bws_license_key = ( isset( $_POST['bws_license_key'] ) ) ? trim( $_POST['bws_license_key'] ) : "";
 
240
  if ( 1 == $wpmu ) {
241
  if ( !get_site_option( 'bstwbsftwppdtplgns_options' ) )
242
  add_site_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options_defaults, '', 'yes' );
@@ -259,6 +259,7 @@ if ( ! function_exists ( 'gglstmp_settings_page' ) ) {
259
  $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] = 1;
260
  $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['time'] = time();
261
  }
 
262
  /* download Pro */
263
  if ( !function_exists( 'get_plugins' ) )
264
  require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
@@ -296,8 +297,7 @@ if ( ! function_exists ( 'gglstmp_settings_page' ) ) {
296
  }
297
  }
298
  if ( '' == $error ) {
299
- global $wpmu;
300
- $bstwbsftwppdtplgns_options_defaults = array();
301
  $bstwbsftwppdtplgns_options[ $bws_license_plugin ] = $bws_license_key;
302
 
303
  $url = 'http://bestwebsoft.com/wp-content/plugins/paid-products/plugins/downloads/?bws_first_download=' . $bws_license_plugin . '&bws_license_key=' . $bws_license_key . '&download_from=5';
@@ -526,7 +526,7 @@ if ( ! function_exists ( 'gglstmp_settings_page' ) ) {
526
  </p>
527
  <?php if ( isset( $bstwbsftwppdtplgns_options['go_pro']['google-sitemap-pro/google-sitemap-pro.php']['count'] ) &&
528
  '5' < $bstwbsftwppdtplgns_options['go_pro']['google-sitemap-pro/google-sitemap-pro.php']['count'] &&
529
- $bstwbsftwppdtplgns_options['go_pro']['google-sitemap-pro/google-sitemap-pro.php']['time'] < ( time() + (24 * 60 * 60) ) ) { ?>
530
  <p>
531
  <input disabled="disabled" type="text" name="bws_license_key" value="<?php echo $bws_license_key; ?>" />
532
  <input disabled="disabled" type="submit" class="button-primary" value="<?php _e( 'Go!', 'sitemap' ); ?>" />
4
  Plugin URI: http://bestwebsoft.com/plugin/
5
  Description: Plugin to add google sitemap file in Google Webmaster Tools account.
6
  Author: BestWebSoft
7
+ Version: 2.8.5
8
  Author URI: http://bestwebsoft.com/
9
  License: GPLv2 or later
10
  */
231
  if ( ! $au && ( $_POST['gglstmp_email'] ) && ( $_POST['gglstmp_passwd'] ) )
232
  $error = __( 'Login and password do not match. Please try again', 'sitemap' );
233
  }
 
234
  /* GO PRO */
235
  if ( isset( $_GET['action'] ) && 'go_pro' == $_GET['action'] ) {
236
  global $wpmu;
237
 
238
  $bws_license_key = ( isset( $_POST['bws_license_key'] ) ) ? trim( $_POST['bws_license_key'] ) : "";
239
+ $bstwbsftwppdtplgns_options_defaults = array();
240
  if ( 1 == $wpmu ) {
241
  if ( !get_site_option( 'bstwbsftwppdtplgns_options' ) )
242
  add_site_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options_defaults, '', 'yes' );
259
  $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] = 1;
260
  $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['time'] = time();
261
  }
262
+
263
  /* download Pro */
264
  if ( !function_exists( 'get_plugins' ) )
265
  require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
297
  }
298
  }
299
  if ( '' == $error ) {
300
+ global $wpmu;
 
301
  $bstwbsftwppdtplgns_options[ $bws_license_plugin ] = $bws_license_key;
302
 
303
  $url = 'http://bestwebsoft.com/wp-content/plugins/paid-products/plugins/downloads/?bws_first_download=' . $bws_license_plugin . '&bws_license_key=' . $bws_license_key . '&download_from=5';
526
  </p>
527
  <?php if ( isset( $bstwbsftwppdtplgns_options['go_pro']['google-sitemap-pro/google-sitemap-pro.php']['count'] ) &&
528
  '5' < $bstwbsftwppdtplgns_options['go_pro']['google-sitemap-pro/google-sitemap-pro.php']['count'] &&
529
+ $bstwbsftwppdtplgns_options['go_pro']['google-sitemap-pro/google-sitemap-pro.php']['time'] < ( time() + ( 24 * 60 * 60 ) ) ) { ?>
530
  <p>
531
  <input disabled="disabled" type="text" name="bws_license_key" value="<?php echo $bws_license_key; ?>" />
532
  <input disabled="disabled" type="submit" class="button-primary" value="<?php _e( 'Go!', 'sitemap' ); ?>" />
languages/sitemap-ru_RU.po CHANGED
File without changes
languages/sitemap-uk.po CHANGED
File without changes
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.2checkout.com/checkout/purchase?sid=1430388&quantity=10
4
  Tags: sitemap, google sitemap, google api, google webmaster tools, stmap, gogle sitemap, sitemp, google api sitemap, api sitemap, webmaster sitemap, webmaster tols, google stmp
5
  Requires at least: 3.0
6
  Tested up to: 3.8
7
- Stable tag: 2.8.4
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -14,6 +14,8 @@ This plugin allows you to add a Sitemap file to Google Webmaster Tools.
14
 
15
  With the Google Sitemap Plugin you can create and add a Sitemap file to Google Webmaster Tools, and get the info about your site in Google Webmaster Tools.
16
 
 
 
17
  <a href="http://wordpress.org/plugins/google-sitemap-plugin/faq/" target="_blank">FAQ</a>
18
 
19
  <a href="http://support.bestwebsoft.com" target="_blank">Support</a>
@@ -84,9 +86,14 @@ In the WordPress admin panel please go to "Plugins", find the Google Sitemap and
84
 
85
  1. Google Sitemap Settings page.
86
  2. Google Sitemap Settings page on the hosting which doesn't support cURL.
 
87
 
88
  == Changelog ==
89
 
 
 
 
 
90
  = V2.8.4 - 10.01.2014 =
91
  * NEW : Installed wordpress version checking was added.
92
  * Update : BWS plugins section was updated.
@@ -171,6 +178,9 @@ In the WordPress admin panel please go to "Plugins", find the Google Sitemap and
171
 
172
  == Upgrade Notice ==
173
 
 
 
 
174
  = V2.8.4 =
175
  Checking installed wordpress version was added. BWS plugins section was updated. We updated all functionality for wordpress 3.8. Activation of radio button or checkbox by clicking on its label was added.
176
 
4
  Tags: sitemap, google sitemap, google api, google webmaster tools, stmap, gogle sitemap, sitemp, google api sitemap, api sitemap, webmaster sitemap, webmaster tols, google stmp
5
  Requires at least: 3.0
6
  Tested up to: 3.8
7
+ Stable tag: 2.8.5
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
14
 
15
  With the Google Sitemap Plugin you can create and add a Sitemap file to Google Webmaster Tools, and get the info about your site in Google Webmaster Tools.
16
 
17
+ http://www.youtube.com/watch?v=C4M_ge0dyuU
18
+
19
  <a href="http://wordpress.org/plugins/google-sitemap-plugin/faq/" target="_blank">FAQ</a>
20
 
21
  <a href="http://support.bestwebsoft.com" target="_blank">Support</a>
86
 
87
  1. Google Sitemap Settings page.
88
  2. Google Sitemap Settings page on the hosting which doesn't support cURL.
89
+ 3. Google Sitemap Extra Settings page.
90
 
91
  == Changelog ==
92
 
93
+ = V2.8.5 - 13.01.2014 =
94
+ * Bugfix : Bugs related on using string offset as an array were fixed.
95
+ * Update : Screenshots was updated.
96
+
97
  = V2.8.4 - 10.01.2014 =
98
  * NEW : Installed wordpress version checking was added.
99
  * Update : BWS plugins section was updated.
178
 
179
  == Upgrade Notice ==
180
 
181
+ = V2.8.5 =
182
+ Bugs related on using string offset as an array were fixed. Screenshots was updated.
183
+
184
  = V2.8.4 =
185
  Checking installed wordpress version was added. BWS plugins section was updated. We updated all functionality for wordpress 3.8. Activation of radio button or checkbox by clicking on its label was added.
186
 
screenshot-1.jpg DELETED
Binary file
screenshot-1.png ADDED
Binary file
screenshot-2.jpg DELETED
Binary file
screenshot-2.png ADDED
Binary file
screenshot-3.png ADDED
Binary file