Version Description
- [Bugfix] Social Share counts were not working properly after previous update
Download this release
Release Info
Developer | Heateor |
Plugin | WordPress Social Sharing Plugin – Sassy Social Share |
Version | 3.2.3 |
Comparing to | |
See all releases |
Code changes from version 3.2.2 to 3.2.3
- public/js/sassy-social-share-public.js +2 -2
- readme.txt +8 -2
- sassy-social-share.php +2 -2
public/js/sassy-social-share-public.js
CHANGED
@@ -709,7 +709,7 @@ function heateorSssFBShareJSONCall(targetUrl, loopCounter, targetUrlsLength, dat
|
|
709 |
var facebookBackground = jQuery(this).find('i.heateorSssFacebookBackground');
|
710 |
var sharingCount = parseInt(data.share.share_count);
|
711 |
|
712 |
-
if(jQuery(targetElement).attr('sss_st_count') !==
|
713 |
sharingCount += parseInt(jQuery(targetElement).attr('sss_st_count'));
|
714 |
}
|
715 |
if(sharingCount > 0){
|
@@ -752,7 +752,7 @@ function heateorSssFBShareJSONCall(targetUrl, loopCounter, targetUrlsLength, dat
|
|
752 |
var shareCountString = typeof jQuery(facebookCountElementBg).attr('heateor-sss-fb-shares') != 'undefined' ? jQuery(facebookCountElementBg).attr('heateor-sss-fb-shares').trim() : '';
|
753 |
if(shareCountString != ''){
|
754 |
var shareCount = parseInt(heateorSssCalculateActualCount(shareCountString));
|
755 |
-
if(jQuery(facebookCountElement).attr('sss_st_count') !==
|
756 |
var startingCount = parseInt(jQuery(facebookCountElement).attr('sss_st_count').trim());
|
757 |
shareCount = Math.abs(shareCount - startingCount);
|
758 |
}
|
709 |
var facebookBackground = jQuery(this).find('i.heateorSssFacebookBackground');
|
710 |
var sharingCount = parseInt(data.share.share_count);
|
711 |
|
712 |
+
if(jQuery(targetElement).attr('sss_st_count') !== undefined){
|
713 |
sharingCount += parseInt(jQuery(targetElement).attr('sss_st_count'));
|
714 |
}
|
715 |
if(sharingCount > 0){
|
752 |
var shareCountString = typeof jQuery(facebookCountElementBg).attr('heateor-sss-fb-shares') != 'undefined' ? jQuery(facebookCountElementBg).attr('heateor-sss-fb-shares').trim() : '';
|
753 |
if(shareCountString != ''){
|
754 |
var shareCount = parseInt(heateorSssCalculateActualCount(shareCountString));
|
755 |
+
if(jQuery(facebookCountElement).attr('sss_st_count') !== undefined){
|
756 |
var startingCount = parseInt(jQuery(facebookCountElement).attr('sss_st_count').trim());
|
757 |
shareCount = Math.abs(shareCount - startingCount);
|
758 |
}
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ 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.6
|
7 |
-
Stable tag: 3.2.
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
Slickest, Simplest and Optimized Share buttons. Facebook, Twitter, Google+, Pinterest, WhatsApp and over 100 more.
|
@@ -120,6 +120,9 @@ Yes, we can help you with it. Just drop an email at support[at]heateor[dot]com
|
|
120 |
4. **Universal Sharing Popup**: Universal Sharing popup having all the supported sharing and bookmarking services
|
121 |
|
122 |
== Changelog ==
|
|
|
|
|
|
|
123 |
= 3.2.2 =
|
124 |
* [Bugfix] Facebook shares were not correct in a few cases with <a href="https://www.heateor.com/recover-social-share-counts/" target="_blank">Recover Social Share Counts</a> add-on active
|
125 |
|
@@ -538,4 +541,7 @@ Yes, we can help you with it. Just drop an email at support[at]heateor[dot]com
|
|
538 |
* [Bugfix] GentleReader logo was not appearing when enabled in social share bar
|
539 |
|
540 |
= 3.2.2 =
|
541 |
-
* [Bugfix] Facebook shares were not correct in a few cases with <a href="https://www.heateor.com/recover-social-share-counts/" target="_blank">Recover Social Share Counts</a> add-on active
|
|
|
|
|
|
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.6
|
7 |
+
Stable tag: 3.2.3
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
Slickest, Simplest and Optimized Share buttons. Facebook, Twitter, Google+, Pinterest, WhatsApp and over 100 more.
|
120 |
4. **Universal Sharing Popup**: Universal Sharing popup having all the supported sharing and bookmarking services
|
121 |
|
122 |
== Changelog ==
|
123 |
+
= 3.2.3 =
|
124 |
+
* [Bugfix] Social Share counts were not working properly after previous update
|
125 |
+
|
126 |
= 3.2.2 =
|
127 |
* [Bugfix] Facebook shares were not correct in a few cases with <a href="https://www.heateor.com/recover-social-share-counts/" target="_blank">Recover Social Share Counts</a> add-on active
|
128 |
|
541 |
* [Bugfix] GentleReader logo was not appearing when enabled in social share bar
|
542 |
|
543 |
= 3.2.2 =
|
544 |
+
* [Bugfix] Facebook shares were not correct in a few cases with <a href="https://www.heateor.com/recover-social-share-counts/" target="_blank">Recover Social Share Counts</a> add-on active
|
545 |
+
|
546 |
+
= 3.2.3 =
|
547 |
+
* [Bugfix] Social Share counts were not working properly after previous update
|
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.2.
|
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.2.
|
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.2.3
|
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.2.3' );
|
25 |
define( 'HEATEOR_SSS_PLUGIN_DIR', plugin_dir_path(__FILE__) );
|
26 |
|
27 |
// plugin core class object
|