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

Version Description

  • Bugfix: Google+ icon was showing up twice in Vertical sharing provider selection
  • Bugfix: Vertical sharing bar is not appearing if left offset is less than 200
Download this release

Release Info

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

Code changes from version 2.8.0 to 2.8.1

admin/social_sharing.php CHANGED
@@ -366,7 +366,7 @@ var theChampSharingIconPath = '<?php echo plugins_url('../images/sharing', __FIL
366
  </div>
367
 
368
  <div class="theChampVerticalSharingProviderContainer">
369
- <input id="the_champ_vertical_sharing_google" name="the_champ_sharing[providers][]" type="checkbox" <?php echo isset($theChampSharingOptions['vertical_providers']) && in_array('google', $theChampSharingOptions['vertical_providers']) ? 'checked = "checked"' : '';?> value="google" />
370
  <label for="the_champ_vertical_sharing_google"><?php _e("Google+", 'Super-Socializer'); ?></label>
371
  </div>
372
 
@@ -401,7 +401,7 @@ var theChampSharingIconPath = '<?php echo plugins_url('../images/sharing', __FIL
401
  </div>
402
 
403
  <div class="theChampVerticalSharingProviderContainer">
404
- <input id="the_champ_vertical_sharing_stumble" name="the_champ_sharing[providers][]" type="checkbox" <?php echo isset($theChampSharingOptions['vertical_providers']) && in_array('stumbleupon', $theChampSharingOptions['vertical_providers']) ? 'checked = "checked"' : '';?> value="stumbleupon" />
405
  <label for="the_champ_vertical_sharing_stumble"><?php _e("StumbleUpon", 'Super-Socializer'); ?></label>
406
  </div>
407
 
366
  </div>
367
 
368
  <div class="theChampVerticalSharingProviderContainer">
369
+ <input id="the_champ_vertical_sharing_google" name="the_champ_sharing[vertical_providers][]" type="checkbox" <?php echo isset($theChampSharingOptions['vertical_providers']) && in_array('google', $theChampSharingOptions['vertical_providers']) ? 'checked = "checked"' : '';?> value="google" />
370
  <label for="the_champ_vertical_sharing_google"><?php _e("Google+", 'Super-Socializer'); ?></label>
371
  </div>
372
 
401
  </div>
402
 
403
  <div class="theChampVerticalSharingProviderContainer">
404
+ <input id="the_champ_vertical_sharing_stumble" name="the_champ_sharing[vertical_providers][]" type="checkbox" <?php echo isset($theChampSharingOptions['vertical_providers']) && in_array('stumbleupon', $theChampSharingOptions['vertical_providers']) ? 'checked = "checked"' : '';?> value="stumbleupon" />
405
  <label for="the_champ_vertical_sharing_stumble"><?php _e("StumbleUpon", 'Super-Socializer'); ?></label>
406
  </div>
407
 
css/front.css CHANGED
@@ -361,7 +361,6 @@ ul.the_champ_sharing_ul li{
361
  .theChampSharingVkontakteButton { background-position: -64px -96px; width: 32px; height: 32px; }
362
  .theChampSharingYahooButton { background-position: -96px -96px; width: 32px; height: 32px; }
363
  .the_champ_vertical_sharing{
364
- margin-left: -208px;
365
  background: #fff;
366
  -webkit-box-shadow: 0 1px 4px 1px rgba(0,0,0,0.1);
367
  -moz-box-shadow: 0 1px 4px 1px rgba(0,0,0,0.1);
361
  .theChampSharingVkontakteButton { background-position: -64px -96px; width: 32px; height: 32px; }
362
  .theChampSharingYahooButton { background-position: -96px -96px; width: 32px; height: 32px; }
363
  .the_champ_vertical_sharing{
 
364
  background: #fff;
365
  -webkit-box-shadow: 0 1px 4px 1px rgba(0,0,0,0.1);
366
  -moz-box-shadow: 0 1px 4px 1px rgba(0,0,0,0.1);
inc/shortcode.php CHANGED
@@ -9,7 +9,7 @@ function the_champ_sharing_shortcode($params){
9
  extract(shortcode_atts(array(
10
  'style' => '',
11
  'type' => 'horizontal',
12
- 'left' => '270',
13
  'top' => '100',
14
  ), $params));
15
  if(($type == 'horizontal' && !the_champ_horizontal_sharing_enabled()) || ($type == 'vertical' && !the_champ_vertical_sharing_enabled())){
@@ -18,12 +18,14 @@ function the_champ_sharing_shortcode($params){
18
  global $post;
19
  $targetUrl = get_permalink($post -> ID);
20
  $html = '<div class="the_champ_sharing_container the_champ_'.$type.'_sharing" super-socializer-data-href="'.$targetUrl.'" ';
 
 
 
 
21
  // style
22
- if($style != ""){
23
  $html .= 'style="';
24
- if($type == 'vertical'){
25
- $html .= 'left: '.$left.'px; top: '.$top.'px;';
26
- }
27
  $html .= $style;
28
  $html .= '"';
29
  }
9
  extract(shortcode_atts(array(
10
  'style' => '',
11
  'type' => 'horizontal',
12
+ 'left' => '0',
13
  'top' => '100',
14
  ), $params));
15
  if(($type == 'horizontal' && !the_champ_horizontal_sharing_enabled()) || ($type == 'vertical' && !the_champ_vertical_sharing_enabled())){
18
  global $post;
19
  $targetUrl = get_permalink($post -> ID);
20
  $html = '<div class="the_champ_sharing_container the_champ_'.$type.'_sharing" super-socializer-data-href="'.$targetUrl.'" ';
21
+ $verticalOffsets = '';
22
+ if($type == 'vertical'){
23
+ $verticalOffsets = 'left: '.$left.'px; top: '.$top.'px;';
24
+ }
25
  // style
26
+ if($style != "" || $verticalOffsets != ''){
27
  $html .= 'style="';
28
+ $html .= $verticalOffsets;
 
 
29
  $html .= $style;
30
  $html .= '"';
31
  }
inc/widget.php CHANGED
@@ -217,7 +217,7 @@ class TheChampVerticalSharingWidget extends WP_Widget {
217
  /** Widget edit form at admin panel */
218
  function form( $instance ) {
219
  /* Set up default widget settings. */
220
- $defaults = array('left_offset' => '270', 'top_offset' => '100');
221
 
222
  foreach( $instance as $key => $value ){
223
  $instance[ $key ] = esc_attr( $value );
217
  /** Widget edit form at admin panel */
218
  function form( $instance ) {
219
  /* Set up default widget settings. */
220
+ $defaults = array('left_offset' => '40', 'top_offset' => '100');
221
 
222
  foreach( $instance as $key => $value ){
223
  $instance[ $key ] = esc_attr( $value );
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://thechamplord.wordpress.com/
4
  Tags: super socializer, thechamp, champ, social login, social sharing, social commenting, wordpress plugin, buddypress, bbpress, social share, feed, multisite, comments, share post, openid integration, user profile data, social analytics, online identity, social profile storage, id provider, single sign-on, plug-in, social media tools, free social login, post to social networks, social authentication, social app, connect, capture social data, wordpress, social sign-in, signin, sign up, signup, social plugins, social connect, facebook, twitter, google, google+, googleplus, google plus, linkedin, yahoo, vkontakte, instagram, reddit, digg, stumbleupon, delicious, float it, tumblr, widget, social network
5
  Requires at least: 2.5.0
6
  Tested up to: 3.9.1
7
- Stable tag: 2.8.0
8
  License: GPLv2 or later
9
 
10
  A complete 360 degree solution to provide all the social features like Social Login, Social Commenting, Social Sharing, Social Feed and more
@@ -165,6 +165,10 @@ Yes, I can help you with it. Just drop me an email at lordofthechamps@gmail.com
165
  3. **Facebook Commenting**: Facebook commenting replaces the traditional comment form
166
 
167
  == Changelog ==
 
 
 
 
168
  = 2.8.0 =
169
  * Included floating sharing bar
170
  * Included option to enable sharing on category archive pages
@@ -253,4 +257,8 @@ Yes, I can help you with it. Just drop me an email at lordofthechamps@gmail.com
253
  * Enabled share counts for Google+
254
  * Included option to delete options on plugin deletion
255
  * Included Spanish language translation
256
- * Minor bug fixes
 
 
 
 
4
  Tags: super socializer, thechamp, champ, social login, social sharing, social commenting, wordpress plugin, buddypress, bbpress, social share, feed, multisite, comments, share post, openid integration, user profile data, social analytics, online identity, social profile storage, id provider, single sign-on, plug-in, social media tools, free social login, post to social networks, social authentication, social app, connect, capture social data, wordpress, social sign-in, signin, sign up, signup, social plugins, social connect, facebook, twitter, google, google+, googleplus, google plus, linkedin, yahoo, vkontakte, instagram, reddit, digg, stumbleupon, delicious, float it, tumblr, widget, social network
5
  Requires at least: 2.5.0
6
  Tested up to: 3.9.1
7
+ Stable tag: 2.8.1
8
  License: GPLv2 or later
9
 
10
  A complete 360 degree solution to provide all the social features like Social Login, Social Commenting, Social Sharing, Social Feed and more
165
  3. **Facebook Commenting**: Facebook commenting replaces the traditional comment form
166
 
167
  == Changelog ==
168
+ = 2.8.1 =
169
+ * Bugfix: Google+ icon was showing up twice in Vertical sharing provider selection
170
+ * Bugfix: Vertical sharing bar is not appearing if left offset is less than 200
171
+
172
  = 2.8.0 =
173
  * Included floating sharing bar
174
  * Included option to enable sharing on category archive pages
257
  * Enabled share counts for Google+
258
  * Included option to delete options on plugin deletion
259
  * Included Spanish language translation
260
+ * Minor bug fixes
261
+
262
+ = 2.8.1 =
263
+ * Bugfix: Google+ icon was showing up twice in Vertical sharing provider selection
264
+ * Bugfix: Vertical sharing bar is not appearing if left offset is less than 200
super_socializer.php CHANGED
@@ -3,13 +3,13 @@
3
  Plugin Name: Super Socializer
4
  Plugin URI: https://www.facebook.com/SocializerChamp
5
  Description: A complete 360 degree solution to provide all the social features like Social Login, Social Commenting, Social Sharing, Social Feed and more.
6
- Version: 2.8.0
7
  Author: The Champ
8
  Author URI: http://thechamplord.wordpress.com
9
  License: GPL2+
10
  */
11
  defined('ABSPATH') or die("Cheating........Uh!!");
12
- define('THE_CHAMP_SS_VERSION', '2.8.0');
13
 
14
  require 'library/twitteroauth.php';
15
 
3
  Plugin Name: Super Socializer
4
  Plugin URI: https://www.facebook.com/SocializerChamp
5
  Description: A complete 360 degree solution to provide all the social features like Social Login, Social Commenting, Social Sharing, Social Feed and more.
6
+ Version: 2.8.1
7
  Author: The Champ
8
  Author URI: http://thechamplord.wordpress.com
9
  License: GPL2+
10
  */
11
  defined('ABSPATH') or die("Cheating........Uh!!");
12
+ define('THE_CHAMP_SS_VERSION', '2.8.1');
13
 
14
  require 'library/twitteroauth.php';
15