WP Socializer - Version 2.4.9.6

Version Description

  • Fix Facebook popup transparency.
  • Removed credit links.
  • Revised the email link.
  • Fixed some debug notices.
Download this release

Release Info

Developer vaakash
Plugin Icon 128x128 WP Socializer
Version 2.4.9.6
Comparing to
See all releases

Code changes from version 2.4.9.5 to 2.4.9.6

admin/wpsr-admin.php CHANGED
@@ -736,7 +736,8 @@ function wpsr_admin_page(){
736
  </tr>
737
  </table>
738
  </div>
739
-
 
740
  <h3><?php _e('Hide credit links', 'wpsr'); ?></h3>
741
  <div class="section">
742
  <table width="100%" height="39" border="0">
@@ -751,6 +752,7 @@ function wpsr_admin_page(){
751
  </tr>
752
  </table>
753
  </div>
 
754
 
755
  <h3><?php _e('Disable WP Socializer', 'wpsr'); ?></h3>
756
  <div class="section">
736
  </tr>
737
  </table>
738
  </div>
739
+
740
+ <div style="display: none">
741
  <h3><?php _e('Hide credit links', 'wpsr'); ?></h3>
742
  <div class="section">
743
  <table width="100%" height="39" border="0">
752
  </tr>
753
  </table>
754
  </div>
755
+ </div>
756
 
757
  <h3><?php _e('Disable WP Socializer', 'wpsr'); ?></h3>
758
  <div class="section">
includes/wpsr-floatingbar.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Floating share bar Processor code for WP Socializer Plugin
4
- * Version : 1.4
5
  * Since : v2.4
6
  * Author : Aakash Chakravarthy
7
  */
@@ -29,16 +29,10 @@ function wpsr_process_floatingbts(){
29
 
30
  $start = '<div class="wpsr-floatbar-' . $wpsr_floatbts['position'] . ' wpsr-floatbar-' . $wpsr_floatbts['theme'] . ($wpsr_floatbts['floatleft_movable'] ? ' wpsr-floatbar-movable ' : '') . ' clearfix" ' . $width . $mobmode . '>';
31
 
32
- if($wpsr_settings['disablecredits'] == 0){
33
- $end = '<div class="wpsr-linkback"><a href="http://www.aakashweb.com/wordpress-plugins/wp-socializer/" target="_blank">WP Socializer</a> <a href="http://www.aakashweb.com" target="_blank" class="wpsr_linkaw">Aakash Web</a></div>';
34
- }else{
35
- $end = '';
36
- }
37
-
38
  if($wpsr_floatbts['position'] == 'bottom_fixed')
39
  $end .= '<div title="Collapse the Share bar" class="wpsr_hidebt"></div>';
40
 
41
- $end .= '</div>';
42
 
43
  if($wpsr_floatbts['position'] == 'float_left')
44
  $end .= '<div class="wpsr_shareminbt"></div>';
1
  <?php
2
  /*
3
  * Floating share bar Processor code for WP Socializer Plugin
4
+ * Version : 1.5
5
  * Since : v2.4
6
  * Author : Aakash Chakravarthy
7
  */
29
 
30
  $start = '<div class="wpsr-floatbar-' . $wpsr_floatbts['position'] . ' wpsr-floatbar-' . $wpsr_floatbts['theme'] . ($wpsr_floatbts['floatleft_movable'] ? ' wpsr-floatbar-movable ' : '') . ' clearfix" ' . $width . $mobmode . '>';
31
 
 
 
 
 
 
 
32
  if($wpsr_floatbts['position'] == 'bottom_fixed')
33
  $end .= '<div title="Collapse the Share bar" class="wpsr_hidebt"></div>';
34
 
35
+ $end = '</div>';
36
 
37
  if($wpsr_floatbts['position'] == 'float_left')
38
  $end .= '<div class="wpsr_shareminbt"></div>';
includes/wpsr-socialbuttons.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Social buttons Processor code for WP Socializer Plugin
4
- * Version : 4.7
5
  * Author : Aakash Chakravarthy
6
  */
7
 
@@ -270,6 +270,8 @@ function wpsr_socialbts($args = ''){
270
  $args = wp_parse_args($args, $defaults);
271
  extract($args, EXTR_SKIP);
272
 
 
 
273
  if($output != 'singles'){
274
  $socialbt_processed = "\n<!-- Start WP Socializer - Social Buttons - Output -->\n";
275
  }
1
  <?php
2
  /*
3
  * Social buttons Processor code for WP Socializer Plugin
4
+ * Version : 4.8
5
  * Author : Aakash Chakravarthy
6
  */
7
 
270
  $args = wp_parse_args($args, $defaults);
271
  extract($args, EXTR_SKIP);
272
 
273
+ $socialbt_processed = ''; // Define empty var v2.4.9.6
274
+
275
  if($output != 'singles'){
276
  $socialbt_processed = "\n<!-- Start WP Socializer - Social Buttons - Output -->\n";
277
  }
readme.txt CHANGED
@@ -7,7 +7,7 @@ License: GPLv2 or later
7
  Donate Link: http://bit.ly/wpsrDonation
8
  Requires at least: 3.1
9
  Tested up to: 3.6
10
- Stable tag: 2.4.9.5
11
 
12
  Super Cool Plugin for inserting all kinds of Social Bookmarking & Sharing buttons. Has customizable Floating Share Bar, Widgets, Shortcodes also.
13
 
@@ -27,13 +27,12 @@ WP Socializer is an advanced plugin for inserting all kinds of Social bookmarkin
27
  * Template functions are available for advanced placements.
28
  * (NEW) Floating sharebar now optimized for mobile devices also.
29
 
30
- = New features and bug fixes in v2.4.9.5 =
31
 
32
- * Fixed Twitter title encoding bug.
33
- * Added Facebook like and send button to the floating sharebar.
34
- * Fixed bug in sharethis shortcode.
35
- * Added option to disable mobile mode for floating sharebar.
36
- * Fixed the irregular position of large pinterest button.
37
 
38
  [Changelog](changelog)
39
 
@@ -132,6 +131,12 @@ For custom placement in theme files and posts, check out the following documenta
132
 
133
  == Changelog ==
134
 
 
 
 
 
 
 
135
  = 2.4.9.5 =
136
  * Fixed Twitter title encoding bug.
137
  * Added Facebook like and send button to the floating sharebar.
7
  Donate Link: http://bit.ly/wpsrDonation
8
  Requires at least: 3.1
9
  Tested up to: 3.6
10
+ Stable tag: 2.4.9.6
11
 
12
  Super Cool Plugin for inserting all kinds of Social Bookmarking & Sharing buttons. Has customizable Floating Share Bar, Widgets, Shortcodes also.
13
 
27
  * Template functions are available for advanced placements.
28
  * (NEW) Floating sharebar now optimized for mobile devices also.
29
 
30
+ = New features and bug fixes in v2.4.9.6 =
31
 
32
+ * Fix Facebook popup transparency.
33
+ * Removed credit links.
34
+ * Revised the email link.
35
+ * Fixed some debug notices.
 
36
 
37
  [Changelog](changelog)
38
 
131
 
132
  == Changelog ==
133
 
134
+ = 2.4.9.6 =
135
+ * Fix Facebook popup transparency.
136
+ * Removed credit links.
137
+ * Revised the email link.
138
+ * Fixed some debug notices.
139
+
140
  = 2.4.9.5 =
141
  * Fixed Twitter title encoding bug.
142
  * Added Facebook like and send button to the floating sharebar.
wp-socializer.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  Plugin Name: WP Socializer
4
- Version: 2.4.9.5
5
  Plugin URI: http://www.aakashweb.com/
6
  Description: WP Socializer is an advanced plugin for inserting all kinds of Social bookmarking & sharing buttons. It has super cool features to insert the buttons into posts, sidebar. It also has Floating sharebar and Smart load feature. <a href="http://youtu.be/1uimAE8rFYE" target="_blank">Check out the demo video</a>.
7
  Author: Aakash Chakravarthy
@@ -14,7 +14,7 @@ if(!defined('WP_CONTENT_URL')) {
14
  $wpsr_url = WP_CONTENT_URL . '/plugins/' . plugin_basename(dirname(__FILE__)) . '/';
15
  }
16
 
17
- define('WPSR_VERSION', '2.4.9.5');
18
  define('WPSR_AUTHOR', 'Aakash Chakravarthy');
19
  define('WPSR_URL', $wpsr_url);
20
  define('WPSR_PUBLIC_URL', WPSR_URL . 'public/');
@@ -198,7 +198,7 @@ $wpsr_socialsites_list = array(
198
  'name' => 'Email',
199
  'titleText' => __('Email this ', 'wpsr') . '',
200
  'icon' => 'email.png',
201
- 'url' => 'mailto:?to=&amp;subject={title}&amp;body={excerpt}%20-%20{de-url}', // Fixed the bugs in v2.4.1, v2.4.3 & v2.4.6
202
  'support32px' => 1,
203
  ),
204
 
1
  <?php
2
  /*
3
  Plugin Name: WP Socializer
4
+ Version: 2.4.9.6
5
  Plugin URI: http://www.aakashweb.com/
6
  Description: WP Socializer is an advanced plugin for inserting all kinds of Social bookmarking & sharing buttons. It has super cool features to insert the buttons into posts, sidebar. It also has Floating sharebar and Smart load feature. <a href="http://youtu.be/1uimAE8rFYE" target="_blank">Check out the demo video</a>.
7
  Author: Aakash Chakravarthy
14
  $wpsr_url = WP_CONTENT_URL . '/plugins/' . plugin_basename(dirname(__FILE__)) . '/';
15
  }
16
 
17
+ define('WPSR_VERSION', '2.4.9.6');
18
  define('WPSR_AUTHOR', 'Aakash Chakravarthy');
19
  define('WPSR_URL', $wpsr_url);
20
  define('WPSR_PUBLIC_URL', WPSR_URL . 'public/');
198
  'name' => 'Email',
199
  'titleText' => __('Email this ', 'wpsr') . '',
200
  'icon' => 'email.png',
201
+ 'url' => 'mailto:?to=&subject={title}&body={excerpt}%20-%20{de-url}', // Fixed the bugs in v2.4.1, v2.4.3, v2.4.6 & v2.4.9.6
202
  'support32px' => 1,
203
  ),
204