Custom Share Buttons with Floating Sidebar - Version 2.4

Version Description

  • Fixed share url issue for custom post type.
    • Fixed show/hide share buttons issues
    • Tested with wordpress latest version
Download this release

Release Info

Developer india-web-developer
Plugin Icon 128x128 Custom Share Buttons with Floating Sidebar
Version 2.4
Comparing to
See all releases

Code changes from version 2.3 to 2.4

csbwfs-class.php CHANGED
@@ -18,6 +18,26 @@ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
18
 
19
  return $ctOptions;
20
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  /*
22
  * Site is browsing in mobile or not
23
  * @IsMobile()
@@ -74,7 +94,7 @@ add_action('wp_footer','csbwfs_cookie');
74
 
75
  function csbwfs_cookie()
76
  {
77
- echo $cookieVal='<script>csbwfsCheckCookie();function csbwfsSetCookie(cname,cvalue,exdays) {
78
  var d = new Date();
79
  d.setTime(d.getTime() + (exdays*24*60*60*1000));
80
  var expires = "expires=" + d.toGMTString();
@@ -286,7 +306,7 @@ if(isset($pluginOptionsVal['csbwfs_defaultfeaturedshrimg']) && $pluginOptionsVal
286
  if(is_category())
287
  {
288
  $category_id = get_query_var('cat');
289
- $shareurl =get_category_link( $category_id );
290
  $cats = get_the_category();
291
  $ShareTitle=$cats[0]->name;
292
  }elseif(is_page() || is_single())
@@ -298,7 +318,7 @@ if(is_category())
298
  $pinShareImg= $large_image_url[0] ;
299
  }
300
 
301
- $shareurl=get_permalink($post->ID);
302
  $ShareTitle=$post->post_title;
303
  }
304
  elseif(is_archive())
@@ -317,16 +337,16 @@ if(is_category())
317
  else :
318
  $ShareTitle ='Blog Archives';
319
  endif;
320
- $shareurl=$current_url;
321
 
322
  //$ShareTitle=$post->post_title;
323
  }
324
  else
325
  {
326
- $shareurl =home_url('/');
327
  $ShareTitle=get_bloginfo('name');
328
  }
329
-
330
  /* Set title and url for home page */
331
  if(is_home() || is_front_page())
332
  {
@@ -575,7 +595,7 @@ if(isset($pluginOptionsVal['csbwfs_defaultfeaturedshrimg']) && $pluginOptionsVal
575
  if(is_category())
576
  {
577
  $category_id = get_query_var('cat');
578
- $shareurl =get_category_link( $category_id );
579
  $cats = get_the_category();
580
  $ShareTitle=$cats[0]->name;
581
  }elseif(is_page() || is_single())
@@ -586,22 +606,24 @@ if(is_category())
586
 
587
  $pinShareImg= $large_image_url[0] ;
588
  }
589
- $shareurl=get_permalink($post->ID);
590
  $ShareTitle=$post->post_title;
591
  }
592
  else
593
  {
594
- $shareurl =home_url('/');
595
  $ShareTitle=get_bloginfo('name');
596
  }
597
 
598
  /* Set title and url for home page */
599
  if(is_home() || is_front_page())
600
  {
601
- $shareurl =home_url('/');
602
  $ShareTitle=get_bloginfo('name');
603
  }
604
-
 
 
605
  $ShareTitle= htmlspecialchars(urlencode($ShareTitle));
606
 
607
  /* Get All buttons Image */
18
 
19
  return $ctOptions;
20
  }
21
+ /** Get the current url*/
22
+ if(!function_exists('csbwfs_current_path_protocol')):
23
+ function csbwfs_current_path_protocol($s, $use_forwarded_host=false)
24
+ {
25
+ $pwahttp = (!empty($s['HTTPS']) && $s['HTTPS'] == 'on') ? true:false;
26
+ $pwasprotocal = strtolower($s['SERVER_PROTOCOL']);
27
+ $pwa_protocol = substr($pwasprotocal, 0, strpos($pwasprotocal, '/')) . (($pwahttp) ? 's' : '');
28
+ $port = $s['SERVER_PORT'];
29
+ $port = ((!$pwahttp && $port=='80') || ($pwahttp && $port=='443')) ? '' : ':'.$port;
30
+ $host = ($use_forwarded_host && isset($s['HTTP_X_FORWARDED_HOST'])) ? $s['HTTP_X_FORWARDED_HOST'] : (isset($s['HTTP_HOST']) ? $s['HTTP_HOST'] : null);
31
+ $host = isset($host) ? $host : $s['SERVER_NAME'] . $port;
32
+ return $pwa_protocol . '://' . $host;
33
+ }
34
+ endif;
35
+ if(!function_exists('csbwfs_get_current_page_url')):
36
+ function csbwfs_get_current_page_url($s, $use_forwarded_host=false)
37
+ {
38
+ return csbwfs_current_path_protocol($s, $use_forwarded_host) . $s['REQUEST_URI'];
39
+ }
40
+ endif;
41
  /*
42
  * Site is browsing in mobile or not
43
  * @IsMobile()
94
 
95
  function csbwfs_cookie()
96
  {
97
+ echo $cookieVal='<script>csbwfsCheckCookie();function csbwfsSetCookie(cname,cvalue,exdays) {
98
  var d = new Date();
99
  d.setTime(d.getTime() + (exdays*24*60*60*1000));
100
  var expires = "expires=" + d.toGMTString();
306
  if(is_category())
307
  {
308
  $category_id = get_query_var('cat');
309
+ //$shareurl =get_category_link( $category_id );
310
  $cats = get_the_category();
311
  $ShareTitle=$cats[0]->name;
312
  }elseif(is_page() || is_single())
318
  $pinShareImg= $large_image_url[0] ;
319
  }
320
 
321
+ // $shareurl=get_permalink($post->ID);
322
  $ShareTitle=$post->post_title;
323
  }
324
  elseif(is_archive())
337
  else :
338
  $ShareTitle ='Blog Archives';
339
  endif;
340
+ //$shareurl=$current_url;
341
 
342
  //$ShareTitle=$post->post_title;
343
  }
344
  else
345
  {
346
+ // $shareurl =home_url('/');
347
  $ShareTitle=get_bloginfo('name');
348
  }
349
+ $shareurl = csbwfs_get_current_page_url($_SERVER);
350
  /* Set title and url for home page */
351
  if(is_home() || is_front_page())
352
  {
595
  if(is_category())
596
  {
597
  $category_id = get_query_var('cat');
598
+ //$shareurl =get_category_link( $category_id );
599
  $cats = get_the_category();
600
  $ShareTitle=$cats[0]->name;
601
  }elseif(is_page() || is_single())
606
 
607
  $pinShareImg= $large_image_url[0] ;
608
  }
609
+ //$shareurl=get_permalink($post->ID);
610
  $ShareTitle=$post->post_title;
611
  }
612
  else
613
  {
614
+ //$shareurl =home_url('/');
615
  $ShareTitle=get_bloginfo('name');
616
  }
617
 
618
  /* Set title and url for home page */
619
  if(is_home() || is_front_page())
620
  {
621
+ // $shareurl =home_url('/');
622
  $ShareTitle=get_bloginfo('name');
623
  }
624
+
625
+ $shareurl = csbwfs_get_current_page_url($_SERVER);
626
+
627
  $ShareTitle= htmlspecialchars(urlencode($ShareTitle));
628
 
629
  /* Get All buttons Image */
custom-share-buttons-with-floating-sidebar.php CHANGED
@@ -3,9 +3,9 @@
3
  Plugin Name: Custom Share Buttons with Floating Sidebar
4
  Plugin URI: http://www.mrwebsolution.in/
5
  Description: "custom-share-buttons-with-floating-sidebar" is the very simple plugin for add to social share buttons with float sidebar. Even you can edit share buttons if you wish
6
- Author: Raghunath
7
  Author URI: http://raghunathgurjar.wordpress.com
8
- Version: 2.3
9
  */
10
 
11
  /* Copyright 2015 custom-share-buttons-with-floating-sidebar (email : raghunath.0087@gmail.com)
@@ -224,6 +224,10 @@ function csbwf_sidebar_admin_option_page(){ ?>
224
  </select>
225
  </td>
226
  </tr>
 
 
 
 
227
  <tr><th nowrap valign="top"><?php echo 'Delay Time: '; ?></th><td><input type="text" name="csbwfs_delayTimeBtn" id="csbwfs_delayTimeBtn" value="<?php echo get_option('csbwfs_delayTimeBtn')?get_option('csbwfs_delayTimeBtn'):0;?>" size="40" class="regular-text ltr"><br><i>Publish share buttons after given time(millisecond)</i></td></tr>
228
  <tr>
229
  <th>&nbsp;</th>
@@ -291,11 +295,6 @@ function csbwf_sidebar_admin_option_page(){ ?>
291
  <input type="textbox" id="csbwfs_top_margin" name="csbwfs_top_margin" value="<?php echo get_option('csbwfs_top_margin'); ?>" placeholder="10% OR 10px" size="10"/>
292
  </td>
293
  </tr>
294
- <tr>
295
- <th>&nbsp;</th>
296
- <td><input type="checkbox" id="csbwfs_rmSHBtn" name="csbwfs_rmSHBtn" value="yes" <?php if(get_option('csbwfs_rmSHBtn')=='yes'){echo 'checked="checked"';}?>/> <strong><?php _e('Remove Show/Hide Button:','csbwfs');?></strong></td>
297
- </tr>
298
-
299
  </table>
300
  </div>
301
  <!-- Share Buttons -->
@@ -414,33 +413,39 @@ function csbwf_sidebar_admin_option_page(){ ?>
414
  <li><a href="https://wordpress.org/plugins/wp-social-buttons/" target="_blank">WP Social Buttons</a></li>
415
  <li><a href="https://wordpress.org/plugins/wp-youtube-gallery/" target="_blank">WP Youtube Gallery</a></li>
416
  <li><a href="https://wordpress.org/plugins/wp-easy-recipe/" target="_blank">WP Easy Recipe</a></li>
 
 
417
  </ol>
418
  </div>
419
  <!-- GO PRO -->
420
  <div class="last author csbwfs-tab" id="div-csbwfs-pro">
421
 
422
  <h2>GO PRO</h2>
 
423
  <p>We have released an add-on for Custom Share Buttons With Floating Sidebar which not only demonstrates the flexibility of CSBWFS, but also adds some important features:</p>
424
- <ol>
425
  <li>Responsive Floating Sidebar</li>
426
- <li>Hide Floating Sidebar On Home/Post/Page/Category</li>
427
  <li>An Option for Show/Hide sidebar on any specific page/post/product</li>
 
 
 
428
  <li>Responsive Lightbox Contact Form (for Mail Icon)</li>
429
  <li>An option for add to any custom shortcode into lightbox</li>
430
  <li>Advance feature for choose to pinterest share image</li>
431
- <li>An option for add to OG tags content(title,image,content)</li>
432
  <li>An option for set automatically horizontal sidebar position for mobile</li>
433
  <li>An option for add to social site official page URL for all social buttons</li>
434
- <li>Extra Buttons (Google Translate,Instagram,Whatsapp,Digg,Yummly,Vk, Buffer, Line, Skype, RSS and Print)</li>
435
- <li>An option for display to number of share(Twitter,Facebook,LinkedIn,StumbleUpon,Google Plus,Pinterestand Reddit)</li>
436
- <li>An options for change to any button image, title, background colour and url </strong> (You can use any button as your own custom button)</li>
437
- <li>An options for enable to short link as share url</li>
438
- <li>An options to define sort order for all buttons</li>
439
  <li>Four extra custom buttons with extra options (i.e you can define your own custom size to these buttons)</li>
 
440
  <li>Faster support</li>
441
- </ol>
442
- <p><a href="http://csbwfs.mrwebsolution.in/" target="_blank" class="contact-author">Live Demo</a></p>
443
- <p><a class="contact-author" href="http://csbwfs.mrwebsolution.in/pro">Buy Now</a></p>
444
  <p> <a href="mailto:raghunath.0087@gmail.com" target="_blank" class="contact-author">Contact To Author</a></p>
445
 
446
  </div>
3
  Plugin Name: Custom Share Buttons with Floating Sidebar
4
  Plugin URI: http://www.mrwebsolution.in/
5
  Description: "custom-share-buttons-with-floating-sidebar" is the very simple plugin for add to social share buttons with float sidebar. Even you can edit share buttons if you wish
6
+ Author: MR Web Solution
7
  Author URI: http://raghunathgurjar.wordpress.com
8
+ Version: 2.4
9
  */
10
 
11
  /* Copyright 2015 custom-share-buttons-with-floating-sidebar (email : raghunath.0087@gmail.com)
224
  </select>
225
  </td>
226
  </tr>
227
+ <tr>
228
+ <th>&nbsp;</th>
229
+ <td><input type="checkbox" id="csbwfs_rmSHBtn" name="csbwfs_rmSHBtn" value="yes" <?php if(get_option('csbwfs_rmSHBtn')=='yes'){echo 'checked="checked"';}?>/> <strong><?php _e('Remove Show/Hide Button:','csbwfs');?></strong></td>
230
+ </tr>
231
  <tr><th nowrap valign="top"><?php echo 'Delay Time: '; ?></th><td><input type="text" name="csbwfs_delayTimeBtn" id="csbwfs_delayTimeBtn" value="<?php echo get_option('csbwfs_delayTimeBtn')?get_option('csbwfs_delayTimeBtn'):0;?>" size="40" class="regular-text ltr"><br><i>Publish share buttons after given time(millisecond)</i></td></tr>
232
  <tr>
233
  <th>&nbsp;</th>
295
  <input type="textbox" id="csbwfs_top_margin" name="csbwfs_top_margin" value="<?php echo get_option('csbwfs_top_margin'); ?>" placeholder="10% OR 10px" size="10"/>
296
  </td>
297
  </tr>
 
 
 
 
 
298
  </table>
299
  </div>
300
  <!-- Share Buttons -->
413
  <li><a href="https://wordpress.org/plugins/wp-social-buttons/" target="_blank">WP Social Buttons</a></li>
414
  <li><a href="https://wordpress.org/plugins/wp-youtube-gallery/" target="_blank">WP Youtube Gallery</a></li>
415
  <li><a href="https://wordpress.org/plugins/wp-easy-recipe/" target="_blank">WP Easy Recipe</a></li>
416
+ <li><a href="https://wordpress.org/plugins/tweets-slider/" target="_blank">Tweets Slider</a></li>
417
+ <li><a href="https://wordpress.org/plugins/rg-responsive-gallery/" target="_blank">RG Responsive Slider</a></li>
418
  </ol>
419
  </div>
420
  <!-- GO PRO -->
421
  <div class="last author csbwfs-tab" id="div-csbwfs-pro">
422
 
423
  <h2>GO PRO</h2>
424
+ <p><a href="https://rgaddons.wordpress.com/custom-share-buttons-with-floating-sidebar-pro/" target="_blank" class="contact-author">Go Pro</a></p>
425
  <p>We have released an add-on for Custom Share Buttons With Floating Sidebar which not only demonstrates the flexibility of CSBWFS, but also adds some important features:</p>
426
+ <ol>
427
  <li>Responsive Floating Sidebar</li>
428
+ <li>Hide Floating Sidebar On Home/Post/Page/Category and on Custom Post Type</li>
429
  <li>An Option for Show/Hide sidebar on any specific page/post/product</li>
430
+ <li>Show Social Share Buttons On Home/Post/Page/Category and on Custom Post Type</li>
431
+ <li>An Option for Show/Hide social share buttons on any specific page/post/product</li>
432
+ <li>An Option for Show/Hide sidebar on any custom post type</li>
433
  <li>Responsive Lightbox Contact Form (for Mail Icon)</li>
434
  <li>An option for add to any custom shortcode into lightbox</li>
435
  <li>Advance feature for choose to pinterest share image</li>
436
+ <li>An option for add to OG tags content(title,image,description)</li>
437
  <li>An option for set automatically horizontal sidebar position for mobile</li>
438
  <li>An option for add to social site official page URL for all social buttons</li>
439
+ <li>Extra Buttons (Google Translate,Instagram,Whatsapp,Digg,Yummly,Vk, Buffer, Line, Skype, RSS, Print, G-Mail, Blogger, Tumbler and Delicious,Weibo )</li>
440
+ <li>An option for define to twitter username in thier share window.</li>
441
+ <li>An option for display to number of share(Facebook,LinkedIn,StumbleUpon,Google Plus,Pinterest and Reddit)</li>
442
+ <li>An options for change to any button image, title, background colour and url (You can use any button as your own custom button)</li>
443
+ <li>An options to define sorting order for all buttons</li>
444
  <li>Four extra custom buttons with extra options (i.e you can define your own custom size to these buttons)</li>
445
+ <li>An option for show to sum of total share count for all buttons</li>
446
  <li>Faster support</li>
447
+ </ol>
448
+ <p><a href="https://rgaddons.wordpress.com/custom-share-buttons-with-floating-sidebar-pro/" target="_blank" class="contact-author">Go Pro</a></p>
 
449
  <p> <a href="mailto:raghunath.0087@gmail.com" target="_blank" class="contact-author">Contact To Author</a></p>
450
 
451
  </div>
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
4
  Tags: social share buttons,custom share buttons,facebook, twitter, google+, share, share links,linkedin,Stumbleupon,Reddit,pinterest,floating sidebar,float,floating share buttons,float share buttons
5
  Requires at least: 3.3
6
  Tested up to: 4.4.2
7
- Stable tag: 2.3
8
 
9
  Add Social Share Buttons(Facebook,Twitter,Linkedin,Google+,Pinterest,Youtube,Mail,Stumbleupon,Reddit) Using Floating Sidebar
10
 
@@ -24,9 +24,8 @@ It is lightweight plugin. There are not added any external JS files in this plug
24
  You can add a social share floating sidebar with all social share buttons and Even you can change the share buttons images and their style from admin if you wish!.
25
 
26
 
27
- **[Upgrade to Pro Version Server1](https://rgaddons.wordpress.com/custom-share-buttons-with-floating-sidebar-pro/)**
28
-
29
- **[Upgrade to Pro Version Server2](https://raghunathgurjar.wordpress.com/csbwfs-pro/)**
30
 
31
  = Features =
32
 
@@ -48,31 +47,30 @@ You can add a social share floating sidebar with all social share buttons and Ev
48
 
49
  We have also released an add-on for Custom Share Buttons With Floating Sidebar which not only demonstrates the flexibility of CSBWFS, but also adds some important features:
50
 
51
- * Responsive Floating Sidebar
52
- * Hide Floating Sidebar On Home/Post/Page/Category
53
- * An Option for Show/Hide sidebar on any specific page/post/product
54
- * Responsive Lightbox Contact Form (for Mail Icon)
55
- * An option for add to any custom shortcode into lightbox
56
- * Advance feature for choose to pinterest share image
57
- * An option for add to OG tags content(title,image,content)
58
- * An option for set automatically horizontal sidebar position for mobile
59
- * An option for add to social site official page URL for all social buttons
60
- * Extra Buttons (Google Translate,Instagram,Whatsapp,Digg,Yummly,Vk, Buffer, Line, Skype, RSS, Print, G-Mail, Blogger, Tumbler and Delicious )
61
- * An option for display to number of share(Facebook,LinkedIn,StumbleUpon,Google Plus,Pinterest and Reddit)
62
- * An options for change to any button image, title, background colour and url (You can use any button as your own custom button)
63
- * An options for enable to short link as share url
64
- * An options to define sort order for all buttons
65
- * Four extra custom buttons with extra options (i.e you can define your own custom size to these buttons)
66
- * An option for show to sum of total share count for all buttons
 
67
  * Faster support
68
 
69
 
70
- **[Addon Documentation](https://raghunathgurjar.wordpress.com/wp/csbwfs-pro/doc)**
71
 
72
 
73
- **[Upgrade to Pro Version Server1](https://rgaddons.wordpress.com/custom-share-buttons-with-floating-sidebar-pro/)**
74
-
75
- **[Upgrade to Pro Version Server2](https://raghunathgurjar.wordpress.com/csbwfs-pro/)**
76
 
77
 
78
  For any query contact to plugin author on **[raghunath.0087@gmail.com](mailto:raghunath.0087@gmail.com)**
@@ -115,7 +113,7 @@ Step 3. Go to Settings/"Custom Share Buttons with Floating Sidebar" and configur
115
 
116
  7.Is this mobile friendly OR is this responsive plugin?
117
 
118
- No,this is not a responsibe but you can use our csbwfs addon, Our CSBWFS ADDON is responsive with some new extra features.Please visit on this [site](http://csbwfs.mrwebsolution.in/pro) for check full details about addon.
119
 
120
 
121
 
@@ -139,18 +137,26 @@ No,this is not a responsibe but you can use our csbwfs addon, Our CSBWFS ADDON i
139
 
140
  9. screenshot-9.png
141
 
142
- == Changelog ==
 
 
 
 
 
143
  = 2.3 =
144
  * update code to display content into footer section
145
  * Added an option for define position of share buttons (below/above or content)
146
- * Fixed some minor js/css issue
 
147
  = 2.2 =
148
  * Fixed double time open share url issue
149
  * Added an option for auto close sidebar buttons on page load
150
- * Added an option for hide "Share This!!" button on page/post
 
151
  = 2.1 =
152
  * Fixed share buttons css issues
153
- * Fixed some minor js conflict issues
 
154
  = 2.0 =
155
  * Fixed pinterest share image issue
156
  * Fixed youtube buttons url issue
4
  Tags: social share buttons,custom share buttons,facebook, twitter, google+, share, share links,linkedin,Stumbleupon,Reddit,pinterest,floating sidebar,float,floating share buttons,float share buttons
5
  Requires at least: 3.3
6
  Tested up to: 4.4.2
7
+ Stable tag: 2.4
8
 
9
  Add Social Share Buttons(Facebook,Twitter,Linkedin,Google+,Pinterest,Youtube,Mail,Stumbleupon,Reddit) Using Floating Sidebar
10
 
24
  You can add a social share floating sidebar with all social share buttons and Even you can change the share buttons images and their style from admin if you wish!.
25
 
26
 
27
+ **[Upgrade to Pro Version](https://rgaddons.wordpress.com/custom-share-buttons-with-floating-sidebar-pro/)**
28
+
 
29
 
30
  = Features =
31
 
47
 
48
  We have also released an add-on for Custom Share Buttons With Floating Sidebar which not only demonstrates the flexibility of CSBWFS, but also adds some important features:
49
 
50
+ * Responsive Floating Sidebar
51
+ * Hide Floating Sidebar On Home/Post/Page/Category
52
+ * An Option for Show/Hide sidebar on any specific page/post/product
53
+ * An Option for Show/Hide sidebar on any custom post type
54
+ * Responsive Lightbox Contact Form (for Mail Icon)
55
+ * An option for add to any custom shortcode into lightbox
56
+ * Advance feature for choose to pinterest share image
57
+ * An option for add to OG tags content(title,image,content)
58
+ * An option for set automatically horizontal sidebar position for mobile
59
+ * An option for add to social site official page URL for all social buttons
60
+ * Extra Buttons (Google Translate,Instagram,Whatsapp,Digg,Yummly,Vk, Buffer, Line, Skype, RSS, Print, G-Mail, Blogger, Tumbler and Delicious )
61
+ * An option for display to number of share(Facebook,LinkedIn,StumbleUpon,Google Plus,Pinterest and Reddit)
62
+ * An options for change to any button image, title, background colour and url (You can use any button as your own custom button)
63
+ * An options for enable to short link as share url
64
+ * An options to define sort order for all buttons
65
+ * Four extra custom buttons with extra options (i.e you can define your own custom size to these buttons)
66
+ * An option for show to sum of total share count for all buttons
67
  * Faster support
68
 
69
 
70
+ **[Addon Documentation](https://rgaddons.wordpress.com/custom-share-buttons-with-floating-sidebar-pro/documentation/)**
71
 
72
 
73
+ **[Upgrade to Pro Version](https://rgaddons.wordpress.com/custom-share-buttons-with-floating-sidebar-pro/)**
 
 
74
 
75
 
76
  For any query contact to plugin author on **[raghunath.0087@gmail.com](mailto:raghunath.0087@gmail.com)**
113
 
114
  7.Is this mobile friendly OR is this responsive plugin?
115
 
116
+ No,this is not a responsibe but you can use our csbwfs addon, Our CSBWFS ADDON is responsive with some new extra features.Please visit on this [site](https://rgaddons.wordpress.com/custom-share-buttons-with-floating-sidebar-pro/) for check full details about addon.
117
 
118
 
119
 
137
 
138
  9. screenshot-9.png
139
 
140
+ == Changelog ==
141
+ = 2.4 =
142
+ * Fixed share url issue for custom post type.
143
+ * Fixed show/hide share buttons issues
144
+ * Tested with wordpress latest version
145
+
146
  = 2.3 =
147
  * update code to display content into footer section
148
  * Added an option for define position of share buttons (below/above or content)
149
+ * Fixed some minor js/css issue
150
+
151
  = 2.2 =
152
  * Fixed double time open share url issue
153
  * Added an option for auto close sidebar buttons on page load
154
+ * Added an option for hide "Share This!!" button on page/post
155
+
156
  = 2.1 =
157
  * Fixed share buttons css issues
158
+ * Fixed some minor js conflict issues
159
+
160
  = 2.0 =
161
  * Fixed pinterest share image issue
162
  * Fixed youtube buttons url issue