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

Version Description

[30 March 2021] = [Bugfix] Kakao login was not working

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.15
Comparing to
See all releases

Code changes from version 7.13.14 to 7.13.15

Files changed (2) hide show
  1. readme.txt +8 -2
  2. super_socializer.php +3 -3
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
5
  Requires at least: 2.5.0
6
  Tested up to: 5.7
7
- Stable tag: 7.13.14
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
@@ -212,6 +212,9 @@ Yes, we can help you with it. Just drop an email at support[ at ]heateor[ dot ]c
212
  8. **Social Commenting**: Disqus Commenting selected
213
 
214
  == Changelog ==
 
 
 
215
  = 7.13.14 [16 March 2021] =
216
  [Bugfix] Editing post and creating new post/page was not possible when using PHP version 8.0
217
  [Bugfix] Redirect URL shown for Twitch was incorrect when clicking the (?) icon in front of the Twitch Client ID
@@ -2230,4 +2233,7 @@ Yes, we can help you with it. Just drop an email at support[ at ]heateor[ dot ]c
2230
 
2231
  = 7.13.14 [16 March 2021] =
2232
  [Bugfix] Editing post and creating new post/page was not possible when using PHP version 8.0
2233
- [Bugfix] Redirect URL shown for Twitch was incorrect when clicking the (?) icon in front of the Twitch Client ID
 
 
 
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
5
  Requires at least: 2.5.0
6
  Tested up to: 5.7
7
+ Stable tag: 7.13.15
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
212
  8. **Social Commenting**: Disqus Commenting selected
213
 
214
  == Changelog ==
215
+ = 7.13.15 [30 March 2021] =
216
+ [Bugfix] Kakao login was not working
217
+
218
  = 7.13.14 [16 March 2021] =
219
  [Bugfix] Editing post and creating new post/page was not possible when using PHP version 8.0
220
  [Bugfix] Redirect URL shown for Twitch was incorrect when clicking the (?) icon in front of the Twitch Client ID
2233
 
2234
  = 7.13.14 [16 March 2021] =
2235
  [Bugfix] Editing post and creating new post/page was not possible when using PHP version 8.0
2236
+ [Bugfix] Redirect URL shown for Twitch was incorrect when clicking the (?) icon in front of the Twitch Client ID
2237
+
2238
+ = 7.13.15 [30 March 2021] =
2239
+ [Bugfix] Kakao login was not working
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.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.13.14');
15
 
16
  require 'helper.php';
17
 
@@ -1085,7 +1085,7 @@ function the_champ_connect(){
1085
  // save referrer url in state
1086
  update_user_meta($kakaoLoginState, 'super_socializer_redirect_to', isset($_GET['super_socializer_redirect_to']) ? esc_url(trim($_GET['super_socializer_redirect_to'])) : home_url());
1087
  }
1088
- wp_redirect("https://kauth.kakao.com/oauth/authorize?client_id=".$theChampLoginOptions['kakao_client_id']."&state=state&response_type=code&state=". $kakaoLoginState ."&redirect_uri=".home_url()."/SuperSocializerAuth/Kakao");
1089
  die;
1090
  }
1091
  }
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.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.13.15');
15
 
16
  require 'helper.php';
17
 
1085
  // save referrer url in state
1086
  update_user_meta($kakaoLoginState, 'super_socializer_redirect_to', isset($_GET['super_socializer_redirect_to']) ? esc_url(trim($_GET['super_socializer_redirect_to'])) : home_url());
1087
  }
1088
+ wp_redirect("https://kauth.kakao.com/oauth/authorize?client_id=".$theChampLoginOptions['kakao_client_id']."&response_type=code&state=". $kakaoLoginState ."&redirect_uri=".home_url()."/SuperSocializerAuth/Kakao");
1089
  die;
1090
  }
1091
  }