Simple Social Media Share Buttons – Social Sharing for Everyone - Version 3.1.1

Version Description

  • Please upgrade immediately. Many enhancements, new features and bug fixes.

=

Download this release

Release Info

Developer hiddenpearls
Plugin Icon 128x128 Simple Social Media Share Buttons – Social Sharing for Everyone
Version 3.1.1
Comparing to
See all releases

Code changes from version 3.1.0 to 3.1.1

Files changed (2) hide show
  1. readme.txt +5 -2
  2. simple-social-buttons.php +4 -4
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://simplesocialbuttons.com/
4
  Tags: Social share, Social buttons, Whatsapp, Viber, LinkedIn, facebook, twitter, pinterest, plus one
5
  Requires at least: 4.0
6
  Tested up to: 5.3.2
7
- Stable tag: 3.1.0
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -147,11 +147,14 @@ like_button_size = small(default), large
147
 
148
  == Upgrade Notice ==
149
 
150
- = 3.1.0 =
151
  * Please upgrade immediately. Many enhancements, new features and bug fixes.
152
 
153
  == Changelog ==
154
 
 
 
 
155
  = 3.1.0 - 2020-02-06 =
156
  * New Feature: OG Tags setting.
157
  * Enhancement: Multi site compatibility.
4
  Tags: Social share, Social buttons, Whatsapp, Viber, LinkedIn, facebook, twitter, pinterest, plus one
5
  Requires at least: 4.0
6
  Tested up to: 5.3.2
7
+ Stable tag: 3.1.1
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
10
 
147
 
148
  == Upgrade Notice ==
149
 
150
+ = 3.1.1 =
151
  * Please upgrade immediately. Many enhancements, new features and bug fixes.
152
 
153
  == Changelog ==
154
 
155
+ = 3.1.1 - 2020-02-27 =
156
+ * Bug fix: Illegal string offset ‘ssb_og_tags’ fix
157
+
158
  = 3.1.0 - 2020-02-06 =
159
  * New Feature: OG Tags setting.
160
  * Enhancement: Multi site compatibility.
simple-social-buttons.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Simple Social Buttons
4
  * Plugin URI: https://simplesocialbuttons.com/
5
  * Description: Simple Social Buttons adds an advanced set of social media sharing buttons to your WordPress sites, such as: Facebook, Twitter, WhatsApp, Viber, Reddit, LinkedIn and Pinterest. This makes it the most <code>Flexible Social Sharing Plugin ever for Everyone.</code>
6
- * Version: 3.1.0
7
  * Author: WPBrigade
8
  * Author URI: https://www.WPBrigade.com/
9
  * Text Domain: simple-social-buttons
@@ -44,7 +44,7 @@ class SimpleSocialButtonsPR {
44
  * @isnce
45
  * @var string
46
  */
47
- public $pluginVersion = '3.1.0';
48
 
49
  /**
50
  * Plugin Prefix
@@ -1462,8 +1462,8 @@ class SimpleSocialButtonsPR {
1462
  * @return string
1463
  */
1464
  public function add_meta_tags() {
1465
-
1466
- if ( '1' !== $this->extra_option['ssb_og_tags'] ) {
1467
  return;
1468
  }
1469
 
3
  * Plugin Name: Simple Social Buttons
4
  * Plugin URI: https://simplesocialbuttons.com/
5
  * Description: Simple Social Buttons adds an advanced set of social media sharing buttons to your WordPress sites, such as: Facebook, Twitter, WhatsApp, Viber, Reddit, LinkedIn and Pinterest. This makes it the most <code>Flexible Social Sharing Plugin ever for Everyone.</code>
6
+ * Version: 3.1.1
7
  * Author: WPBrigade
8
  * Author URI: https://www.WPBrigade.com/
9
  * Text Domain: simple-social-buttons
44
  * @isnce
45
  * @var string
46
  */
47
+ public $pluginVersion = '3.1.1';
48
 
49
  /**
50
  * Plugin Prefix
1462
  * @return string
1463
  */
1464
  public function add_meta_tags() {
1465
+ // isset added if some one updagrate 10 3.1.0 he have not saving this setting save in database.
1466
+ if ( isset( $this->extra_option['ssb_og_tags'] ) && '1' !== $this->extra_option['ssb_og_tags'] ) {
1467
  return;
1468
  }
1469