SEOPress - Version 5.9.0.3

Version Description

  • FIX Regression with Analytics and Cookie bar
Download this release

Release Info

Developer rainbowgeek
Plugin Icon 128x128 SEOPress
Version 5.9.0.3
Comparing to
See all releases

Code changes from version 5.9.0.2 to 5.9.0.3

inc/admin/metaboxes/admin-metaboxes-form.php CHANGED
@@ -742,7 +742,15 @@ if ('term.php' == $pagenow || 'edit-tags.php' == $pagenow) { ?>
742
  if ('' != $seopress_redirections_value || in_array($seopress_redirections_type, $status_code)) {
743
  if ('post-new.php' == $pagenow || 'post.php' == $pagenow) {
744
  if ('seopress_404' == $typenow) {
745
- $href = get_home_url() . '/' . get_the_title();
 
 
 
 
 
 
 
 
746
  } else {
747
  $href = get_the_permalink();
748
  }
742
  if ('' != $seopress_redirections_value || in_array($seopress_redirections_type, $status_code)) {
743
  if ('post-new.php' == $pagenow || 'post.php' == $pagenow) {
744
  if ('seopress_404' == $typenow) {
745
+
746
+ $parse_url = wp_parse_url(get_home_url());
747
+
748
+ $home_url = get_home_url();
749
+ if ( ! empty($parse_url['scheme']) && ! empty($parse_url['host'])) {
750
+ $home_url = $parse_url['scheme'] . '://' . $parse_url['host'];
751
+ }
752
+
753
+ $href = $home_url . '/' . get_the_title();
754
  } else {
755
  $href = get_the_permalink();
756
  }
inc/functions/options-google-analytics.php CHANGED
@@ -267,24 +267,22 @@ function seopress_cookies_user_consent_render() {
267
  }
268
 
269
  if ('1' == seopress_google_analytics_disable_option()) {
270
- if (!is_user_logged_in()) {
271
- seopress_cookies_user_consent_render();
272
- return;
273
- }
274
-
275
- global $wp_roles;
276
-
277
- //Get current user role
278
- if (empty(wp_get_current_user()->roles) || !isset(wp_get_current_user()->roles[0])) {
279
- seopress_cookies_user_consent_render();
280
- return;
281
- }
282
 
283
- $seopress_user_role = wp_get_current_user()->roles[0];
284
- //If current user role matchs values from SEOPress GA settings then apply
285
- if (function_exists('seopress_google_analytics_roles_option') && '' != seopress_google_analytics_roles_option()) {
286
- if (array_key_exists($seopress_user_role, seopress_google_analytics_roles_option())) {
287
- //do nothing
 
 
 
 
 
 
 
 
288
  } else {
289
  seopress_cookies_user_consent_render();
290
  }
267
  }
268
 
269
  if ('1' == seopress_google_analytics_disable_option()) {
270
+ if (is_user_logged_in()) {
271
+ global $wp_roles;
 
 
 
 
 
 
 
 
 
 
272
 
273
+ //Get current user role
274
+ if (isset(wp_get_current_user()->roles[0])) {
275
+ $seopress_user_role = wp_get_current_user()->roles[0];
276
+ //If current user role matchs values from SEOPress GA settings then apply
277
+ if (function_exists('seopress_google_analytics_roles_option') && '' != seopress_google_analytics_roles_option()) {
278
+ if (array_key_exists($seopress_user_role, seopress_google_analytics_roles_option())) {
279
+ //do nothing
280
+ } else {
281
+ seopress_cookies_user_consent_render();
282
+ }
283
+ } else {
284
+ seopress_cookies_user_consent_render();
285
+ }
286
  } else {
287
  seopress_cookies_user_consent_render();
288
  }
inc/functions/options-instant-indexing.php CHANGED
@@ -134,13 +134,13 @@ function seopress_instant_indexing_fn($is_manual_submission = true, $permalink =
134
  //Prepare the URLS
135
  if ($is_manual_submission === true) {
136
  $urls = preg_split('/\r\n|\r|\n/', $urls);
137
- $x_source_info = 'https://www.seopress.org/5.9.0.2/true';
138
 
139
  $urls = array_slice($urls, 0, 100);
140
  } elseif ($is_manual_submission === false && !empty($permalink)) {
141
  $urls = null;
142
  $urls[] = $permalink;
143
- $x_source_info = 'https://www.seopress.org/5.9.0.2/false';
144
  }
145
 
146
  //Bing API
134
  //Prepare the URLS
135
  if ($is_manual_submission === true) {
136
  $urls = preg_split('/\r\n|\r|\n/', $urls);
137
+ $x_source_info = 'https://www.seopress.org/5.9.0.3/true';
138
 
139
  $urls = array_slice($urls, 0, 100);
140
  } elseif ($is_manual_submission === false && !empty($permalink)) {
141
  $urls = null;
142
  $urls[] = $permalink;
143
+ $x_source_info = 'https://www.seopress.org/5.9.0.3/false';
144
  }
145
 
146
  //Bing API
languages/wp-seopress.pot CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the GPLv2.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: SEOPress 5.9.0.2\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-seopress\n"
7
  "Last-Translator: SEOPress Team <contact@seopress.org>\n"
8
  "Language-Team: SEOPress Team <contact@seopress.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2022-08-22T08:47:36+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.6.0\n"
15
  "X-Domain: wp-seopress\n"
@@ -2554,7 +2554,7 @@ msgid "Your video sitemap is empty? Read our guide to learn more about <a href=\
2554
  msgstr ""
2555
 
2556
  #: inc/admin/callbacks/Sitemaps.php:82
2557
- #: inc/admin/metaboxes/admin-metaboxes-form.php:814
2558
  msgid "YouTube videos are automatically added when you create / save a post, page or post type."
2559
  msgstr ""
2560
 
@@ -2690,7 +2690,7 @@ msgstr ""
2690
  #: inc/admin/callbacks/Social.php:527
2691
  #: inc/admin/metaboxes/admin-metaboxes-form.php:430
2692
  #: inc/admin/metaboxes/admin-metaboxes-form.php:550
2693
- #: inc/admin/metaboxes/admin-metaboxes-form.php:907
2694
  #: inc/admin/wizard/admin-wizard.php:750
2695
  msgid "Upload an Image"
2696
  msgstr ""
@@ -3938,159 +3938,159 @@ msgstr ""
3938
  msgid "Exclude all parameters and pass them to the redirection"
3939
  msgstr ""
3940
 
3941
- #: inc/admin/metaboxes/admin-metaboxes-form.php:758
3942
  msgid "Test your URL"
3943
  msgstr ""
3944
 
3945
- #: inc/admin/metaboxes/admin-metaboxes-form.php:769
3946
  msgid "Need help with your redirections? Read our guide."
3947
  msgstr ""
3948
 
3949
- #: inc/admin/metaboxes/admin-metaboxes-form.php:787
3950
  msgid "Exclude this post from Google News Sitemap?"
3951
  msgstr ""
3952
 
3953
- #: inc/admin/metaboxes/admin-metaboxes-form.php:821
3954
  msgid "Exclude this post from Video Sitemap?"
3955
  msgstr ""
3956
 
3957
- #: inc/admin/metaboxes/admin-metaboxes-form.php:823
3958
  msgid "If your post is set to noindex, it will be automatically excluded from the sitemap."
3959
  msgstr ""
3960
 
3961
- #: inc/admin/metaboxes/admin-metaboxes-form.php:841
3962
  msgid "Video "
3963
  msgstr ""
3964
 
3965
- #: inc/admin/metaboxes/admin-metaboxes-form.php:846
3966
  msgid "Video URL (required)"
3967
  msgstr ""
3968
 
3969
- #: inc/admin/metaboxes/admin-metaboxes-form.php:851
3970
  msgid "Enter your video URL"
3971
  msgstr ""
3972
 
3973
- #: inc/admin/metaboxes/admin-metaboxes-form.php:852
3974
  msgid "Video URL"
3975
  msgstr ""
3976
 
3977
- #: inc/admin/metaboxes/admin-metaboxes-form.php:864
3978
  msgid "NOT an external video (eg: video hosting on YouTube, Vimeo, Wistia...)? Check this if your video is hosting on this server."
3979
  msgstr ""
3980
 
3981
- #: inc/admin/metaboxes/admin-metaboxes-form.php:869
3982
  msgid "Video Title (required)"
3983
  msgstr ""
3984
 
3985
- #: inc/admin/metaboxes/admin-metaboxes-form.php:874
3986
  msgid "Enter your video title"
3987
  msgstr ""
3988
 
3989
- #: inc/admin/metaboxes/admin-metaboxes-form.php:875
3990
  msgid "Video title"
3991
  msgstr ""
3992
 
3993
- #: inc/admin/metaboxes/admin-metaboxes-form.php:877
3994
  msgid "Default: title tag, if not available, post title."
3995
  msgstr ""
3996
 
3997
- #: inc/admin/metaboxes/admin-metaboxes-form.php:881
3998
  msgid "Video Description (required)"
3999
  msgstr ""
4000
 
4001
- #: inc/admin/metaboxes/admin-metaboxes-form.php:886
4002
  msgid "Enter your video description"
4003
  msgstr ""
4004
 
4005
- #: inc/admin/metaboxes/admin-metaboxes-form.php:887
4006
  msgid "Video description"
4007
  msgstr ""
4008
 
4009
- #: inc/admin/metaboxes/admin-metaboxes-form.php:888
4010
  msgid "2048 characters max.; default: meta description. If not available, use the beginning of the post content."
4011
  msgstr ""
4012
 
4013
- #: inc/admin/metaboxes/admin-metaboxes-form.php:892
4014
  msgid "Video Thumbnail (required)"
4015
  msgstr ""
4016
 
4017
- #: inc/admin/metaboxes/admin-metaboxes-form.php:899
4018
  msgid "Select your video thumbnail"
4019
  msgstr ""
4020
 
4021
- #: inc/admin/metaboxes/admin-metaboxes-form.php:906
4022
  msgid "Video Thumbnail"
4023
  msgstr ""
4024
 
4025
- #: inc/admin/metaboxes/admin-metaboxes-form.php:909
4026
  msgid "Minimum size: 160x90px (1920x1080 max), JPG, PNG or GIF formats. Default: your post featured image."
4027
  msgstr ""
4028
 
4029
- #: inc/admin/metaboxes/admin-metaboxes-form.php:914
4030
  msgid "Video Duration (recommended)"
4031
  msgstr ""
4032
 
4033
- #: inc/admin/metaboxes/admin-metaboxes-form.php:919
4034
  msgid "Duration in seconds"
4035
  msgstr ""
4036
 
4037
- #: inc/admin/metaboxes/admin-metaboxes-form.php:920
4038
  msgid "Video duration"
4039
  msgstr ""
4040
 
4041
- #: inc/admin/metaboxes/admin-metaboxes-form.php:922
4042
  msgid "The duration of the video in seconds. Value must be between 0 and 28800 (8 hours)."
4043
  msgstr ""
4044
 
4045
- #: inc/admin/metaboxes/admin-metaboxes-form.php:926
4046
  msgid "Video Rating"
4047
  msgstr ""
4048
 
4049
- #: inc/admin/metaboxes/admin-metaboxes-form.php:931
4050
- #: inc/admin/metaboxes/admin-metaboxes-form.php:932
4051
  msgid "Video rating"
4052
  msgstr ""
4053
 
4054
- #: inc/admin/metaboxes/admin-metaboxes-form.php:934
4055
  msgid "Allowed values are float numbers in the range 0.0 to 5.0."
4056
  msgstr ""
4057
 
4058
- #: inc/admin/metaboxes/admin-metaboxes-form.php:938
4059
- #: inc/admin/metaboxes/admin-metaboxes-form.php:944
4060
  msgid "View count"
4061
  msgstr ""
4062
 
4063
- #: inc/admin/metaboxes/admin-metaboxes-form.php:943
4064
  msgid "Number of views"
4065
  msgstr ""
4066
 
4067
- #: inc/admin/metaboxes/admin-metaboxes-form.php:949
4068
- #: inc/admin/metaboxes/admin-metaboxes-form.php:955
4069
  msgid "Video tags"
4070
  msgstr ""
4071
 
4072
- #: inc/admin/metaboxes/admin-metaboxes-form.php:954
4073
  msgid "Enter your video tags"
4074
  msgstr ""
4075
 
4076
- #: inc/admin/metaboxes/admin-metaboxes-form.php:957
4077
  msgid "32 tags max., separate tags with commas. Default: target keywords + post tags if available."
4078
  msgstr ""
4079
 
4080
- #: inc/admin/metaboxes/admin-metaboxes-form.php:968
4081
  msgid "NOT family friendly?"
4082
  msgstr ""
4083
 
4084
- #: inc/admin/metaboxes/admin-metaboxes-form.php:970
4085
  msgid "The video will be available only to users with SafeSearch turned off."
4086
  msgstr ""
4087
 
4088
- #: inc/admin/metaboxes/admin-metaboxes-form.php:973
4089
  #: app/react/layout/Main/components/VideoSitemap/index.js:135
4090
  msgid "Remove video"
4091
  msgstr ""
4092
 
4093
- #: inc/admin/metaboxes/admin-metaboxes-form.php:983
4094
  #: app/react/layout/Main/components/VideoSitemap/index.js:165
4095
  msgid "Add video"
4096
  msgstr ""
@@ -5579,27 +5579,27 @@ msgstr ""
5579
  msgid "Manage cookies"
5580
  msgstr ""
5581
 
5582
- #: inc/functions/options-google-analytics.php:502
5583
  #: inc/functions/options-matomo.php:183
5584
  msgid "Authors"
5585
  msgstr ""
5586
 
5587
- #: inc/functions/options-google-analytics.php:521
5588
  #: inc/functions/options-matomo.php:196
5589
  msgid "Categories"
5590
  msgstr ""
5591
 
5592
- #: inc/functions/options-google-analytics.php:546
5593
  #: inc/functions/options-matomo.php:215
5594
  msgid "Tags"
5595
  msgstr ""
5596
 
5597
- #: inc/functions/options-google-analytics.php:558
5598
  #: inc/functions/options-matomo.php:223
5599
  msgid "Post types"
5600
  msgstr ""
5601
 
5602
- #: inc/functions/options-google-analytics.php:570
5603
  #: inc/functions/options-matomo.php:231
5604
  msgid "Connected users"
5605
  msgstr ""
2
  # This file is distributed under the GPLv2.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: SEOPress 5.9.0.3\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-seopress\n"
7
  "Last-Translator: SEOPress Team <contact@seopress.org>\n"
8
  "Language-Team: SEOPress Team <contact@seopress.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2022-08-23T12:14:02+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.6.0\n"
15
  "X-Domain: wp-seopress\n"
2554
  msgstr ""
2555
 
2556
  #: inc/admin/callbacks/Sitemaps.php:82
2557
+ #: inc/admin/metaboxes/admin-metaboxes-form.php:822
2558
  msgid "YouTube videos are automatically added when you create / save a post, page or post type."
2559
  msgstr ""
2560
 
2690
  #: inc/admin/callbacks/Social.php:527
2691
  #: inc/admin/metaboxes/admin-metaboxes-form.php:430
2692
  #: inc/admin/metaboxes/admin-metaboxes-form.php:550
2693
+ #: inc/admin/metaboxes/admin-metaboxes-form.php:915
2694
  #: inc/admin/wizard/admin-wizard.php:750
2695
  msgid "Upload an Image"
2696
  msgstr ""
3938
  msgid "Exclude all parameters and pass them to the redirection"
3939
  msgstr ""
3940
 
3941
+ #: inc/admin/metaboxes/admin-metaboxes-form.php:766
3942
  msgid "Test your URL"
3943
  msgstr ""
3944
 
3945
+ #: inc/admin/metaboxes/admin-metaboxes-form.php:777
3946
  msgid "Need help with your redirections? Read our guide."
3947
  msgstr ""
3948
 
3949
+ #: inc/admin/metaboxes/admin-metaboxes-form.php:795
3950
  msgid "Exclude this post from Google News Sitemap?"
3951
  msgstr ""
3952
 
3953
+ #: inc/admin/metaboxes/admin-metaboxes-form.php:829
3954
  msgid "Exclude this post from Video Sitemap?"
3955
  msgstr ""
3956
 
3957
+ #: inc/admin/metaboxes/admin-metaboxes-form.php:831
3958
  msgid "If your post is set to noindex, it will be automatically excluded from the sitemap."
3959
  msgstr ""
3960
 
3961
+ #: inc/admin/metaboxes/admin-metaboxes-form.php:849
3962
  msgid "Video "
3963
  msgstr ""
3964
 
3965
+ #: inc/admin/metaboxes/admin-metaboxes-form.php:854
3966
  msgid "Video URL (required)"
3967
  msgstr ""
3968
 
3969
+ #: inc/admin/metaboxes/admin-metaboxes-form.php:859
3970
  msgid "Enter your video URL"
3971
  msgstr ""
3972
 
3973
+ #: inc/admin/metaboxes/admin-metaboxes-form.php:860
3974
  msgid "Video URL"
3975
  msgstr ""
3976
 
3977
+ #: inc/admin/metaboxes/admin-metaboxes-form.php:872
3978
  msgid "NOT an external video (eg: video hosting on YouTube, Vimeo, Wistia...)? Check this if your video is hosting on this server."
3979
  msgstr ""
3980
 
3981
+ #: inc/admin/metaboxes/admin-metaboxes-form.php:877
3982
  msgid "Video Title (required)"
3983
  msgstr ""
3984
 
3985
+ #: inc/admin/metaboxes/admin-metaboxes-form.php:882
3986
  msgid "Enter your video title"
3987
  msgstr ""
3988
 
3989
+ #: inc/admin/metaboxes/admin-metaboxes-form.php:883
3990
  msgid "Video title"
3991
  msgstr ""
3992
 
3993
+ #: inc/admin/metaboxes/admin-metaboxes-form.php:885
3994
  msgid "Default: title tag, if not available, post title."
3995
  msgstr ""
3996
 
3997
+ #: inc/admin/metaboxes/admin-metaboxes-form.php:889
3998
  msgid "Video Description (required)"
3999
  msgstr ""
4000
 
4001
+ #: inc/admin/metaboxes/admin-metaboxes-form.php:894
4002
  msgid "Enter your video description"
4003
  msgstr ""
4004
 
4005
+ #: inc/admin/metaboxes/admin-metaboxes-form.php:895
4006
  msgid "Video description"
4007
  msgstr ""
4008
 
4009
+ #: inc/admin/metaboxes/admin-metaboxes-form.php:896
4010
  msgid "2048 characters max.; default: meta description. If not available, use the beginning of the post content."
4011
  msgstr ""
4012
 
4013
+ #: inc/admin/metaboxes/admin-metaboxes-form.php:900
4014
  msgid "Video Thumbnail (required)"
4015
  msgstr ""
4016
 
4017
+ #: inc/admin/metaboxes/admin-metaboxes-form.php:907
4018
  msgid "Select your video thumbnail"
4019
  msgstr ""
4020
 
4021
+ #: inc/admin/metaboxes/admin-metaboxes-form.php:914
4022
  msgid "Video Thumbnail"
4023
  msgstr ""
4024
 
4025
+ #: inc/admin/metaboxes/admin-metaboxes-form.php:917
4026
  msgid "Minimum size: 160x90px (1920x1080 max), JPG, PNG or GIF formats. Default: your post featured image."
4027
  msgstr ""
4028
 
4029
+ #: inc/admin/metaboxes/admin-metaboxes-form.php:922
4030
  msgid "Video Duration (recommended)"
4031
  msgstr ""
4032
 
4033
+ #: inc/admin/metaboxes/admin-metaboxes-form.php:927
4034
  msgid "Duration in seconds"
4035
  msgstr ""
4036
 
4037
+ #: inc/admin/metaboxes/admin-metaboxes-form.php:928
4038
  msgid "Video duration"
4039
  msgstr ""
4040
 
4041
+ #: inc/admin/metaboxes/admin-metaboxes-form.php:930
4042
  msgid "The duration of the video in seconds. Value must be between 0 and 28800 (8 hours)."
4043
  msgstr ""
4044
 
4045
+ #: inc/admin/metaboxes/admin-metaboxes-form.php:934
4046
  msgid "Video Rating"
4047
  msgstr ""
4048
 
4049
+ #: inc/admin/metaboxes/admin-metaboxes-form.php:939
4050
+ #: inc/admin/metaboxes/admin-metaboxes-form.php:940
4051
  msgid "Video rating"
4052
  msgstr ""
4053
 
4054
+ #: inc/admin/metaboxes/admin-metaboxes-form.php:942
4055
  msgid "Allowed values are float numbers in the range 0.0 to 5.0."
4056
  msgstr ""
4057
 
4058
+ #: inc/admin/metaboxes/admin-metaboxes-form.php:946
4059
+ #: inc/admin/metaboxes/admin-metaboxes-form.php:952
4060
  msgid "View count"
4061
  msgstr ""
4062
 
4063
+ #: inc/admin/metaboxes/admin-metaboxes-form.php:951
4064
  msgid "Number of views"
4065
  msgstr ""
4066
 
4067
+ #: inc/admin/metaboxes/admin-metaboxes-form.php:957
4068
+ #: inc/admin/metaboxes/admin-metaboxes-form.php:963
4069
  msgid "Video tags"
4070
  msgstr ""
4071
 
4072
+ #: inc/admin/metaboxes/admin-metaboxes-form.php:962
4073
  msgid "Enter your video tags"
4074
  msgstr ""
4075
 
4076
+ #: inc/admin/metaboxes/admin-metaboxes-form.php:965
4077
  msgid "32 tags max., separate tags with commas. Default: target keywords + post tags if available."
4078
  msgstr ""
4079
 
4080
+ #: inc/admin/metaboxes/admin-metaboxes-form.php:976
4081
  msgid "NOT family friendly?"
4082
  msgstr ""
4083
 
4084
+ #: inc/admin/metaboxes/admin-metaboxes-form.php:978
4085
  msgid "The video will be available only to users with SafeSearch turned off."
4086
  msgstr ""
4087
 
4088
+ #: inc/admin/metaboxes/admin-metaboxes-form.php:981
4089
  #: app/react/layout/Main/components/VideoSitemap/index.js:135
4090
  msgid "Remove video"
4091
  msgstr ""
4092
 
4093
+ #: inc/admin/metaboxes/admin-metaboxes-form.php:991
4094
  #: app/react/layout/Main/components/VideoSitemap/index.js:165
4095
  msgid "Add video"
4096
  msgstr ""
5579
  msgid "Manage cookies"
5580
  msgstr ""
5581
 
5582
+ #: inc/functions/options-google-analytics.php:500
5583
  #: inc/functions/options-matomo.php:183
5584
  msgid "Authors"
5585
  msgstr ""
5586
 
5587
+ #: inc/functions/options-google-analytics.php:519
5588
  #: inc/functions/options-matomo.php:196
5589
  msgid "Categories"
5590
  msgstr ""
5591
 
5592
+ #: inc/functions/options-google-analytics.php:544
5593
  #: inc/functions/options-matomo.php:215
5594
  msgid "Tags"
5595
  msgstr ""
5596
 
5597
+ #: inc/functions/options-google-analytics.php:556
5598
  #: inc/functions/options-matomo.php:223
5599
  msgid "Post types"
5600
  msgstr ""
5601
 
5602
+ #: inc/functions/options-google-analytics.php:568
5603
  #: inc/functions/options-matomo.php:231
5604
  msgid "Connected users"
5605
  msgstr ""
readme.txt CHANGED
@@ -6,7 +6,7 @@ Tags: SEO, schema, xml sitemap, redirection, meta title, open graph, content ana
6
  Requires at least: 4.7+
7
  Tested up to: 6.0
8
  Requires PHP: 7.2
9
- Stable tag: 5.9.0.2
10
  License: GPLv2 or later
11
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
12
 
@@ -363,6 +363,8 @@ You're theme is probably using a deprecated function to handle the title. <a hre
363
  12. Schema metabox
364
 
365
  == Changelog ==
 
 
366
  = 5.9.0.2 =
367
  * FIX Fatal error "seopress_amp_compatibility_wp" with older versions of SEOPress PRO (< 5.4 - December 2021)
368
  = 5.9.0.1 =
6
  Requires at least: 4.7+
7
  Tested up to: 6.0
8
  Requires PHP: 7.2
9
+ Stable tag: 5.9.0.3
10
  License: GPLv2 or later
11
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
12
 
363
  12. Schema metabox
364
 
365
  == Changelog ==
366
+ = 5.9.0.3 =
367
+ * FIX Regression with Analytics and Cookie bar
368
  = 5.9.0.2 =
369
  * FIX Fatal error "seopress_amp_compatibility_wp" with older versions of SEOPress PRO (< 5.4 - December 2021)
370
  = 5.9.0.1 =
seopress.php CHANGED
@@ -3,8 +3,8 @@
3
  Plugin Name: SEOPress
4
  Plugin URI: https://www.seopress.org/
5
  Description: One of the best SEO plugins for WordPress.
6
- Author: SEOPress
7
- Version: 5.9.0.2
8
  Author URI: https://www.seopress.org/
9
  License: GPLv2
10
  Text Domain: wp-seopress
@@ -70,7 +70,7 @@ register_deactivation_hook(__FILE__, 'seopress_deactivation');
70
  ///////////////////////////////////////////////////////////////////////////////////////////////////
71
  //Define
72
  ///////////////////////////////////////////////////////////////////////////////////////////////////
73
- define('SEOPRESS_VERSION', '5.9.0.2');
74
  define('SEOPRESS_AUTHOR', 'Benjamin Denis');
75
  define('SEOPRESS_PLUGIN_DIR_PATH', plugin_dir_path(__FILE__));
76
  define('SEOPRESS_PLUGIN_DIR_URL', plugin_dir_url(__FILE__));
3
  Plugin Name: SEOPress
4
  Plugin URI: https://www.seopress.org/
5
  Description: One of the best SEO plugins for WordPress.
6
+ Author: The SEO Guys at SEOPress
7
+ Version: 5.9.0.3
8
  Author URI: https://www.seopress.org/
9
  License: GPLv2
10
  Text Domain: wp-seopress
70
  ///////////////////////////////////////////////////////////////////////////////////////////////////
71
  //Define
72
  ///////////////////////////////////////////////////////////////////////////////////////////////////
73
+ define('SEOPRESS_VERSION', '5.9.0.3');
74
  define('SEOPRESS_AUTHOR', 'Benjamin Denis');
75
  define('SEOPRESS_PLUGIN_DIR_PATH', plugin_dir_path(__FILE__));
76
  define('SEOPRESS_PLUGIN_DIR_URL', plugin_dir_url(__FILE__));
vendor/composer/installed.php CHANGED
@@ -5,7 +5,7 @@
5
  'type' => 'wordpress-plugin',
6
  'install_path' => __DIR__ . '/../../',
7
  'aliases' => array(),
8
- 'reference' => '2aa065b89fb54474523eea270a73064941553053',
9
  'name' => 'wp-seopress/wp-seopress',
10
  'dev' => false,
11
  ),
@@ -202,7 +202,7 @@
202
  'type' => 'wordpress-plugin',
203
  'install_path' => __DIR__ . '/../../',
204
  'aliases' => array(),
205
- 'reference' => '2aa065b89fb54474523eea270a73064941553053',
206
  'dev_requirement' => false,
207
  ),
208
  ),
5
  'type' => 'wordpress-plugin',
6
  'install_path' => __DIR__ . '/../../',
7
  'aliases' => array(),
8
+ 'reference' => '486f62153f26205c3b850016f7f70d6ebe1a011c',
9
  'name' => 'wp-seopress/wp-seopress',
10
  'dev' => false,
11
  ),
202
  'type' => 'wordpress-plugin',
203
  'install_path' => __DIR__ . '/../../',
204
  'aliases' => array(),
205
+ 'reference' => '486f62153f26205c3b850016f7f70d6ebe1a011c',
206
  'dev_requirement' => false,
207
  ),
208
  ),