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

Version Description

  • Relaunched with a whole set of NEW FEATURES and Improvement. Please upgrade immediately and provide your feedback. highly recommended. Aplogies in advance, if anything breaks!

=

Download this release

Release Info

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

Code changes from version 2.0.0 to 2.0.1

Files changed (2) hide show
  1. readme.txt +5 -2
  2. simple-social-buttons.php +4 -3
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://wpbrigade.com/
4
  Tags: Social share, Social buttons, Whatsapp, Viber, LinkedIn, facebook, google, twitter, pinterest, plus one
5
  Requires at least: 4.0
6
  Tested up to: 4.8
7
- Stable tag: 2.0.0
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -134,12 +134,15 @@ Yes, you can use `<?php get_ssb(); ?>` in your template file (see installation s
134
 
135
  == Upgrade Notice ==
136
 
137
- = 2.0.0 =
138
  * Relaunched with a whole set of NEW FEATURES and Improvement. Please upgrade immediately and provide your feedback. highly recommended. Aplogies in advance, if anything breaks!
139
 
140
 
141
  == Changelog ==
142
 
 
 
 
143
  = 2.0.0 - 2017-10-31 =
144
  * New Feature: Refactored i.e rewritten the whole plugin with lots of new features.
145
  * New Feature: Inline social share buttons with animations and custom colors in Pro vesrion.
4
  Tags: Social share, Social buttons, Whatsapp, Viber, LinkedIn, facebook, google, twitter, pinterest, plus one
5
  Requires at least: 4.0
6
  Tested up to: 4.8
7
+ Stable tag: 2.0.1
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
10
 
134
 
135
  == Upgrade Notice ==
136
 
137
+ = 2.0.1 =
138
  * Relaunched with a whole set of NEW FEATURES and Improvement. Please upgrade immediately and provide your feedback. highly recommended. Aplogies in advance, if anything breaks!
139
 
140
 
141
  == Changelog ==
142
 
143
+ = 2.0.1 - 2017-11-01 =
144
+ * Bug Fix: Compatibility issues with older PHP versions.
145
+
146
  = 2.0.0 - 2017-10-31 =
147
  * New Feature: Refactored i.e rewritten the whole plugin with lots of new features.
148
  * New Feature: Inline social share buttons with animations and custom colors in Pro vesrion.
simple-social-buttons.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Simple Social Buttons
4
  * Plugin URI: http://www.WPBrigade.com/wordpress/plugins/simple-social-buttons/
5
  * Description: Simple Social Buttons adds an advanced set of social media sharing buttons to your WordPress sites, such as: Google +1, Facebook, WhatsApp, Viber, Twitter, Reddit, LinkedIn and Pinterest. This makes it the most <code>Flexible Social Sharing Plugin ever for Everyone.</code>
6
- * Version: 2.0.0
7
  * Author: WPBrigade
8
  * Author URI: http://www.WPBrigade.com/
9
  * Text Domain: simple-social-buttons
@@ -30,7 +30,7 @@
30
 
31
  class SimpleSocialButtonsPR {
32
  public $pluginName = 'Simple Social Buttons';
33
- public $pluginVersion = '2.0.0-beta';
34
  public $pluginPrefix = 'ssb_pr_';
35
  public $hideCustomMetaKey = '_ssb_hide';
36
 
@@ -339,7 +339,8 @@ class SimpleSocialButtonsPR {
339
 
340
  function _get_settings( $section, $value, $default = false ) {
341
  $section = $section . '_option';
342
- return isset( $this->$section[ $value ] ) && ! empty( $this->$section[ $value ] ) ? $this->$section[ $value ] : $default;
 
343
  }
344
 
345
  /**
3
  * Plugin Name: Simple Social Buttons
4
  * Plugin URI: http://www.WPBrigade.com/wordpress/plugins/simple-social-buttons/
5
  * Description: Simple Social Buttons adds an advanced set of social media sharing buttons to your WordPress sites, such as: Google +1, Facebook, WhatsApp, Viber, Twitter, Reddit, LinkedIn and Pinterest. This makes it the most <code>Flexible Social Sharing Plugin ever for Everyone.</code>
6
+ * Version: 2.0.1
7
  * Author: WPBrigade
8
  * Author URI: http://www.WPBrigade.com/
9
  * Text Domain: simple-social-buttons
30
 
31
  class SimpleSocialButtonsPR {
32
  public $pluginName = 'Simple Social Buttons';
33
+ public $pluginVersion = '2.0.1';
34
  public $pluginPrefix = 'ssb_pr_';
35
  public $hideCustomMetaKey = '_ssb_hide';
36
 
339
 
340
  function _get_settings( $section, $value, $default = false ) {
341
  $section = $section . '_option';
342
+ $_arr = $this->$section;
343
+ return isset( $_arr[ $value ] ) && ! empty( $_arr[ $value ] ) ? $_arr[ $value ] : $default;
344
  }
345
 
346
  /**