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

Version Description

  • [Bugfix] Fixed PHP notice being generated with social commenting enabled
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.21
Comparing to
See all releases

Code changes from version 7.12.20 to 7.12.21

Files changed (2) hide show
  1. readme.txt +8 -2
  2. super_socializer.php +3 -4
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.20
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.20 =
214
  * [Bugfix] Social shares for the homepage were reset to 0 after last update in some cases
215
  * [Bugfix] Minor bugfixes
@@ -1832,4 +1835,7 @@ Yes, we can help you with it. Just drop an email at support[ at ]heateor[ dot ]c
1832
 
1833
  = 7.12.20 =
1834
  * [Bugfix] Social shares for the homepage were reset to 0 after last update in some cases
1835
- * [Bugfix] Minor bugfixes
 
 
 
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.21
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.21 =
214
+ * [Bugfix] Fixed PHP notice being generated with social commenting enabled
215
+
216
  = 7.12.20 =
217
  * [Bugfix] Social shares for the homepage were reset to 0 after last update in some cases
218
  * [Bugfix] Minor bugfixes
1835
 
1836
  = 7.12.20 =
1837
  * [Bugfix] Social shares for the homepage were reset to 0 after last update in some cases
1838
+ * [Bugfix] Minor bugfixes
1839
+
1840
+ = 7.12.21 =
1841
+ * [Bugfix] Fixed PHP notice being generated with social commenting enabled
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.20
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.20');
15
 
16
  require 'helper.php';
17
 
@@ -981,7 +981,7 @@ function the_champ_frontend_scripts(){
981
  $commentUrl = html_entity_decode(esc_url(the_champ_get_http().$_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"]));
982
  }
983
 
984
- $commentingTabsOrder = ($theChampFacebookOptions['commenting_order'] != '' ? $theChampFacebookOptions['commenting_order'] : 'wordpress,facebook,googleplus,disqus');
985
  $commentingTabsOrder = explode(',', str_replace('facebook', 'fb', $commentingTabsOrder));
986
  $enabledTabs = array();
987
  foreach($commentingTabsOrder as $tab){
@@ -997,7 +997,6 @@ function the_champ_frontend_scripts(){
997
  $commentsCount = wp_count_comments($post->ID);
998
  $labels['wordpress'] .= ' ('. ($commentsCount && isset($commentsCount -> approved) ? $commentsCount -> approved : '') .')';
999
  $labels['fb'] = $theChampFacebookOptions['label_facebook_comments'] != '' ? htmlspecialchars($theChampFacebookOptions['label_facebook_comments'], ENT_QUOTES) : 'Facebook Comments';
1000
- $labels['googleplus'] = $theChampFacebookOptions['label_googleplus_comments'] != '' ? htmlspecialchars($theChampFacebookOptions['label_googleplus_comments'], ENT_QUOTES) : 'GooglePlus Comments';
1001
  $labels['disqus'] = $theChampFacebookOptions['label_disqus_comments'] != '' ? htmlspecialchars($theChampFacebookOptions['label_disqus_comments'], ENT_QUOTES) : 'Disqus Comments';
1002
  global $heateor_fcm_options;
1003
  if(defined('HEATEOR_FB_COM_MOD_VERSION') && version_compare('1.2.4', HEATEOR_FB_COM_MOD_VERSION) < 0 && isset($heateor_fcm_options['gdpr_enable'])){
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.21
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.21');
15
 
16
  require 'helper.php';
17
 
981
  $commentUrl = html_entity_decode(esc_url(the_champ_get_http().$_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"]));
982
  }
983
 
984
+ $commentingTabsOrder = ($theChampFacebookOptions['commenting_order'] != '' ? $theChampFacebookOptions['commenting_order'] : 'wordpress,facebook,disqus');
985
  $commentingTabsOrder = explode(',', str_replace('facebook', 'fb', $commentingTabsOrder));
986
  $enabledTabs = array();
987
  foreach($commentingTabsOrder as $tab){
997
  $commentsCount = wp_count_comments($post->ID);
998
  $labels['wordpress'] .= ' ('. ($commentsCount && isset($commentsCount -> approved) ? $commentsCount -> approved : '') .')';
999
  $labels['fb'] = $theChampFacebookOptions['label_facebook_comments'] != '' ? htmlspecialchars($theChampFacebookOptions['label_facebook_comments'], ENT_QUOTES) : 'Facebook Comments';
 
1000
  $labels['disqus'] = $theChampFacebookOptions['label_disqus_comments'] != '' ? htmlspecialchars($theChampFacebookOptions['label_disqus_comments'], ENT_QUOTES) : 'Disqus Comments';
1001
  global $heateor_fcm_options;
1002
  if(defined('HEATEOR_FB_COM_MOD_VERSION') && version_compare('1.2.4', HEATEOR_FB_COM_MOD_VERSION) < 0 && isset($heateor_fcm_options['gdpr_enable'])){