WP Meta SEO - Version 3.2.1

Version Description

  • Fix compatibility with WP Speed of Light plugin: https://www.joomunited.com/wordpress-products/wp-speed-of-light
Download this release

Release Info

Developer JoomUnited
Plugin Icon 128x128 WP Meta SEO
Version 3.2.1
Comparing to
See all releases

Code changes from version 3.2.0 to 3.2.1

css/google-analytics/admin-widgets.css CHANGED
@@ -235,8 +235,6 @@
235
  padding: 2px 0px;
236
  border-radius: 0;
237
  border: #ddd 1px solid;
238
- background: #fff !important;
239
- background-image: none !important;
240
  color: #a0a5aa;
241
  }
242
 
@@ -247,6 +245,11 @@
247
  border: #ddd 1px solid;
248
  }
249
 
 
 
 
 
 
250
  .google-visualization-table-page-number.current{
251
  background: #e5e5e5 !important;
252
  font-weight: 100 !important;
235
  padding: 2px 0px;
236
  border-radius: 0;
237
  border: #ddd 1px solid;
 
 
238
  color: #a0a5aa;
239
  }
240
 
245
  border: #ddd 1px solid;
246
  }
247
 
248
+ .google-visualization-table .gradient{
249
+ background-image: none;
250
+ background-color: #fff;
251
+ }
252
+
253
  .google-visualization-table-page-number.current{
254
  background: #e5e5e5 !important;
255
  font-weight: 100 !important;
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: JoomUnited
3
  Tags: google, webmaster tools, keywords, meta, meta description, meta keywords, meta title, robots meta, search engine optimization, seo, wordpress seo, yahoo, image optimization, image resize, custom post seo, redirect, redirection, 301, broken link
4
  Requires at least: 4.0
5
  Tested up to: 4.6.1
6
- Stable tag: 3.2.0
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -240,6 +240,9 @@ It could be! if you have a lot of pages that need to be indexed with no specific
240
 
241
  == Changelog ==
242
 
 
 
 
243
  = 3.2.0 =
244
  * Enable Google Analytics tracking with token access
245
  * Tracking options to exclude WordPress user groups from analytics
3
  Tags: google, webmaster tools, keywords, meta, meta description, meta keywords, meta title, robots meta, search engine optimization, seo, wordpress seo, yahoo, image optimization, image resize, custom post seo, redirect, redirection, 301, broken link
4
  Requires at least: 4.0
5
  Tested up to: 4.6.1
6
+ Stable tag: 3.2.1
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
240
 
241
  == Changelog ==
242
 
243
+ = 3.2.1 =
244
+ * Fix compatibility with WP Speed of Light plugin: https://www.joomunited.com/wordpress-products/wp-speed-of-light
245
+
246
  = 3.2.0 =
247
  * Enable Google Analytics tracking with token access
248
  * Tracking options to exclude WordPress user groups from analytics
wp-meta-seo.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin Name: WP Meta SEO
5
  * Plugin URI: http://www.joomunited.com/wordpress-products/wp-meta-seo
6
  * Description: WP Meta SEO is a plugin for WordPress to fill meta for content, images and main SEO info in a single view.
7
- * Version: 3.2.0
8
  * Text Domain: wp-meta-seo
9
  * Domain Path: /languages
10
  * Author: JoomUnited
@@ -46,7 +46,7 @@ if (!defined('URL'))
46
  define('URL', get_site_url());
47
 
48
  if (!defined('WPMSEO_VERSION')) {
49
- define('WPMSEO_VERSION', '3.2.0');
50
  }
51
 
52
  if (!defined('WPMS_CLIENTID')) {
@@ -87,7 +87,7 @@ if (is_admin()) {
87
 
88
  } else {
89
  /******** Check again and modify title, meta title, meta description before output ********/
90
- add_action('init', 'buffer_start');
91
  add_action('wp_head', 'buffer_end');
92
  require_once( WPMETASEO_PLUGIN_DIR . 'inc/class.metaseo-front_end.php' );
93
  $GLOBALS['metaseo_front'] = new MetaSeo_Front;
4
  * Plugin Name: WP Meta SEO
5
  * Plugin URI: http://www.joomunited.com/wordpress-products/wp-meta-seo
6
  * Description: WP Meta SEO is a plugin for WordPress to fill meta for content, images and main SEO info in a single view.
7
+ * Version: 3.2.1
8
  * Text Domain: wp-meta-seo
9
  * Domain Path: /languages
10
  * Author: JoomUnited
46
  define('URL', get_site_url());
47
 
48
  if (!defined('WPMSEO_VERSION')) {
49
+ define('WPMSEO_VERSION', '3.2.1');
50
  }
51
 
52
  if (!defined('WPMS_CLIENTID')) {
87
 
88
  } else {
89
  /******** Check again and modify title, meta title, meta description before output ********/
90
+ add_action('template_redirect', 'buffer_start');
91
  add_action('wp_head', 'buffer_end');
92
  require_once( WPMETASEO_PLUGIN_DIR . 'inc/class.metaseo-front_end.php' );
93
  $GLOBALS['metaseo_front'] = new MetaSeo_Front;