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

Version Description

[16 March 2021] = [Bugfix] Editing post and creating new post/page was not possible when using PHP version 8.0 [Bugfix] Redirect URL shown for Twitch was incorrect when clicking the (?) icon in front of the Twitch Client ID

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

Code changes from version 7.13.13 to 7.13.14

Files changed (4) hide show
  1. admin/social_login.php +1 -1
  2. helper.php +6 -6
  3. readme.txt +11 -3
  4. super_socializer.php +2 -2
admin/social_login.php CHANGED
@@ -725,7 +725,7 @@
725
  <br/>
726
  <span style="color:#14ACDF"><?php _e('Paste following url in <strong>Callback URL</strong> option mentioned at the link', 'super-socializer'); ?></span>
727
  <br/>
728
- <strong style="color:#14ACDF"><?php echo esc_url(home_url()).'/SuperSocializerAuth/twitch'; ?></strong>
729
  </div>
730
  </td>
731
  </tr>
725
  <br/>
726
  <span style="color:#14ACDF"><?php _e('Paste following url in <strong>Callback URL</strong> option mentioned at the link', 'super-socializer'); ?></span>
727
  <br/>
728
+ <strong style="color:#14ACDF"><?php echo esc_url(home_url()).'/SuperSocializerAuth/Twitch'; ?></strong>
729
  </div>
730
  </td>
731
  </tr>
helper.php CHANGED
@@ -767,27 +767,27 @@ function the_champ_sharing_meta_setup(){
767
  ?>
768
  <p>
769
  <label for="the_champ_sharing">
770
- <input type="checkbox" name="_the_champ_meta[sharing]" id="the_champ_sharing" value="1" <?php checked('1', @$sharingMeta['sharing']); ?> />
771
  <?php _e('Disable Standard Social Sharing on this '.$postType, 'super-socializer') ?>
772
  </label>
773
  <br/>
774
  <label for="the_champ_vertical_sharing">
775
- <input type="checkbox" name="_the_champ_meta[vertical_sharing]" id="the_champ_vertical_sharing" value="1" <?php checked('1', @$sharingMeta['vertical_sharing']); ?> />
776
  <?php _e('Disable Floating Social Sharing on this '.$postType, 'super-socializer') ?>
777
  </label>
778
  <br/>
779
  <label for="the_champ_counter">
780
- <input type="checkbox" name="_the_champ_meta[counter]" id="the_champ_counter" value="1" <?php checked('1', @$sharingMeta['counter']); ?> />
781
  <?php _e('Disable Standard like buttons on this '.$postType, 'super-socializer') ?>
782
  </label>
783
  <br/>
784
  <label for="the_champ_vertical_counter">
785
- <input type="checkbox" name="_the_champ_meta[vertical_counter]" id="the_champ_vertical_counter" value="1" <?php checked('1', @$sharingMeta['vertical_counter']); ?> />
786
  <?php _e('Disable Floating like buttons on this '.$postType, 'super-socializer') ?>
787
  </label>
788
  <br/>
789
  <label for="the_champ_fb_comments">
790
- <input type="checkbox" name="_the_champ_meta[fb_comments]" id="the_champ_fb_comments" value="1" <?php checked('1', @$sharingMeta['fb_comments']); ?> />
791
  <?php _e('Disable Social Commenting on this '.$postType, 'super-socializer') ?>
792
  </label>
793
  <?php
@@ -822,7 +822,7 @@ function the_champ_sharing_meta_setup(){
822
  ?>
823
  <br/>
824
  <label for="the_champ_<?php echo $sharingProvider ?>_vertical_sharing_count">
825
- <span style="width: 242px; float:left"><?php _e('Starting share count for '.ucfirst(str_replace('_', ' ', $sharingProvider)), 'super-socializer') ?></span>
826
  <input type="text" name="_the_champ_meta[<?php echo $sharingProvider ?>_vertical_count]" id="the_champ_<?php echo $sharingProvider ?>_vertical_sharing_count" value="<?php echo isset($sharingMeta[$sharingProvider.'_vertical_count']) && $sharingMeta[$sharingProvider.'_vertical_count'] > 0 ? $sharingMeta[$sharingProvider.'_vertical_count'] : '' ?>" />
827
  </label>
828
  <?php
767
  ?>
768
  <p>
769
  <label for="the_champ_sharing">
770
+ <input type="checkbox" name="_the_champ_meta[sharing]" id="the_champ_sharing" value="1" <?php echo is_array($sharingMeta) && isset($sharingMeta['sharing']) && $sharingMeta['sharing'] == '1' ? 'checked' : ''; ?> />
771
  <?php _e('Disable Standard Social Sharing on this '.$postType, 'super-socializer') ?>
772
  </label>
773
  <br/>
774
  <label for="the_champ_vertical_sharing">
775
+ <input type="checkbox" name="_the_champ_meta[vertical_sharing]" id="the_champ_vertical_sharing" value="1" <?php echo is_array($sharingMeta) && isset($sharingMeta['vertical_sharing']) && $sharingMeta['vertical_sharing'] == '1' ? 'checked' : ''; ?> />
776
  <?php _e('Disable Floating Social Sharing on this '.$postType, 'super-socializer') ?>
777
  </label>
778
  <br/>
779
  <label for="the_champ_counter">
780
+ <input type="checkbox" name="_the_champ_meta[counter]" id="the_champ_counter" value="1" <?php echo is_array($sharingMeta) && isset($sharingMeta['counter']) && $sharingMeta['counter'] == '1' ? 'checked' : ''; ?> />
781
  <?php _e('Disable Standard like buttons on this '.$postType, 'super-socializer') ?>
782
  </label>
783
  <br/>
784
  <label for="the_champ_vertical_counter">
785
+ <input type="checkbox" name="_the_champ_meta[vertical_counter]" id="the_champ_vertical_counter" value="1" <?php echo is_array($sharingMeta) && isset($sharingMeta['vertical_counter']) && $sharingMeta['vertical_counter'] == '1' ? 'checked' : ''; ?> />
786
  <?php _e('Disable Floating like buttons on this '.$postType, 'super-socializer') ?>
787
  </label>
788
  <br/>
789
  <label for="the_champ_fb_comments">
790
+ <input type="checkbox" name="_the_champ_meta[fb_comments]" id="the_champ_fb_comments" value="1" <?php echo is_array($sharingMeta) && isset($sharingMeta['fb_comments']) && $sharingMeta['fb_comments'] == '1' ? 'checked' : ''; ?> />
791
  <?php _e('Disable Social Commenting on this '.$postType, 'super-socializer') ?>
792
  </label>
793
  <?php
822
  ?>
823
  <br/>
824
  <label for="the_champ_<?php echo $sharingProvider ?>_vertical_sharing_count">
825
+ <span style="width:242px;float:left"><?php _e('Starting share count for '.ucfirst(str_replace('_', ' ', $sharingProvider)), 'super-socializer') ?></span>
826
  <input type="text" name="_the_champ_meta[<?php echo $sharingProvider ?>_vertical_count]" id="the_champ_<?php echo $sharingProvider ?>_vertical_sharing_count" value="<?php echo isset($sharingMeta[$sharingProvider.'_vertical_count']) && $sharingMeta[$sharingProvider.'_vertical_count'] > 0 ? $sharingMeta[$sharingProvider.'_vertical_count'] : '' ?>" />
827
  </label>
828
  <?php
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
5
  Requires at least: 2.5.0
6
- Tested up to: 5.6.1
7
- Stable tag: 7.13.13
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,10 @@ 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.13 [9 February 2021] =
216
  [Bugfix] Social Login was not working in some cases because of PHP sessions
217
 
@@ -2222,4 +2226,8 @@ Yes, we can help you with it. Just drop an email at support[ at ]heateor[ dot ]c
2222
  <a href="https://blog.heateor.com/super-socializer-supports-dropbox-reddit-foursquare-disqus-social-login" target="_blank">More details on What's new</a>
2223
 
2224
  = 7.13.13 [9 February 2021] =
2225
- [Bugfix] Social Login was not working in some cases because of PHP sessions
 
 
 
 
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
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
  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
218
+
219
  = 7.13.13 [9 February 2021] =
220
  [Bugfix] Social Login was not working in some cases because of PHP sessions
221
 
2226
  <a href="https://blog.heateor.com/super-socializer-supports-dropbox-reddit-foursquare-disqus-social-login" target="_blank">More details on What's new</a>
2227
 
2228
  = 7.13.13 [9 February 2021] =
2229
+ [Bugfix] Social Login was not working in some cases because of PHP sessions
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
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.13
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.13');
15
 
16
  require 'helper.php';
17
 
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
  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