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

Version Description

[17 July 2021] = * [Bugfix] Previous update was logging the user into the social login popup window instead of the main browser window when "Trigger social login in the same browser tab" option was unchecked

Download this release

Release Info

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

Code changes from version 7.13.22 to 7.13.23

Files changed (2) hide show
  1. readme.txt +8 -2
  2. super_socializer.php +9 -4
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.heateor.com/donate?action=Super+Socializer
4
  Tags: social login, social share, line login, social commenting, social comments, social plugin, profile data, social analytics, online identity, social profile storage, single sign-on, social media follow, facebook login, twitter login, linkedin login, google login, vkontakte login, Windows Live Login, Microsoft Login, Wordpress login, Yahoo login, Spotify login, Dribbble login, Kakao login, Github login, Twitch login, Instagram login, dropbox login, foursquare login, disqus login, reddit login, amazon login, stackoverflow login, stack overflow login, discord login, mail.ru login, mailru login, mail ru login
5
  Requires at least: 2.5.0
6
  Tested up to: 5.7.2
7
- Stable tag: 7.13.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
@@ -213,6 +213,9 @@ Yes, we can help you with it. Just drop an email at support[ at ]heateor[ dot ]c
213
  8. **Social Commenting**: Disqus Commenting selected
214
 
215
  == Changelog ==
 
 
 
216
  = 7.13.22 [17 July 2021] =
217
  * [Bugfix] Fixed a Javascript error being logged in the browser's developer console
218
  * [Bugfix] Redirection after authentication from Social network was not working in the mobile webview
@@ -2307,4 +2310,7 @@ Yes, we can help you with it. Just drop an email at support[ at ]heateor[ dot ]c
2307
  = 7.13.22 [17 July 2021] =
2308
  * [Bugfix] Fixed a Javascript error being logged in the browser's developer console
2309
  * [Bugfix] Redirection after authentication from Social network was not working in the mobile webview
2310
- * [Improvement] Admin UI improvements
 
 
 
4
  Tags: social login, social share, line login, social commenting, social comments, social plugin, profile data, social analytics, online identity, social profile storage, single sign-on, social media follow, facebook login, twitter login, linkedin login, google login, vkontakte login, Windows Live Login, Microsoft Login, Wordpress login, Yahoo login, Spotify login, Dribbble login, Kakao login, Github login, Twitch login, Instagram login, dropbox login, foursquare login, disqus login, reddit login, amazon login, stackoverflow login, stack overflow login, discord login, mail.ru login, mailru login, mail ru login
5
  Requires at least: 2.5.0
6
  Tested up to: 5.7.2
7
+ Stable tag: 7.13.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
213
  8. **Social Commenting**: Disqus Commenting selected
214
 
215
  == Changelog ==
216
+ = 7.13.23 [17 July 2021] =
217
+ * [Bugfix] Previous update was logging the user into the social login popup window instead of the main browser window when "Trigger social login in the same browser tab" option was unchecked
218
+
219
  = 7.13.22 [17 July 2021] =
220
  * [Bugfix] Fixed a Javascript error being logged in the browser's developer console
221
  * [Bugfix] Redirection after authentication from Social network was not working in the mobile webview
2310
  = 7.13.22 [17 July 2021] =
2311
  * [Bugfix] Fixed a Javascript error being logged in the browser's developer console
2312
  * [Bugfix] Redirection after authentication from Social network was not working in the mobile webview
2313
+ * [Improvement] Admin UI improvements
2314
+
2315
+ = 7.13.23 [17 July 2021] =
2316
+ * [Bugfix] Previous update was logging the user into the social login popup window instead of the main browser window when "Trigger social login in the same browser tab" option was unchecked
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.13.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.13.22');
15
 
16
  require 'helper.php';
17
 
@@ -1816,7 +1816,11 @@ function the_champ_close_login_popup($redirectionUrl){
1816
  }
1817
  </script>
1818
  <?php
1819
- wp_redirect($redirectionUrl);
 
 
 
 
1820
  die;
1821
  }
1822
 
@@ -2518,7 +2522,8 @@ function the_champ_save_default_options(){
2518
  'stackoverflow_client_secret' => '',
2519
  'stackoverflow_key' => '',
2520
  'mailru_client_secret' => '',
2521
- 'mailru_client_id' => ''
 
2522
  ));
2523
 
2524
  // social commenting options
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.13.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.13.23');
15
 
16
  require 'helper.php';
17
 
1816
  }
1817
  </script>
1818
  <?php
1819
+ global $theChampLoginOptions;
1820
+ if(isset($theChampLoginOptions['same_tab_login'])){
1821
+ wp_redirect($redirectionUrl);
1822
+ die;
1823
+ }
1824
  die;
1825
  }
1826
 
2522
  'stackoverflow_client_secret' => '',
2523
  'stackoverflow_key' => '',
2524
  'mailru_client_secret' => '',
2525
+ 'mailru_client_id' => '',
2526
+ 'same_tab_login' => '1'
2527
  ));
2528
 
2529
  // social commenting options