WP Meta SEO - Version 4.3.3

Version Description

  • Fix : Update page SEO checker text
Download this release

Release Info

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

Code changes from version 4.3.2 to 4.3.3

assets/css/metaseo_sitemap.css CHANGED
@@ -134,10 +134,12 @@ a:active {
134
  #wpms_sitemap_link,
135
  #wpms_html_sitemap_page {
136
  background-color: #fff;
137
- border-right: 0;
138
  border-radius: 4px 0 0 4px;
139
  width: 80%;
140
  }
 
 
 
141
 
142
  .wpms_row_record {
143
  width: 48%;
134
  #wpms_sitemap_link,
135
  #wpms_html_sitemap_page {
136
  background-color: #fff;
 
137
  border-radius: 4px 0 0 4px;
138
  width: 80%;
139
  }
140
+ #wpms_sitemap_link {
141
+ border-right: 0;
142
+ }
143
 
144
  .wpms_row_record {
145
  width: 48%;
assets/wordpress-css-framework/js/tabs.js CHANGED
@@ -38,9 +38,14 @@
38
  // append indicator then set indicator width to tab width
39
  $this.append('<div class="indicator"></div>');
40
  var $indicator = $this.find('.indicator');
41
- if ($this.is(":visible")) {
42
  $indicator.css({"right": $tabs_width - (($index + 1) * $tab_width)});
43
  $indicator.css({"left": $index * $tab_width});
 
 
 
 
 
44
  }
45
  $(window).resize(function () {
46
  $tabs_width = $this.width();
@@ -48,9 +53,14 @@
48
  if ($index < 0) {
49
  $index = 0;
50
  }
51
- if ($tab_width !== 0 && $tabs_width !== 0) {
52
  $indicator.css({"right": $tabs_width - (($index + 1) * $tab_width)});
53
  $indicator.css({"left": $index * $tab_width});
 
 
 
 
 
54
  }
55
  });
56
 
@@ -91,17 +101,25 @@
91
 
92
  $content.show();
93
 
94
- // Update indicator
95
- if (($index - $prev_index) >= 0) {
96
- $indicator.velocity({"right": $tabs_width - (($index + 1) * $tab_width)}, { duration: 300, queue: false, easing: 'easeOutQuad'});
97
- $indicator.velocity({"left": $index * $tab_width}, {duration: 300, queue: false, easing: 'easeOutQuad', delay: 90});
98
-
99
- }
100
- else {
101
- $indicator.velocity({"left": $index * $tab_width}, { duration: 300, queue: false, easing: 'easeOutQuad'});
102
- $indicator.velocity({"right": $tabs_width - (($index + 1) * $tab_width)}, {duration: 300, queue: false, easing: 'easeOutQuad', delay: 90});
 
 
 
 
 
 
 
103
  }
104
 
 
105
  // Prevent the anchor's default click action
106
  e.preventDefault();
107
  });
38
  // append indicator then set indicator width to tab width
39
  $this.append('<div class="indicator"></div>');
40
  var $indicator = $this.find('.indicator');
41
+ if ($this.is(":visible") && !$this.hasClass('ju-horizontal-tabs')) {
42
  $indicator.css({"right": $tabs_width - (($index + 1) * $tab_width)});
43
  $indicator.css({"left": $index * $tab_width});
44
+ } else {
45
+ var $liActive = $this.children().eq($index);
46
+ var liPos = $liActive.position().left - $this.position().left;
47
+ $indicator.css({"left": liPos});
48
+ $indicator.css({"width": $liActive.width()});
49
  }
50
  $(window).resize(function () {
51
  $tabs_width = $this.width();
53
  if ($index < 0) {
54
  $index = 0;
55
  }
56
+ if ($tab_width !== 0 && $tabs_width !== 0 && !$this.hasClass('ju-horizontal-tabs')) {
57
  $indicator.css({"right": $tabs_width - (($index + 1) * $tab_width)});
58
  $indicator.css({"left": $index * $tab_width});
59
+ } else {
60
+ var $liActive = $this.children().eq($index);
61
+ var liPos = $liActive.position().left - $this.position().left;
62
+ $indicator.css({"left": liPos});
63
+ $indicator.css({"width": $liActive.width()});
64
  }
65
  });
66
 
101
 
102
  $content.show();
103
 
104
+ if (!$this.hasClass('ju-horizontal-tabs')) {
105
+ // Update indicator
106
+ if (($index - $prev_index) >= 0) {
107
+ $indicator.velocity({"right": $tabs_width - (($index + 1) * $tab_width)}, { duration: 300, queue: false, easing: 'easeOutQuad'});
108
+ $indicator.velocity({"left": $index * $tab_width}, {duration: 300, queue: false, easing: 'easeOutQuad', delay: 90});
109
+
110
+ }
111
+ else {
112
+ $indicator.velocity({"left": $index * $tab_width}, { duration: 300, queue: false, easing: 'easeOutQuad'});
113
+ $indicator.velocity({"right": $tabs_width - (($index + 1) * $tab_width)}, {duration: 300, queue: false, easing: 'easeOutQuad', delay: 90});
114
+ }
115
+ } else {
116
+ var $liActive = $this.children().eq($index);
117
+ var liPos = $liActive.position().left - $this.position().left;
118
+ $indicator.css({"left": liPos});
119
+ $indicator.css({"width": $liActive.width()});
120
  }
121
 
122
+
123
  // Prevent the anchor's default click action
124
  e.preventDefault();
125
  });
inc/class.metaseo-admin.php CHANGED
@@ -1489,7 +1489,7 @@ class MetaSeoAdmin
1489
  'imgalt',
1490
  $tooltip_page['image_alt'],
1491
  'done',
1492
- esc_html__('Image have meta alt', 'wp-meta-seo'),
1493
  1
1494
  );
1495
  $check += 2;
@@ -1563,7 +1563,7 @@ class MetaSeoAdmin
1563
  'imgalt',
1564
  $tooltip_page['image_alt'],
1565
  'done',
1566
- esc_html__('Image have meta alt', 'wp-meta-seo'),
1567
  1
1568
  );
1569
  $check ++;
@@ -1573,7 +1573,7 @@ class MetaSeoAdmin
1573
  'imgalt',
1574
  $tooltip_page['image_alt'],
1575
  'done',
1576
- esc_html__('Image have meta alt', 'wp-meta-seo'),
1577
  1
1578
  );
1579
  $check ++;
@@ -1582,7 +1582,7 @@ class MetaSeoAdmin
1582
  'imgalt',
1583
  $tooltip_page['image_alt'],
1584
  'warning',
1585
- esc_html__('Image have meta alt', 'wp-meta-seo'),
1586
  0
1587
  );
1588
  }
1489
  'imgalt',
1490
  $tooltip_page['image_alt'],
1491
  'done',
1492
+ esc_html__('Image alt information filled', 'wp-meta-seo'),
1493
  1
1494
  );
1495
  $check += 2;
1563
  'imgalt',
1564
  $tooltip_page['image_alt'],
1565
  'done',
1566
+ esc_html__('Image alt information filled', 'wp-meta-seo'),
1567
  1
1568
  );
1569
  $check ++;
1573
  'imgalt',
1574
  $tooltip_page['image_alt'],
1575
  'done',
1576
+ esc_html__('Image alt information filled', 'wp-meta-seo'),
1577
  1
1578
  );
1579
  $check ++;
1582
  'imgalt',
1583
  $tooltip_page['image_alt'],
1584
  'warning',
1585
+ esc_html__('Image alt information filled', 'wp-meta-seo'),
1586
  0
1587
  );
1588
  }
languages/wp-meta-seo-en_US.mo CHANGED
Binary file
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  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.7
5
- Tested up to: 5.6.1
6
- Stable tag: 4.3.2
7
  Requires PHP: 5.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -162,14 +162,13 @@ The redirect manager will help you to fix all types of 404 errors you can encoun
162
  * <a href="https://www.joomunited.com/wordpress-products/wp-speed-of-light" rel="friend">WP Speed of Light: </a> Speedup your website in an easy way
163
  * <a href="https://www.joomunited.com/wordpress-products/wp-latest-posts" rel="friend">WP Latest Posts: </a> Super flexible latest posts and content
164
  * <a href="https://www.joomunited.com/wordpress-products/wp-table-manager" rel="friend"> WP Table Manager: </a> Create and manage tables with style
165
- * <a href="https://www.joomunited.com/wordpress-products/advanced-gutenberg" rel="friend"> Advanced Gutenberg: </a> Light and efficient WP page builder
166
 
167
 
168
  = Support =
169
 
170
  A HTML support document is provided with WP Meta SEO on JoomUnited website
171
  Feel free to ask SEO questions on our forum or here in the support section
172
- **Documentation here:** <a href="https://www.joomunited.com/support/wordpress-plugins-documentation#wp-meta-seo" rel="friend">https://www.joomunited.com/support/wordpress-plugins-documentation#wp-meta-seo</a>
173
 
174
  == Installation ==
175
 
@@ -259,6 +258,9 @@ Yes WP Meta SEO is compatible with Gutenberg editor since 3.7 version.
259
 
260
  == Changelog ==
261
 
 
 
 
262
  = 4.3.2 =
263
  * Fix : Tooltips are going out of the screen on bulk lists
264
 
2
  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.7
5
+ Tested up to: 5.7.0
6
+ Stable tag: 4.3.3
7
  Requires PHP: 5.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
162
  * <a href="https://www.joomunited.com/wordpress-products/wp-speed-of-light" rel="friend">WP Speed of Light: </a> Speedup your website in an easy way
163
  * <a href="https://www.joomunited.com/wordpress-products/wp-latest-posts" rel="friend">WP Latest Posts: </a> Super flexible latest posts and content
164
  * <a href="https://www.joomunited.com/wordpress-products/wp-table-manager" rel="friend"> WP Table Manager: </a> Create and manage tables with style
 
165
 
166
 
167
  = Support =
168
 
169
  A HTML support document is provided with WP Meta SEO on JoomUnited website
170
  Feel free to ask SEO questions on our forum or here in the support section
171
+ **Documentation here:** <a href="https://www.joomunited.com/support/wordpress-plugins-documentation?extension=wp-meta-seo#document" rel="friend">https://www.joomunited.com/support/wordpress-plugins-documentation?extension=wp-meta-seo#document</a>
172
 
173
  == Installation ==
174
 
258
 
259
  == Changelog ==
260
 
261
+ = 4.3.3 =
262
+ * Fix : Update page SEO checker text
263
+
264
  = 4.3.2 =
265
  * Fix : Tooltips are going out of the screen on bulk lists
266
 
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: 4.3.2
8
  * Text Domain: wp-meta-seo
9
  * Domain Path: /languages
10
  * Author: JoomUnited
@@ -132,7 +132,7 @@ if (!defined('WPMSEO_VERSION')) {
132
  /**
133
  * Plugin version
134
  */
135
- define('WPMSEO_VERSION', '4.3.2');
136
  }
137
 
138
  if (!defined('WPMS_CLIENTID')) {
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: 4.3.3
8
  * Text Domain: wp-meta-seo
9
  * Domain Path: /languages
10
  * Author: JoomUnited
132
  /**
133
  * Plugin version
134
  */
135
+ define('WPMSEO_VERSION', '4.3.3');
136
  }
137
 
138
  if (!defined('WPMS_CLIENTID')) {