Custom Share Buttons with Floating Sidebar - Version 2.3

Version Description

  • update code to display content into footer section
    • Added an option for define position of share buttons (below/above or content)
    • Fixed some minor js/css issue
Download this release

Release Info

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

Code changes from version 2.2 to 2.3

csbwfs-class.php CHANGED
@@ -64,7 +64,7 @@ isset($pluginOptionsVal['csbwfs_deactive_for_mob']) && $pluginOptionsVal['csbwfs
64
  // silent is Gold;
65
  }else
66
  {
67
- add_action('wp_head','get_csbwf_sidebar_content');
68
  add_action( 'wp_enqueue_scripts', 'csbwf_sidebar_scripts' );
69
  add_action('wp_footer','csbwf_sidebar_load_inline_js');
70
  add_action('wp_footer','csbwfs_cookie');
@@ -489,7 +489,7 @@ endif;
489
 
490
  /** TW */
491
  if($pluginOptionsVal['csbwfs_tpublishBtn']!=''):
492
- $flitingSidebarContent .='<div class="csbwfs-sbutton"><div id="csbwfs-tw"><a href="javascript:" onclick="window.open(\'http://twitter.com/share?url='.$shareurl.'&text='.$ShareTitle.'\',\'_blank\',\'width=800,height=300\')" title="'.$tImgAlt.'" '.$tImgbg.'><img src="'.$tImg.'" alt="'.$tImgAlt.'"></a></div></div>';
493
  endif;
494
 
495
  /** GP */
@@ -504,7 +504,7 @@ endif;
504
 
505
  /** PIN */
506
  if($pluginOptionsVal['csbwfs_ppublishBtn']!=''):
507
- $flitingSidebarContent .='<div class="csbwfs-sbutton"><div id="csbwfs-pin"><a onclick="window.open(\'http://pinterest.com/pin/create/button/?url='.$shareurl.'&amp;media='.$pinShareImg.'&amp;description='.$ShareTitle.' :'.$shareurl.'\',\'pinIt\',\'toolbar=0,status=0,width=800,height=500\');" href="javascript:void(0);" '.$pImgbg.' title="'.$pImgAlt.'"><img src="'.$pImg.'" alt="'.$pImgAlt.'"></a></div></div>';
508
  endif;
509
 
510
  /** YT */
@@ -733,12 +733,13 @@ if($pluginOptionsVal['csbwfs_mpublishBtn']!=''):
733
  $shareButtonContent.='<div class="csbwfs-sbutton-post"><div id="ml-p"><a href="mailto:'.$mailMsg.'" title="'.$mImgAlt.'"><img src="'.$mImg.'" alt="'.$mImgAlt.'"></a></div></div>';
734
  endif;
735
  $shareButtonContent.='</div>';
736
-
737
-
738
- //add_filter( 'the_content', array($this, 'add_share_buttons_to_content'));
739
- // Returns the content.
740
  if(is_home() && $pluginOptionsVal['csbwfs_page_hide_home']!='yes'):
741
  $shareButtonContent='';
 
 
 
 
742
  endif;
743
 
744
  if(is_single() && $pluginOptionsVal['csbwfs_page_hide_post']!='yes'):
@@ -748,17 +749,19 @@ $shareButtonContent.='</div>';
748
  if(is_page() && $pluginOptionsVal['csbwfs_page_hide_page']!='yes'):
749
  $shareButtonContent='';
750
  endif;
751
-
752
  if(is_archive() && $pluginOptionsVal['csbwfs_page_hide_archive']!='yes'):
753
  $shareButtonContent='';
754
  endif;
755
- /** hide on 404 pages */
756
  if(is_404()):
757
  $shareButtonContent='';
758
  endif;
759
-
760
- /** Buttons position on content */
761
- if($shareButtonContent!=''):
 
 
 
762
  return $content.$shareButtonContent;
763
  else:
764
  return $content;
64
  // silent is Gold;
65
  }else
66
  {
67
+ add_action('wp_footer','get_csbwf_sidebar_content');
68
  add_action( 'wp_enqueue_scripts', 'csbwf_sidebar_scripts' );
69
  add_action('wp_footer','csbwf_sidebar_load_inline_js');
70
  add_action('wp_footer','csbwfs_cookie');
489
 
490
  /** TW */
491
  if($pluginOptionsVal['csbwfs_tpublishBtn']!=''):
492
+ $flitingSidebarContent .='<div class="csbwfs-sbutton"><div id="csbwfs-tw"><a href="javascript:" onclick="window.open(\'https://twitter.com/share?url='.$shareurl.'&text='.$ShareTitle.'\',\'_blank\',\'width=800,height=300\')" title="'.$tImgAlt.'" '.$tImgbg.'><img src="'.$tImg.'" alt="'.$tImgAlt.'"></a></div></div>';
493
  endif;
494
 
495
  /** GP */
504
 
505
  /** PIN */
506
  if($pluginOptionsVal['csbwfs_ppublishBtn']!=''):
507
+ $flitingSidebarContent .='<div class="csbwfs-sbutton"><div id="csbwfs-pin"><a onclick="window.open(\'https://pinterest.com/pin/create/button/?url='.$shareurl.'&amp;media='.$pinShareImg.'&amp;description='.$ShareTitle.' :'.$shareurl.'\',\'pinIt\',\'toolbar=0,status=0,width=800,height=500\');" href="javascript:void(0);" '.$pImgbg.' title="'.$pImgAlt.'"><img src="'.$pImg.'" alt="'.$pImgAlt.'"></a></div></div>';
508
  endif;
509
 
510
  /** YT */
733
  $shareButtonContent.='<div class="csbwfs-sbutton-post"><div id="ml-p"><a href="mailto:'.$mailMsg.'" title="'.$mImgAlt.'"><img src="'.$mImg.'" alt="'.$mImgAlt.'"></a></div></div>';
734
  endif;
735
  $shareButtonContent.='</div>';
736
+ // Returns the content.
 
 
 
737
  if(is_home() && $pluginOptionsVal['csbwfs_page_hide_home']!='yes'):
738
  $shareButtonContent='';
739
+ endif;
740
+
741
+ if(is_front_page() && $pluginOptionsVal['csbwfs_page_hide_home']!='yes'):
742
+ $shareButtonContent='';
743
  endif;
744
 
745
  if(is_single() && $pluginOptionsVal['csbwfs_page_hide_post']!='yes'):
749
  if(is_page() && $pluginOptionsVal['csbwfs_page_hide_page']!='yes'):
750
  $shareButtonContent='';
751
  endif;
 
752
  if(is_archive() && $pluginOptionsVal['csbwfs_page_hide_archive']!='yes'):
753
  $shareButtonContent='';
754
  endif;
755
+
756
  if(is_404()):
757
  $shareButtonContent='';
758
  endif;
759
+ /** Buttons position on content */
760
+ if(isset($pluginOptionsVal['csbwfs_btn_display']) && $pluginOptionsVal['csbwfs_btn_display']=='above')
761
+ {$displyPos='above';}else {$displyPos='default';}
762
+ if($shareButtonContent!='' && $displyPos=='above'):
763
+ return $shareButtonContent.$content;
764
+ elseif($shareButtonContent!='' && $displyPos=='default'):
765
  return $content.$shareButtonContent;
766
  else:
767
  return $content;
custom-share-buttons-with-floating-sidebar.php CHANGED
@@ -5,7 +5,7 @@ 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.2
9
  */
10
 
11
  /* Copyright 2015 custom-share-buttons-with-floating-sidebar (email : raghunath.0087@gmail.com)
@@ -77,6 +77,7 @@ function csbwf_sidebar_init(){
77
  register_setting('csbwf_sidebar_options','csbwfs_mailMessage');
78
  register_setting('csbwf_sidebar_options','csbwfs_top_margin');
79
  register_setting('csbwf_sidebar_options','csbwfs_delayTimeBtn');
 
80
  /** Image Alt */
81
  register_setting('csbwf_sidebar_options','csbwfs_fb_title');
82
  register_setting('csbwf_sidebar_options','csbwfs_tw_title');
@@ -315,6 +316,15 @@ function csbwf_sidebar_admin_option_page(){ ?>
315
  </select>
316
  </td>
317
  </tr>
 
 
 
 
 
 
 
 
 
318
  <tr>
319
  <th nowrap><?php echo 'Share Button Text:';?></th>
320
  <td>
@@ -391,7 +401,7 @@ function csbwf_sidebar_admin_option_page(){ ?>
391
 
392
  <h2>Plugin Support</h2>
393
 
394
- <p><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=WN785E5V492L4" target="_blank" style="font-size: 17px; font-weight: bold;"><img src="https://www.paypal.com/en_US/i/btn/btn_donate_LG.gif" title="Donate for this plugin"></a></p>
395
 
396
  <p><strong>Plugin Author:</strong><br><img src="<?php echo plugins_url( 'images/raghu.jpg' , __FILE__ );?>" width="75" height="75"><br><a href="http://raghunathgurjar.wordpress.com" target="_blank">Raghunath Gurjar</a></p>
397
  <p><a href="mailto:raghunath.0087@gmail.com" target="_blank" class="contact-author">Contact Author</a></p>
@@ -414,16 +424,19 @@ function csbwf_sidebar_admin_option_page(){ ?>
414
  <ol>
415
  <li>Responsive Floating Sidebar</li>
416
  <li>Hide Floating Sidebar On Home/Post/Page/Category</li>
417
- <li>Option for Show/Hide sidebar on any specific page/post</li>
418
  <li>Responsive Lightbox Contact Form (for Mail Icon)</li>
419
- <li>Option for add to <strong>“Contact Form 7″</strong> Shortcode into lightbox</li>
420
- <li>Advance Feature For Choose To Pinterest Share Image</li>
421
- <li>Option for add to OG tags content(title,image,content)</li>
422
- <li>Option for add to social site official page URL for all social buttons</li>
423
- <li>Extra Buttons (Google Translate,Instagram,Whatsapp,Digg,Yummly,Vk, Buffer and Print)</li>
424
- <li><strong>Option for display to number of share</strong> (Twitter,Facebook,LinkedIn,StumbleUpon,Google Plus,Pinterestand Reddit)</li>
425
- <li><strong>Option for change to any button image and their title,background colour and url </strong> (You can use any button as your own custom button)</li>
426
- <li><strong>4 Extra Custom Buttons</strong></li>
 
 
 
427
  <li>Faster support</li>
428
  </ol>
429
  <p><a href="http://csbwfs.mrwebsolution.in/" target="_blank" class="contact-author">Live Demo</a></p>
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)
77
  register_setting('csbwf_sidebar_options','csbwfs_mailMessage');
78
  register_setting('csbwf_sidebar_options','csbwfs_top_margin');
79
  register_setting('csbwf_sidebar_options','csbwfs_delayTimeBtn');
80
+ register_setting('csbwf_sidebar_options','csbwfs_btn_display');
81
  /** Image Alt */
82
  register_setting('csbwf_sidebar_options','csbwfs_fb_title');
83
  register_setting('csbwf_sidebar_options','csbwfs_tw_title');
316
  </select>
317
  </td>
318
  </tr>
319
+ <tr>
320
+ <th nowrap><?php echo 'Display Buttons On ';?></th>
321
+ <td>
322
+ <select id="csbwfs_btn_display" name="csbwfs_btn_display" >
323
+ <option value="above" <?php if(get_option('csbwfs_btn_display')=='above'){echo 'selected="selected"';}?>>Top Of The Content</option>
324
+ <option value="below" <?php if(get_option('csbwfs_btn_display')=='below'){echo 'selected="selected"';}?>>Bottom Of The Content</option>
325
+ </select>
326
+ </td>
327
+ </tr>
328
  <tr>
329
  <th nowrap><?php echo 'Share Button Text:';?></th>
330
  <td>
401
 
402
  <h2>Plugin Support</h2>
403
 
404
+ <p><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=ZEMSYQUZRUK6A" target="_blank" style="font-size: 17px; font-weight: bold;"><img src="https://www.paypal.com/en_US/i/btn/btn_donate_LG.gif" title="Donate for this plugin"></a></p>
405
 
406
  <p><strong>Plugin Author:</strong><br><img src="<?php echo plugins_url( 'images/raghu.jpg' , __FILE__ );?>" width="75" height="75"><br><a href="http://raghunathgurjar.wordpress.com" target="_blank">Raghunath Gurjar</a></p>
407
  <p><a href="mailto:raghunath.0087@gmail.com" target="_blank" class="contact-author">Contact Author</a></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>
readme.txt CHANGED
@@ -3,80 +3,82 @@ Contributors:india-web-developer
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=ZEMSYQUZRUK6A
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.3.1
7
- Stable tag: 2.2
8
 
9
  Add Social Share Buttons(Facebook,Twitter,Linkedin,Google+,Pinterest,Youtube,Mail,Stumbleupon,Reddit) Using Floating Sidebar
10
 
11
  == Description ==
12
 
13
- = “custom-share-buttons-with-floating-sidebar” = , it is plugin for social networks. It is very simple plugin for share your site with your friends through social sites,The plugin supports 9 social networking.
14
- Your users share via their accounts on popular social networks such as Facebook, Twitter, Linkedin, Pinterest, Google+, Stumbleupon, Reddit, Youtube and Refer a Friend.
15
-
16
- With this plugin, you give users the tools to share your content, product details and other information with their own networks.
17
-
18
- More than 22 billion shares are viewed each and every day on the internet, with sharing becoming an increasingly important part of every website owner’s marketing strategies.
19
-
20
- Let your users share via their accounts on popular social networks. Install this free plugin to enable Social Sharing on your WordPress site and start driving high quality referrals to your website.
21
-
22
- It is lightweight plugin. There are not added any external JS files in this plugin so it’s does not effect on your site speed as well.
23
-
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
- **[Upgrade to Pro Version - Server1](http://csbwfs.mrwebsolution.in/pro)**
27
-
28
- **[Upgrade to Pro Version - Server2](https://raghunathgurjar.wordpress.com/csbwfs-pro/)**
29
-
30
- = Features =
31
-
32
- * Options for add to Custom Image of any buttons
33
- * Options for add to background color of buttons
34
- * Floating Sidebar
35
- * Share Buttons for every post/page
36
- * Show/Hide options for any buttons
37
- * Options for edit to message ("Show Buttons","Hide Buttons"...etc)
38
- * Options for set the position of Floating Sidebar (Left/Right/Bottom)
39
- * Options for set the position of Social Buttons (Left/Right)
40
- * Options for manage the style of the plugin
41
- * Option for disable sidebar for mobile
42
- * Option for define the pinterest share image
43
- * Option for auto close sidebar buttons on page load
 
44
  * Option for hide "Share This!!" button on page/post
 
 
45
 
46
- = Go Pro =
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
-
51
- * Responsive Floating Sidebar
52
- * Hide Floating Sidebar On Home/Post/Page/Category
53
- * Option for Show/Hide sidebar on any specific page/post
54
- * Responsive Lightbox Contact Form (for Mail Icon)
55
- * Option for add to “Contact Form 7″ Shortcode into lightbox
56
- * Advance Feature For Choose To Pinterest Share Image
57
- * Option for add to OG tags content(title,image,content)
58
- * Option for set automatically horizontal sidebar position for mobile
59
- * 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 and Print)
61
- * Option for display to number of share (Twitter,Facebook,LinkedIn,StumbleUpon,Google Plus,Pinterestand Reddit)
62
- * Option for change to any button image and their title,background colour and url (You can use any button as your own custom button)
63
- * Option for define distance from left/right/bottom
64
- * Faster support
65
-
66
-
67
-
68
- **[Live Demo](http://csbwfs.mrwebsolution.in)**
69
-
70
- **[Addon Documentation](http://csbwfs.mrwebsolution.in/documentation)**
71
-
72
- **[Upgrade to Pro Version - Server1 ](http://csbwfs.mrwebsolution.in/pro)**
73
-
74
- **[Upgrade to Pro Version - Server2 ](https://raghunathgurjar.wordpress.com/csbwfs-pro/)**
75
-
76
- For any query contact to plugin author on **[raghunath.0087@gmail.com](mailto:raghunath.0087@gmail.com)**
77
 
78
- We have released new version for Magento Site
79
- **[Go Pro Magento Version](http://www.magentocommerce.com/magento-connect/social-share-buttons-pro.html)**
 
 
 
 
 
80
 
81
  == Installation ==
82
 
@@ -93,31 +95,29 @@ Step 3. Go to Settings/"Custom Share Buttons with Floating Sidebar" and configur
93
 
94
  2.Can i change the custom share buttons images from admin?
95
 
96
- Yes,admin can changes all social share custom buttons images if you wish, for that you have only need to define the buttons images path from plugins settings page.
 
 
97
 
98
- 3.Can i disable the floating sidebar for mobile?
99
-
100
  Yes,You can disable the floating sidebar by configure the plugin settings
101
-
102
  4.Can i define the top margin for share buttons block?
103
 
104
- Yes, admin can define the top margin from plugin settings page
105
-
106
- 5.Can we add the social share buttons on bottom of every post/pages?
107
-
108
- Yes,you have only need to enable the "Social Share Button" from admin by plugin settings
109
-
110
- 6.Can we add at a time only the "Floating Sidebar" OR "Social Share Buttons"?
111
-
112
- Yes,You have need to enable at a time only one from both "Floating Sidebar" and "Social Share Buttons"
113
-
114
  7.Is this mobile friendly OR is this responsive plugin?
115
 
116
- No,this is not a responsibe plugin 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.
117
-
118
- 8.Is there any demo site where your plugins have been used?
119
 
120
- Yes, Please visit on this [site](http://csbwfs.mrwebsolution.in/) for check live demo
121
 
122
  == Screenshots ==
123
 
@@ -126,75 +126,87 @@ No,this is not a responsibe plugin but you can use our csbwfs addon, Our CSBWFS
126
  2. screenshot-2.png
127
 
128
  3. screenshot-3.png
129
-
130
- 4. screenshot-4.png
131
-
132
  5. screenshot-5.png
133
 
134
- == Changelog ==
135
- = 2.2 =
136
- * Fixed double time open share url issue
137
- * Added an option for auto close sidebar buttons on page load
138
- * Added an option for hide "Share This!!" button on page/post
139
- = 2.1 =
140
- * Fixed share buttons css issues
141
- * Fixed some minor js conflict issues
142
- = 2.0 =
143
- * Fixed pinterest share image issue
144
- * Fixed youtube buttons url issue
145
- * modify layout of plugin settings page
146
- * Added options for define the buttons image alt text
147
- * Released Pro Version 1.6
148
-
149
- = 1.9 =
150
- * Released Pro Version 1.3
151
- * Fixed all suggested issues by users
152
- * Fixed css conflict issues
153
- * Added Stumbleupon and Reddit buttons to social share buttons
154
- * Minify CSS
155
-
156
- = 1.8 =
157
- * Released Pro Version 1.1
158
- * Added new bottom position option for floating sidebar
159
- * Modify CSS
160
-
161
- = 1.7 =
162
- * Released Pro Version
163
- * Added an option disable floating sidebar on home page
164
- * Fixed share url issue on home page
165
-
166
- = 1.6 =
167
- * Added new option for disable floating sidebar for mobile site
168
- * Added two new Stumbleupon and Reddit buttons
169
- * Added options for define Pinterest Share images
170
- * Fixed show/hide button issue
171
-
172
- = 1.5 =
173
- * Make plugin settings page more stylish
174
- * Added a new option for remove show/hide buttions
175
- * Added an option for change position of social share buttons
176
- * Make "Share This!" button text editable
177
- * Add Youtube button
178
- * Change image opacity on hover
179
-
180
- = 1.4 =
181
- * Added an options for define the background color of custom social share buttons
182
- * Added a new options for show/hide the buttions, so now if you will be click on hide buttons and then go to next page OR reload same page,then buttons will be not publish in front end,so buttons status will be remain until you will not change the their status by click on show/hide buttons
183
- * Added an options for manage the general text (like "Show buttons", "Hide buttons"..etc)
184
- * Fixed some JS issues
185
-
186
- = 1.3 =
187
- * Added an options for add the social share buttons on bottom of the content on every post/pages
 
 
 
 
 
 
 
 
 
 
 
 
188
 
189
  = 1.2 =
190
- * Fixed button image gap issue for right position
191
- * Added new option for set the delay time to publish the share butttons
192
-
193
  = 1.1 =
194
- * Fixed the right float sidebar issue
195
- * Added new option for define the margin from TOP
196
- * Added the show/hide buttons
197
- * On Mail buttons :by default set current page title as a mail subject-line and page link in mail-body
198
 
199
  = 1.0 =
200
  * First stable release
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=ZEMSYQUZRUK6A
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
 
11
  == Description ==
12
 
13
+ = “custom-share-buttons-with-floating-sidebar” = , it is plugin for social networks. It is very simple plugin for share your site with your friends through social sites,The plugin supports 9 social networking.
14
+ Your users share via their accounts on popular social networks such as Facebook, Twitter, Linkedin, Pinterest, Google+, Stumbleupon, Reddit, Youtube and Refer a Friend.
15
+
16
+ With this plugin, you give users the tools to share your content, product details and other information with their own networks.
17
+
18
+ More than 22 billion shares are viewed each and every day on the internet, with sharing becoming an increasingly important part of every website owner’s marketing strategies.
19
+
20
+ Let your users share via their accounts on popular social networks. Install this free plugin to enable Social Sharing on your WordPress site and start driving high quality referrals to your website.
21
+
22
+ It is lightweight plugin. There are not added any external JS files in this plugin so it’s does not effect on your site speed as well.
23
+
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
+
33
+ * Options for add to Custom Image of any buttons
34
+ * Options for add to background color of buttons
35
+ * Floating Sidebar
36
+ * Share Buttons for every post/page
37
+ * Show/Hide options for any buttons
38
+ * Options for edit to message ("Show Buttons","Hide Buttons"...etc)
39
+ * Options for set the position of Floating Sidebar (Left/Right/Bottom)
40
+ * Options for set the position of Social Buttons (Left/Right)
41
+ * Options for manage the style of the plugin
42
+ * Option for disable sidebar for mobile
43
+ * Option for define the pinterest share image
44
+ * Option for auto close sidebar buttons on page load
45
  * Option for hide "Share This!!" button on page/post
46
+ * Option for define share buttons postion (above content/below content)
47
+ = Go Pro =
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)**
79
+
80
+ We have released new version for Magento Sites
81
+ **[Go Pro Magento Version](http://www.magentocommerce.com/magento-connect/social-share-buttons-pro.html)**
82
 
83
  == Installation ==
84
 
95
 
96
  2.Can i change the custom share buttons images from admin?
97
 
98
+ Yes,admin can changes all social share custom buttons images if you wish, for that you have only need to define the buttons images path from plugins settings page.
99
+
100
+ 3.Can i disable the floating sidebar for mobile?
101
 
 
 
102
  Yes,You can disable the floating sidebar by configure the plugin settings
103
+
104
  4.Can i define the top margin for share buttons block?
105
 
106
+ Yes, admin can define the top margin from plugin settings page
107
+
108
+ 5.Can we add the social share buttons on bottom of every post/pages?
109
+
110
+ Yes,you have only need to enable the "Social Share Button" from admin by plugin settings
111
+
112
+ 6.Can we add at a time only the "Floating Sidebar" OR "Social Share Buttons"?
113
+
114
+ Yes,You have need to enable at a time only one from both "Floating Sidebar" and "Social Share Buttons"
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
 
122
  == Screenshots ==
123
 
126
  2. screenshot-2.png
127
 
128
  3. screenshot-3.png
129
+
130
+ 4. screenshot-4.png
131
+
132
  5. screenshot-5.png
133
 
134
+ 6. screenshot-6.png
135
+
136
+ 7. screenshot-7.png
137
+
138
+ 8. screenshot-8.png
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
157
+ * modify layout of plugin settings page
158
+ * Added options for define the buttons image alt text
159
+ * Released Pro Version 1.6
160
+
161
+ = 1.9 =
162
+ * Released Pro Version 1.3
163
+ * Fixed all suggested issues by users
164
+ * Fixed css conflict issues
165
+ * Added Stumbleupon and Reddit buttons to social share buttons
166
+ * Minify CSS
167
+
168
+ = 1.8 =
169
+ * Released Pro Version 1.1
170
+ * Added new bottom position option for floating sidebar
171
+ * Modify CSS
172
+
173
+ = 1.7 =
174
+ * Released Pro Version
175
+ * Added an option disable floating sidebar on home page
176
+ * Fixed share url issue on home page
177
+
178
+ = 1.6 =
179
+ * Added new option for disable floating sidebar for mobile site
180
+ * Added two new Stumbleupon and Reddit buttons
181
+ * Added options for define Pinterest Share images
182
+ * Fixed show/hide button issue
183
+
184
+ = 1.5 =
185
+ * Make plugin settings page more stylish
186
+ * Added a new option for remove show/hide buttions
187
+ * Added an option for change position of social share buttons
188
+ * Make "Share This!" button text editable
189
+ * Add Youtube button
190
+ * Change image opacity on hover
191
+
192
+ = 1.4 =
193
+ * Added an options for define the background color of custom social share buttons
194
+ * Added a new options for show/hide the buttions, so now if you will be click on hide buttons and then go to next page OR reload same page,then buttons will be not publish in front end,so buttons status will be remain until you will not change the their status by click on show/hide buttons
195
+ * Added an options for manage the general text (like "Show buttons", "Hide buttons"..etc)
196
+ * Fixed some JS issues
197
+
198
+ = 1.3 =
199
+ * Added an options for add the social share buttons on bottom of the content on every post/pages
200
 
201
  = 1.2 =
202
+ * Fixed button image gap issue for right position
203
+ * Added new option for set the delay time to publish the share butttons
204
+
205
  = 1.1 =
206
+ * Fixed the right float sidebar issue
207
+ * Added new option for define the margin from TOP
208
+ * Added the show/hide buttons
209
+ * On Mail buttons :by default set current page title as a mail subject-line and page link in mail-body
210
 
211
  = 1.0 =
212
  * First stable release