WordPress Social Sharing Plugin – Sassy Social Share - Version 3.2.21

Version Description

  • [Bugfix] Share counts were reduced significantly in some cases after last update
Download this release

Release Info

Developer Heateor
Plugin Icon 128x128 WordPress Social Sharing Plugin – Sassy Social Share
Version 3.2.21
Comparing to
See all releases

Code changes from version 3.2.20 to 3.2.21

public/class-sassy-social-share-public.php CHANGED
@@ -1689,7 +1689,7 @@ class Sassy_Social_Share_Public {
1689
  switch ( $provider ) {
1690
  case 'facebook':
1691
  if ( ! empty( $body -> engagement ) && isset( $body -> engagement -> share_count ) ) {
1692
- $share_count_transient['facebook'] = $body -> engagement -> share_count;
1693
  } else {
1694
  $share_count_transient['facebook'] = 0;
1695
  }
1689
  switch ( $provider ) {
1690
  case 'facebook':
1691
  if ( ! empty( $body -> engagement ) && isset( $body -> engagement -> share_count ) ) {
1692
+ $share_count_transient['facebook'] = ( isset( $body -> engagement -> reaction_count ) ? $body -> engagement -> reaction_count : 0 ) + ( isset( $body -> engagement -> comment_count ) ? $body -> engagement -> comment_count : 0 ) + $body -> engagement -> share_count;
1693
  } else {
1694
  $share_count_transient['facebook'] = 0;
1695
  }
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, whatsapp share, line share
5
  Requires at least: 2.5.0
6
  Tested up to: 5.1.1
7
- Stable tag: 3.2.20
8
  License: GPLv2 or later
9
 
10
  Slickest, Simplest and Optimized Share buttons. Facebook, Twitter, Reddit, Pinterest, WhatsApp and over 100 more.
@@ -123,6 +123,9 @@ Yes, we can help you with it. Just drop an email at support[at]heateor[dot]com
123
  4. **Universal Sharing Popup**: Universal Sharing popup having all the supported sharing and bookmarking services
124
 
125
  == Changelog ==
 
 
 
126
  = 3.2.20 =
127
  * [Bugfix] Facebook shares were not working because of the expiration of Facebook API v2.8
128
  * [Bugfix] Fixed a PHP error occurring when floating share bar enabled via shortcode
@@ -741,4 +744,7 @@ Yes, we can help you with it. Just drop an email at support[at]heateor[dot]com
741
  = 3.2.20 =
742
  * [Bugfix] Facebook shares were not working because of the expiration of Facebook API v2.8
743
  * [Bugfix] Fixed a PHP error occurring when floating share bar enabled via shortcode
744
- * [Improvement] Share counts are loading faster
 
 
 
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, whatsapp share, line share
5
  Requires at least: 2.5.0
6
  Tested up to: 5.1.1
7
+ Stable tag: 3.2.21
8
  License: GPLv2 or later
9
 
10
  Slickest, Simplest and Optimized Share buttons. Facebook, Twitter, Reddit, Pinterest, WhatsApp and over 100 more.
123
  4. **Universal Sharing Popup**: Universal Sharing popup having all the supported sharing and bookmarking services
124
 
125
  == Changelog ==
126
+ = 3.2.21 =
127
+ * [Bugfix] Share counts were reduced significantly in some cases after last update
128
+
129
  = 3.2.20 =
130
  * [Bugfix] Facebook shares were not working because of the expiration of Facebook API v2.8
131
  * [Bugfix] Fixed a PHP error occurring when floating share bar enabled via shortcode
744
  = 3.2.20 =
745
  * [Bugfix] Facebook shares were not working because of the expiration of Facebook API v2.8
746
  * [Bugfix] Fixed a PHP error occurring when floating share bar enabled via shortcode
747
+ * [Improvement] Share counts are loading faster
748
+
749
+ = 3.2.21 =
750
+ * [Bugfix] Share counts were reduced significantly in some cases after last 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, Reddit, Pinterest, WhatsApp and over 100 more.
10
- * Version: 3.2.20
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.20' );
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, Reddit, Pinterest, WhatsApp and over 100 more.
10
+ * Version: 3.2.21
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.21' );
25
  define( 'HEATEOR_SSS_PLUGIN_DIR', plugin_dir_path(__FILE__) );
26
 
27
  // plugin core class object