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

Version Description

  • [Bugfix] Linkedin Login icon was not appearing in some cases
Download this release

Release Info

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

Code changes from version 7.8.14 to 7.8.15

Files changed (2) hide show
  1. readme.txt +8 -2
  2. super_socializer.php +3 -5
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, facebook login
5
  Requires at least: 2.5.0
6
  Tested up to: 4.7.3
7
- Stable tag: 7.8.14
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.8.14 =
208
  * [New] Included LiveJournal in Social Login networks
209
  * [New] Added option to control automatic social account linking (if email address of social media account matches with existing email address)
@@ -1174,4 +1177,7 @@ Yes, we can help you with it. Just drop an email at support@heateor.com
1174
  * [Bugfix] Floating sharing icons and floating like buttons were not picking up correct title and url at archive pages
1175
  * [Bugfix] BuddyPress XProfile fields were being wiped out on Social Login, if social profile fields were not mapped to XProfile fields from plugin options
1176
  * [Improvement] Now primary social account can be unlinked from Social Account Linking section at user profile page
1177
- * [Improvement] "Login with" text appearing on hovering mouse over Social Login icons was not being translated
 
 
 
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, facebook login
5
  Requires at least: 2.5.0
6
  Tested up to: 4.7.3
7
+ Stable tag: 7.8.15
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.8.15 =
208
+ * [Bugfix] Linkedin Login icon was not appearing in some cases
209
+
210
  = 7.8.14 =
211
  * [New] Included LiveJournal in Social Login networks
212
  * [New] Added option to control automatic social account linking (if email address of social media account matches with existing email address)
1177
  * [Bugfix] Floating sharing icons and floating like buttons were not picking up correct title and url at archive pages
1178
  * [Bugfix] BuddyPress XProfile fields were being wiped out on Social Login, if social profile fields were not mapped to XProfile fields from plugin options
1179
  * [Improvement] Now primary social account can be unlinked from Social Account Linking section at user profile page
1180
+ * [Improvement] "Login with" text appearing on hovering mouse over Social Login icons was not being translated
1181
+
1182
+ = 7.8.15 =
1183
+ * [Bugfix] Linkedin Login icon was not appearing in some cases
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.8.14
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.8.14');
15
 
16
  require 'helper.php';
17
 
@@ -692,9 +692,7 @@ function the_champ_frontend_scripts(){
692
  if(the_champ_social_login_provider_enabled('linkedin') && !is_user_logged_in()){
693
  ?>
694
  <script type="text/javascript" src="//platform.linkedin.com/in.js">
695
- api_key: <?php echo isset($theChampLoginOptions['li_key']) ? $theChampLoginOptions['li_key'] : '' ?>
696
-
697
- onLoad: theChampLinkedInOnLoad
698
  </script>
699
  <?php
700
  if(!$combinedScript){
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.8.15
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.8.15');
15
 
16
  require 'helper.php';
17
 
692
  if(the_champ_social_login_provider_enabled('linkedin') && !is_user_logged_in()){
693
  ?>
694
  <script type="text/javascript" src="//platform.linkedin.com/in.js">
695
+ api_key: <?php echo (isset($theChampLoginOptions['li_key']) ? $theChampLoginOptions['li_key'] : '') . PHP_EOL ?>onLoad: theChampLinkedInOnLoad
 
 
696
  </script>
697
  <?php
698
  if(!$combinedScript){