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

Version Description

[17 May 2021] = * [Bugfix] Options related to GDPR given in the previous update were not being saved 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.13.18
Comparing to
See all releases

Code changes from version 7.13.17 to 7.13.18

Files changed (2) hide show
  1. readme.txt +9 -3
  2. super_socializer.php +5 -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, 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
5
  Requires at least: 2.5.0
6
- Tested up to: 5.7.1
7
- Stable tag: 7.13.17
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.17 [5 May 2021] =
216
  * [New] Plugin now gives an option to the users at the profile page to revoke the consent to save their personal data they granted when used social login
217
  * [Improvement] Social avatars from Facebook are now being saved in "heateor" folder in the "wp-content/uploads" directory
@@ -2260,4 +2263,7 @@ Yes, we can help you with it. Just drop an email at support[ at ]heateor[ dot ]c
2260
 
2261
  = 7.13.17 [5 May 2021] =
2262
  * [New] Plugin now gives an option to the users at the profile page to revoke the consent to save their personal data they granted when used social login
2263
- * [Improvement] Social avatars from Facebook are now being saved in "heateor" folder in the "wp-content/uploads" directory
 
 
 
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, 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
5
  Requires at least: 2.5.0
6
+ Tested up to: 5.7.2
7
+ Stable tag: 7.13.18
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.18 [17 May 2021] =
216
+ * [Bugfix] Options related to GDPR given in the previous update were not being saved in some cases
217
+
218
  = 7.13.17 [5 May 2021] =
219
  * [New] Plugin now gives an option to the users at the profile page to revoke the consent to save their personal data they granted when used social login
220
  * [Improvement] Social avatars from Facebook are now being saved in "heateor" folder in the "wp-content/uploads" directory
2263
 
2264
  = 7.13.17 [5 May 2021] =
2265
  * [New] Plugin now gives an option to the users at the profile page to revoke the consent to save their personal data they granted when used social login
2266
+ * [Improvement] Social avatars from Facebook are now being saved in "heateor" folder in the "wp-content/uploads" directory
2267
+
2268
+ = 7.13.18 [17 May 2021] =
2269
+ * [Bugfix] Options related to GDPR given in the previous update were not being saved in some cases
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.17
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.17');
15
 
16
  require 'helper.php';
17
 
@@ -2332,7 +2332,6 @@ function the_champ_save_avatar($user_id){
2332
  }
2333
  // delete personal data from the user meta
2334
  $wpdb->query($wpdb->prepare('DELETE FROM '.$wpdb->prefix.'usermeta WHERE user_id = %d and meta_key LIKE "thechamp%"', $user_id));
2335
- update_user_meta($user_id, 'thechamp_gdpr_consent', 'no');
2336
  }
2337
  if((!isset($_POST['heateor_ss_gdpr_consent']) || $_POST['heateor_ss_gdpr_consent'] == 'yes') && isset($_POST['the_champ_small_avatar'])){
2338
  update_user_meta($user_id, 'thechamp_avatar', esc_url(trim($_POST['the_champ_small_avatar'])));
@@ -2343,6 +2342,9 @@ function the_champ_save_avatar($user_id){
2343
  if(isset($_POST['ss_dontupdate_avatar'])){
2344
  update_user_meta($user_id, 'thechamp_dontupdate_avatar', intval($_POST['ss_dontupdate_avatar']));
2345
  }
 
 
 
2346
  }
2347
  add_action('personal_options_update', 'the_champ_save_avatar');
2348
  add_action('edit_user_profile_update', 'the_champ_save_avatar');
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.18
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.18');
15
 
16
  require 'helper.php';
17
 
2332
  }
2333
  // delete personal data from the user meta
2334
  $wpdb->query($wpdb->prepare('DELETE FROM '.$wpdb->prefix.'usermeta WHERE user_id = %d and meta_key LIKE "thechamp%"', $user_id));
 
2335
  }
2336
  if((!isset($_POST['heateor_ss_gdpr_consent']) || $_POST['heateor_ss_gdpr_consent'] == 'yes') && isset($_POST['the_champ_small_avatar'])){
2337
  update_user_meta($user_id, 'thechamp_avatar', esc_url(trim($_POST['the_champ_small_avatar'])));
2342
  if(isset($_POST['ss_dontupdate_avatar'])){
2343
  update_user_meta($user_id, 'thechamp_dontupdate_avatar', intval($_POST['ss_dontupdate_avatar']));
2344
  }
2345
+ if(isset($_POST['heateor_ss_gdpr_consent'])){
2346
+ update_user_meta($user_id, 'thechamp_gdpr_consent', $_POST['heateor_ss_gdpr_consent'] == 'yes' ? 'yes' : 'no');
2347
+ }
2348
  }
2349
  add_action('personal_options_update', 'the_champ_save_avatar');
2350
  add_action('edit_user_profile_update', 'the_champ_save_avatar');