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

Version Description

[7 December 2020] = [Bugfix] Instagram login was redirecting to "404 - Page not found"

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

Code changes from version 7.13.5 to 7.13.6

Files changed (2) hide show
  1. readme.txt +9 -3
  2. super_socializer.php +3 -3
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: Heateor, farhan8heateor, jatin8heateor, the_champ, Hungarian Trans
3
  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, Windows Live Login, Microsoft Login, Wordpress login, Yahoo login, Spotify login, Dribbble login, Kakao login, Github login
5
  Requires at least: 2.5.0
6
- Tested up to: 5.5.1
7
- Stable tag: 7.13.5
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.5 [29 October 2020] =
216
  [New] Added filter heateor_ss_steam_login_filter to customize the Steam login profile data
217
 
@@ -2148,4 +2151,7 @@ Yes, we can help you with it. Just drop an email at support[ at ]heateor[ dot ]c
2148
  [Bugfix] Whatsapp share icon in every share bar was sharing the link of first article on a web page listing multiple articles
2149
 
2150
  = 7.13.5 [29 October 2020] =
2151
- [New] Added filter heateor_ss_steam_login_filter to customize the Steam login profile data
 
 
 
3
  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, Windows Live Login, Microsoft Login, Wordpress login, Yahoo login, Spotify login, Dribbble login, Kakao login, Github login
5
  Requires at least: 2.5.0
6
+ Tested up to: 5.5.3
7
+ Stable tag: 7.13.6
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.6 [7 December 2020] =
216
+ [Bugfix] Instagram login was redirecting to "404 - Page not found"
217
+
218
  = 7.13.5 [29 October 2020] =
219
  [New] Added filter heateor_ss_steam_login_filter to customize the Steam login profile data
220
 
2151
  [Bugfix] Whatsapp share icon in every share bar was sharing the link of first article on a web page listing multiple articles
2152
 
2153
  = 7.13.5 [29 October 2020] =
2154
+ [New] Added filter heateor_ss_steam_login_filter to customize the Steam login profile data
2155
+
2156
+ = 7.13.6 [7 December 2020] =
2157
+ [Bugfix] Instagram login was redirecting to "404 - Page not found"
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.5
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.5');
15
 
16
  require 'helper.php';
17
 
@@ -193,7 +193,7 @@ function the_champ_connect(){
193
  if(isset($body->access_token)){
194
  $authorization = "Bearer ".$body->access_token;
195
 
196
- $response = wp_remote_get('https://graph.instagram.com/'.$body->user_id.'?fields=ig_id,account_type,id,username&access_token='.$body->access_token, array('timeout' => 15));
197
 
198
  if(!is_wp_error($response) && isset($response['response']['code']) && 200 === $response['response']['code']){
199
  $profileData = json_decode(wp_remote_retrieve_body($response ));
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.6
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.6');
15
 
16
  require 'helper.php';
17
 
193
  if(isset($body->access_token)){
194
  $authorization = "Bearer ".$body->access_token;
195
 
196
+ $response = wp_remote_get('https://graph.instagram.com/'.$body->user_id.'?fields=account_type,id,username&access_token='.$body->access_token, array('timeout' => 15));
197
 
198
  if(!is_wp_error($response) && isset($response['response']['code']) && 200 === $response['response']['code']){
199
  $profileData = json_decode(wp_remote_retrieve_body($response ));