Version Description
- [Bugfix] "create_function() is deprecated" error was being generated with PHP version 7.2
Download this release
Release Info
Developer | Heateor |
Plugin | WordPress Social Sharing Plugin – Sassy Social Share |
Version | 3.1.6 |
Comparing to | |
See all releases |
Code changes from version 3.1.5 to 3.1.6
- includes/class-sassy-social-share.php +2 -2
- readme.txt +9 -3
- sassy-social-share.php +2 -2
includes/class-sassy-social-share.php
CHANGED
@@ -216,9 +216,9 @@ class Sassy_Social_Share {
|
|
216 |
private function define_widgets() {
|
217 |
|
218 |
// standard widget
|
219 |
-
add_action( 'widgets_init',
|
220 |
// floating widget
|
221 |
-
add_action( 'widgets_init',
|
222 |
|
223 |
}
|
224 |
|
216 |
private function define_widgets() {
|
217 |
|
218 |
// standard widget
|
219 |
+
add_action( 'widgets_init', function() { return register_widget( "Sassy_Social_Share_Standard_Widget" ); } );
|
220 |
// floating widget
|
221 |
+
add_action( 'widgets_init', function() { return register_widget( "Sassy_Social_Share_Floating_Widget" ); } );
|
222 |
|
223 |
}
|
224 |
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: Heateor
|
|
3 |
Donate link: https://www.heateor.com/donate/?action=Sassy+Social+Share
|
4 |
Tags: social share, social sharing, social media share, share facebook, facebook social share, wordpress social share, share buttons, social share buttons, facebook like, twitter tweet, google +1, google plus share
|
5 |
Requires at least: 2.5.0
|
6 |
-
Tested up to: 4.9.
|
7 |
-
Stable tag: 3.1.
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
Slickest, Simplest and Optimized Share buttons. Facebook, Twitter, Google+, Pinterest, WhatsApp and over 100 more.
|
@@ -117,6 +117,9 @@ Yes, we can help you with it. Just drop an email at support[at]heateor[dot]com
|
|
117 |
4. **Universal Sharing Popup**: Universal Sharing popup having all the supported sharing and bookmarking services
|
118 |
|
119 |
== Changelog ==
|
|
|
|
|
|
|
120 |
= 3.1.5 =
|
121 |
* [Bugfix] Pinterest save button was misaligned
|
122 |
* [Bugfix] Viber logo was not appearing in Viber share icon, in a few cases
|
@@ -459,4 +462,7 @@ Yes, we can help you with it. Just drop an email at support[at]heateor[dot]com
|
|
459 |
* [Bugfix] Pinterest save button was misaligned
|
460 |
* [Bugfix] Viber logo was not appearing in Viber share icon, in a few cases
|
461 |
* [Bugfix] Horizontal sticky share bar was truncated on the left when enabling "Auto-adjust according to screen width" option, in a few cases
|
462 |
-
* [Improvement] Performance improvement
|
|
|
|
|
|
3 |
Donate link: https://www.heateor.com/donate/?action=Sassy+Social+Share
|
4 |
Tags: social share, social sharing, social media share, share facebook, facebook social share, wordpress social share, share buttons, social share buttons, facebook like, twitter tweet, google +1, google plus share
|
5 |
Requires at least: 2.5.0
|
6 |
+
Tested up to: 4.9.2
|
7 |
+
Stable tag: 3.1.6
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
Slickest, Simplest and Optimized Share buttons. Facebook, Twitter, Google+, Pinterest, WhatsApp and over 100 more.
|
117 |
4. **Universal Sharing Popup**: Universal Sharing popup having all the supported sharing and bookmarking services
|
118 |
|
119 |
== Changelog ==
|
120 |
+
= 3.1.6 =
|
121 |
+
* [Bugfix] "create_function() is deprecated" error was being generated with PHP version 7.2
|
122 |
+
|
123 |
= 3.1.5 =
|
124 |
* [Bugfix] Pinterest save button was misaligned
|
125 |
* [Bugfix] Viber logo was not appearing in Viber share icon, in a few cases
|
462 |
* [Bugfix] Pinterest save button was misaligned
|
463 |
* [Bugfix] Viber logo was not appearing in Viber share icon, in a few cases
|
464 |
* [Bugfix] Horizontal sticky share bar was truncated on the left when enabling "Auto-adjust according to screen width" option, in a few cases
|
465 |
+
* [Improvement] Performance improvement
|
466 |
+
|
467 |
+
= 3.1.6 =
|
468 |
+
* [Bugfix] "create_function() is deprecated" error was being generated with PHP version 7.2
|
sassy-social-share.php
CHANGED
@@ -7,7 +7,7 @@
|
|
7 |
* Plugin Name: Sassy Social Share
|
8 |
* Plugin URI: https://www.heateor.com
|
9 |
* Description: Slickest, Simplest and Optimized Share buttons. Facebook, Twitter, Google+, Pinterest, WhatsApp and over 100 more.
|
10 |
-
* Version: 3.1.
|
11 |
* Author: Team Heateor
|
12 |
* Author URI: https://www.heateor.com
|
13 |
* Text Domain: sassy-social-share
|
@@ -21,7 +21,7 @@ if ( ! defined( 'WPINC' ) ) {
|
|
21 |
die;
|
22 |
}
|
23 |
|
24 |
-
define( 'HEATEOR_SSS_VERSION', '3.1.
|
25 |
define( 'HEATEOR_SSS_PLUGIN_DIR', plugin_dir_path(__FILE__) );
|
26 |
|
27 |
// plugin core class object
|
7 |
* Plugin Name: Sassy Social Share
|
8 |
* Plugin URI: https://www.heateor.com
|
9 |
* Description: Slickest, Simplest and Optimized Share buttons. Facebook, Twitter, Google+, Pinterest, WhatsApp and over 100 more.
|
10 |
+
* Version: 3.1.6
|
11 |
* Author: Team Heateor
|
12 |
* Author URI: https://www.heateor.com
|
13 |
* Text Domain: sassy-social-share
|
21 |
die;
|
22 |
}
|
23 |
|
24 |
+
define( 'HEATEOR_SSS_VERSION', '3.1.6' );
|
25 |
define( 'HEATEOR_SSS_PLUGIN_DIR', plugin_dir_path(__FILE__) );
|
26 |
|
27 |
// plugin core class object
|