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

Version Description

  • [Bugfix] Sharing icons disappeared from some pages after updating plugin to previous version
Download this release

Release Info

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

Code changes from version 7.5.2 to 7.5.3

Files changed (3) hide show
  1. inc/social_sharing.php +3 -1
  2. readme.txt +8 -2
  3. super_socializer.php +2 -2
inc/social_sharing.php CHANGED
@@ -703,7 +703,9 @@ if(isset($theChampSharingOptions['woocom_thankyou']) || isset($theChampCounterOp
703
  * Remove render sharing action from Excerpts, as it gets nasty due to strip_tags()
704
  */
705
  function the_champ_remove_render_sharing($content){
706
- remove_action('the_content', 'the_champ_render_sharing');
 
 
707
  return $content;
708
  }
709
  add_filter('get_the_excerpt', 'the_champ_remove_render_sharing', 9);
703
  * Remove render sharing action from Excerpts, as it gets nasty due to strip_tags()
704
  */
705
  function the_champ_remove_render_sharing($content){
706
+ if(is_home()){
707
+ remove_action('the_content', 'the_champ_render_sharing');
708
+ }
709
  return $content;
710
  }
711
  add_filter('get_the_excerpt', 'the_champ_remove_render_sharing', 9);
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.heateor.com/donate?action=Super+Socializer
4
  Tags: the champ, champ, social login, social sharing, social commenting, social comments, social plugin, buddypress, bbpress, social share, comments, share post, user profile data, social analytics, online identity, social profile storage, id provider, single sign-on, social media tools, free social login, post to social networks, social authentication, social app, connect, capture social data, social sign-in, signin, sign up, signup, social connect, facebook login, twitter login, google login, google+ login, linkedin login, yahoo, vkontakte, instagram, reddit, digg, stumbleupon, delicious, float it, tumblr, social network
5
  Requires at least: 2.5.0
6
  Tested up to: 4.4.2
7
- Stable tag: 7.5.2
8
  License: GPLv2 or later
9
 
10
  The unique Social Plugin to let you integrate Social Login, Social Share and Social Comments at your website
@@ -204,6 +204,9 @@ Yes, we can help you with it. Just drop an email at support@heateor.com
204
  8. **Social Commenting**: Disqus Commenting selected
205
 
206
  == Changelog ==
 
 
 
207
  = 7.5.2 =
208
  * [Bugfix] Sharing title and share counts were appearing in post excerpts at homepage
209
  * [Bugfix] Single and double quotes in post title were appearing encoded when sharing on Twitter
@@ -842,4 +845,7 @@ Yes, we can help you with it. Just drop an email at support@heateor.com
842
  * [Improvement] Improved Delecious icon
843
  * [Improvement] Updated Facebook SDK to version 2.5
844
  * [Improvement] Link to set password is being sent to new users, instead of plain text password, via email
845
- * Removed Serbo-Croatian translation
 
 
 
4
  Tags: the champ, champ, social login, social sharing, social commenting, social comments, social plugin, buddypress, bbpress, social share, comments, share post, user profile data, social analytics, online identity, social profile storage, id provider, single sign-on, social media tools, free social login, post to social networks, social authentication, social app, connect, capture social data, social sign-in, signin, sign up, signup, social connect, facebook login, twitter login, google login, google+ login, linkedin login, yahoo, vkontakte, instagram, reddit, digg, stumbleupon, delicious, float it, tumblr, social network
5
  Requires at least: 2.5.0
6
  Tested up to: 4.4.2
7
+ Stable tag: 7.5.3
8
  License: GPLv2 or later
9
 
10
  The unique Social Plugin to let you integrate Social Login, Social Share and Social Comments at your website
204
  8. **Social Commenting**: Disqus Commenting selected
205
 
206
  == Changelog ==
207
+ = 7.5.3 =
208
+ * [Bugfix] Sharing icons disappeared from some pages after updating plugin to previous version
209
+
210
  = 7.5.2 =
211
  * [Bugfix] Sharing title and share counts were appearing in post excerpts at homepage
212
  * [Bugfix] Single and double quotes in post title were appearing encoded when sharing on Twitter
845
  * [Improvement] Improved Delecious icon
846
  * [Improvement] Updated Facebook SDK to version 2.5
847
  * [Improvement] Link to set password is being sent to new users, instead of plain text password, via email
848
+ * Removed Serbo-Croatian translation
849
+
850
+ = 7.5.3 =
851
+ * [Bugfix] Sharing icons disappeared from some pages after updating plugin to previous version
super_socializer.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Super Socializer
4
  Plugin URI: http://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 and more.
6
- Version: 7.5.2
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.5.2');
15
 
16
  $theChampLoginOptions = get_option('the_champ_login');
17
  if(isset($theChampLoginOptions['providers']) && in_array('twitter', $theChampLoginOptions['providers'])){
3
  Plugin Name: Super Socializer
4
  Plugin URI: http://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 and more.
6
+ Version: 7.5.3
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.5.3');
15
 
16
  $theChampLoginOptions = get_option('the_champ_login');
17
  if(isset($theChampLoginOptions['providers']) && in_array('twitter', $theChampLoginOptions['providers'])){