WordPress Social Share, Social Login and Social Comments Plugin – Super Socializer - Version 7.12.23

Version Description

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

Release Info

Developer the_champ
Plugin Icon 128x128 WordPress Social Share, Social Login and Social Comments Plugin – Super Socializer
Version 7.12.23
Comparing to
See all releases

Code changes from version 7.12.22 to 7.12.23

Files changed (3) hide show
  1. inc/social_sharing.php +1 -1
  2. readme.txt +8 -2
  3. super_socializer.php +2 -2
inc/social_sharing.php CHANGED
@@ -1037,7 +1037,7 @@ function the_champ_sharing_count(){
1037
  switch($provider){
1038
  case 'facebook':
1039
  if(!empty($body->engagement) && isset($body->engagement->share_count)){
1040
- $shareCountTransient['facebook'] = $body->engagement->share_count;
1041
  }else{
1042
  $shareCountTransient['facebook'] = 0;
1043
  }
1037
  switch($provider){
1038
  case 'facebook':
1039
  if(!empty($body->engagement) && isset($body->engagement->share_count)){
1040
+ $shareCountTransient['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;
1041
  }else{
1042
  $shareCountTransient['facebook'] = 0;
1043
  }
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.heateor.com/donate?action=Super+Socializer
4
  Tags: social login, social share, social commenting, social comments, social plugin, profile data, social analytics, online identity, social profile storage, single sign-on, social media follow, facebook login, Twitch login
5
  Requires at least: 2.5.0
6
  Tested up to: 5.1.1
7
- Stable tag: 7.12.22
8
  License: GPLv2 or later
9
 
10
  The unique Social Plugin to let you integrate Social Login, Social Share, Social Comments and Social Media follow at your website
@@ -210,6 +210,9 @@ Yes, we can help you with it. Just drop an email at support[ at ]heateor[ dot ]c
210
  8. **Social Commenting**: Disqus Commenting selected
211
 
212
  == Changelog ==
 
 
 
213
  = 7.12.22 =
214
  * [Bugfix] Facebook shares were not working because of the expiration of Facebook API v2.8
215
  * [Bugfix] Fintel share count was not working
@@ -1848,4 +1851,7 @@ Yes, we can help you with it. Just drop an email at support[ at ]heateor[ dot ]c
1848
  = 7.12.22 =
1849
  * [Bugfix] Facebook shares were not working because of the expiration of Facebook API v2.8
1850
  * [Bugfix] Fintel share count was not working
1851
- * [Improvement] Share counts are loading faster
 
 
 
4
  Tags: social login, social share, social commenting, social comments, social plugin, profile data, social analytics, online identity, social profile storage, single sign-on, social media follow, facebook login, Twitch login
5
  Requires at least: 2.5.0
6
  Tested up to: 5.1.1
7
+ Stable tag: 7.12.23
8
  License: GPLv2 or later
9
 
10
  The unique Social Plugin to let you integrate Social Login, Social Share, Social Comments and Social Media follow at your website
210
  8. **Social Commenting**: Disqus Commenting selected
211
 
212
  == Changelog ==
213
+ = 7.12.23 =
214
+ * [Bugfix] Share counts were reduced significantly in some cases after last update
215
+
216
  = 7.12.22 =
217
  * [Bugfix] Facebook shares were not working because of the expiration of Facebook API v2.8
218
  * [Bugfix] Fintel share count was not working
1851
  = 7.12.22 =
1852
  * [Bugfix] Facebook shares were not working because of the expiration of Facebook API v2.8
1853
  * [Bugfix] Fintel share count was not working
1854
+ * [Improvement] Share counts are loading faster
1855
+
1856
+ = 7.12.23 =
1857
+ * [Bugfix] Share counts were reduced significantly in some cases after last update
super_socializer.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Super Socializer
4
  Plugin URI: https://super-socializer-wordpress.heateor.com
5
  Description: A complete 360 degree solution to provide all the social features like Social Login, Social Commenting, Social Sharing, Social Media follow and more
6
- Version: 7.12.22
7
  Author: Team Heateor
8
  Author URI: https://www.heateor.com
9
  Text Domain: super-socializer
@@ -11,7 +11,7 @@ Domain Path: /languages
11
  License: GPL2+
12
  */
13
  defined('ABSPATH') or die("Cheating........Uh!!");
14
- define('THE_CHAMP_SS_VERSION', '7.12.22');
15
 
16
  require 'helper.php';
17
 
3
  Plugin Name: Super Socializer
4
  Plugin URI: https://super-socializer-wordpress.heateor.com
5
  Description: A complete 360 degree solution to provide all the social features like Social Login, Social Commenting, Social Sharing, Social Media follow and more
6
+ Version: 7.12.23
7
  Author: Team Heateor
8
  Author URI: https://www.heateor.com
9
  Text Domain: super-socializer
11
  License: GPL2+
12
  */
13
  defined('ABSPATH') or die("Cheating........Uh!!");
14
+ define('THE_CHAMP_SS_VERSION', '7.12.23');
15
 
16
  require 'helper.php';
17