WordPress Social Sharing Plugin – Sassy Social Share - Version 3.2.24

Version Description

  • [Bugfix] Facebook share count was not working in some cases
Download this release

Release Info

Developer Heateor
Plugin Icon 128x128 WordPress Social Sharing Plugin – Sassy Social Share
Version 3.2.24
Comparing to
See all releases

Code changes from version 3.2.23 to 3.2.24

admin/class-sassy-social-share-admin.php CHANGED
@@ -669,6 +669,14 @@ class Sassy_Social_Share_Admin {
669
  heateor_sss_update_svg_css( $this->options['vertical_font_color_hover'], 'sassy-social-share-hover-svg-vertical' );
670
  }
671
 
 
 
 
 
 
 
 
 
672
  if ( version_compare( '3.2.20', $current_version ) > 0 ) {
673
  $this->options['fb_key'] = '';
674
  $this->options['fb_secret'] = '';
669
  heateor_sss_update_svg_css( $this->options['vertical_font_color_hover'], 'sassy-social-share-hover-svg-vertical' );
670
  }
671
 
672
+ if ( version_compare( '3.2.24', $current_version ) > 0 ) {
673
+ if ( ! $this->options['fb_key'] && ! $this->options['fb_secret'] && $this->options['vertical_fb_key'] && $this->options['vertical_fb_secret'] ) {
674
+ $this->options['fb_key'] = $this->options['vertical_fb_key'];
675
+ $this->options['fb_secret'] = $this->options['vertical_fb_secret'];
676
+ }
677
+ update_option( 'heateor_sss', $this->options );
678
+ }
679
+
680
  if ( version_compare( '3.2.20', $current_version ) > 0 ) {
681
  $this->options['fb_key'] = '';
682
  $this->options['fb_secret'] = '';
admin/js/sassy-social-share-options.js CHANGED
@@ -250,15 +250,12 @@ function heateorSssVerticalCounterPreview(val){
250
  }
251
 
252
  function heateor_sss_toggle_fb_share_count_options() {
253
- if(heateorSssHorizontalFacebookShareEnabled && (heateorSssHorizontalShares || heateorSssHorizontalTotalShares)){
254
  jQuery('#heateor_sss_fb_share_count_options').css('display', 'table-row-group');
 
255
  }else{
256
  jQuery('#heateor_sss_fb_share_count_options').css('display', 'none');
257
- }
258
- if(heateorSssVerticalFacebookShareEnabled && (heateorSssVerticalShares || heateorSssVerticalTotalShares)){
259
- jQuery('#heateor_sss_fb_vertical_share_count_options').css('display', 'table-row-group');
260
- }else{
261
- jQuery('#heateor_sss_fb_vertical_share_count_options').css('display', 'none');
262
  }
263
  }
264
 
250
  }
251
 
252
  function heateor_sss_toggle_fb_share_count_options() {
253
+ if((heateorSssHorizontalFacebookShareEnabled && (heateorSssHorizontalShares || heateorSssHorizontalTotalShares)) || (heateorSssVerticalFacebookShareEnabled && (heateorSssVerticalShares || heateorSssVerticalTotalShares))){
254
  jQuery('#heateor_sss_fb_share_count_options').css('display', 'table-row-group');
255
+ jQuery('.heateor_sss_fb_share_count_msg').css('display', 'table-row-group');
256
  }else{
257
  jQuery('#heateor_sss_fb_share_count_options').css('display', 'none');
258
+ jQuery('.heateor_sss_fb_share_count_msg').css('display', 'none');
 
 
 
 
259
  }
260
  }
261
 
admin/partials/sassy-social-share-options-page.php CHANGED
@@ -785,7 +785,7 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
785
  $likeButtons = array( 'facebook_share', 'facebook_like', 'facebook_recommend', 'twitter_tweet', 'linkedin_share', 'pinterest_pin', 'buffer_share', 'xing_share', 'yummly_share', 'reddit_badge' );
786
  $sharingNetworks = array( 'facebook', 'twitter', 'linkedin', 'print', 'email', 'reddit', 'digg', 'float_it', 'tumblr', 'vkontakte', 'pinterest', 'xing', 'whatsapp', 'instagram', 'yummly', 'buffer', 'AIM', 'Amazon_Wish_List', 'AOL_Mail', 'App.net', 'Balatarin', 'BibSonomy', 'Bitty_Browser', 'Blinklist', 'Blogger_Post', 'BlogMarks', 'Bookmarks.fr', 'Box.net', 'BuddyMarks', 'Care2_News', 'CiteULike', 'Comment', 'Copy_Link', 'Diary.Ru', 'Diaspora', 'Diigo', 'Douban', 'Draugiem', 'DZone', 'Evernote', 'Facebook_Messenger', 'Fark', 'Fintel', 'Flipboard', 'Folkd', 'GentleReader', 'Google_Bookmarks', 'Google_Classroom', 'Google_Gmail', 'Hacker_News', 'Hatena', 'Instapaper', 'Jamespot', 'Kakao', 'Kik', 'Kindle_It', 'Known', 'Line', 'LiveJournal', 'Mail.Ru', 'Mendeley', 'Meneame', 'MeWe', 'mix', 'Mixi', 'MySpace', 'Netvouz', 'Odnoklassniki', 'Outlook.com', 'Papaly', 'Pinboard', 'Plurk', 'Pocket', 'PrintFriendly', 'Protopage_Bookmarks', 'Pusha', 'Qzone', 'Rediff MyPage', 'Refind', 'Renren', 'Sina Weibo', 'SiteJot', 'Skype', 'Slashdot', 'SMS', 'StockTwits', 'Svejo', 'Symbaloo_Feeds', 'Telegram', 'Threema', 'Trello', 'Tuenti', 'Twiddla', 'TypePad_Post', 'Viadeo', 'Viber', 'Wanelo', 'Webnews', 'WordPress', 'Wykop', 'Yahoo_Mail', 'Yoolink' );
787
  ?>
788
-
789
  <tr>
790
  <th>
791
  <img id="heateor_sss_rearrange_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
@@ -1018,6 +1018,16 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
1018
  </td>
1019
  </tr>
1020
 
 
 
 
 
 
 
 
 
 
 
1021
  <tr>
1022
  <th>
1023
  <img id="heateor_sss_count_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
@@ -1058,58 +1068,6 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
1058
  </div>
1059
  </td>
1060
  </tr>
1061
- <?php
1062
- $facebook_app_id = '';
1063
- if ( $options['fb_key'] ) {
1064
- $facebook_app_id = $options['fb_key'];
1065
- } elseif ( $options['vertical_fb_key'] ) {
1066
- $facebook_app_id = $options['vertical_fb_key'];
1067
- }
1068
-
1069
- $facebook_app_secret = '';
1070
- if ( $options['fb_secret'] ) {
1071
- $facebook_app_secret = $options['fb_secret'];
1072
- } elseif ( $options['vertical_fb_secret'] ) {
1073
- $facebook_app_secret = $options['vertical_fb_secret'];
1074
- }
1075
- ?>
1076
- <tbody id="heateor_sss_fb_share_count_options" <?php echo ! ( in_array( 'facebook', $options['horizontal_re_providers'] ) && ( isset( $options['horizontal_counts'] ) || isset( $options['horizontal_total_shares'] ) ) ) ? 'style = "display: none"' : '';?> >
1077
- <tr>
1078
- <th>
1079
- <img id="heateor_sss_fb_key_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
1080
- <label for="heateor_sss_fb_key"><?php _e( "Facebook App ID", 'sassy-social-share' ); ?></label>
1081
- </th>
1082
- <td>
1083
- <input id="heateor_sss_fb_key" name="heateor_sss[fb_key]" type="text" value="<?php echo $facebook_app_id ?>" />
1084
- </td>
1085
- </tr>
1086
-
1087
- <tr class="heateor_sss_help_content" id="heateor_sss_fb_key_help_cont">
1088
- <td colspan="2">
1089
- <div>
1090
- <?php echo sprintf( __( 'Required for Facebook share count to work. Please follow the documentation at <a href="%s" target="_blank">this link</a> to get Facebook App ID', 'sassy-social-share' ), 'http://support.heateor.com/how-to-get-facebook-app-id/' ) ?>
1091
- </div>
1092
- </td>
1093
- </tr>
1094
-
1095
- <tr>
1096
- <th>
1097
- <img id="heateor_sss_fb_secret_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
1098
- <label for="heateor_sss_fblogin_secret"><?php _e( "Facebook App Secret", 'sassy-social-share' ); ?></label>
1099
- </th>
1100
- <td>
1101
- <input id="heateor_sss_fblogin_secret" name="heateor_sss[fb_secret]" type="text" value="<?php echo $facebook_app_secret ?>" />
1102
- </td>
1103
- </tr>
1104
-
1105
- <tr class="heateor_sss_help_content" id="heateor_sss_fb_secret_help_cont">
1106
- <td colspan="2">
1107
- <div>
1108
- <?php echo sprintf( __( 'Required for Facebook share count to work. Please follow the documentation at <a href="%s" target="_blank">this link</a> to get Facebook App Secret', 'sassy-social-share' ), 'http://support.heateor.com/how-to-get-facebook-app-id/' ) ?>
1109
- </div>
1110
- </td>
1111
- </tr>
1112
- </tbody>
1113
 
1114
  <tr>
1115
  <th>
@@ -1230,7 +1188,7 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
1230
  <tr>
1231
  <th>
1232
  <img id="heateor_sss_vertical_rearrange_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
1233
- <label><?php _e("Rearrange icons", 'sassy-social-share' ); ?></label>
1234
  </th>
1235
  </tr>
1236
 
@@ -1491,7 +1449,17 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
1491
  </div>
1492
  </td>
1493
  </tr>
1494
-
 
 
 
 
 
 
 
 
 
 
1495
  <tr>
1496
  <th>
1497
  <img id="heateor_sss_vertical_count_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
@@ -1533,44 +1501,6 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
1533
  </td>
1534
  </tr>
1535
 
1536
- <tbody id="heateor_sss_fb_vertical_share_count_options" <?php echo ! ( in_array( 'facebook', $options['vertical_re_providers'] ) && ( isset( $options['vertical_counts'] ) || isset( $options['vertical_total_shares'] ) ) ) ? 'style = "display: none"' : '';?> >
1537
- <tr>
1538
- <th>
1539
- <img id="heateor_sss_vertical_fb_key_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
1540
- <label for="heateor_sss_vertical_fb_key"><?php _e( "Facebook App ID", 'sassy-social-share' ); ?></label>
1541
- </th>
1542
- <td>
1543
- <input id="heateor_sss_vertical_fb_key" name="heateor_sss[vertical_fb_key]" type="text" value="<?php echo $facebook_app_id ?>" />
1544
- </td>
1545
- </tr>
1546
-
1547
- <tr class="heateor_sss_help_content" id="heateor_sss_vertical_fb_key_help_cont">
1548
- <td colspan="2">
1549
- <div>
1550
- <?php echo sprintf( __( 'Required for Facebook share count to work. Please follow the documentation at <a href="%s" target="_blank">this link</a> to get Facebook App ID', 'sassy-social-share' ), 'http://support.heateor.com/how-to-get-facebook-app-id/' ) ?>
1551
- </div>
1552
- </td>
1553
- </tr>
1554
-
1555
- <tr>
1556
- <th>
1557
- <img id="heateor_sss_vertical_fb_secret_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
1558
- <label for="heateor_sss_vertical_fb_secret"><?php _e( "Facebook App Secret", 'sassy-social-share' ); ?></label>
1559
- </th>
1560
- <td>
1561
- <input id="heateor_sss_vertical_fb_secret" name="heateor_sss[vertical_fb_secret]" type="text" value="<?php echo $facebook_app_secret; ?>" />
1562
- </td>
1563
- </tr>
1564
-
1565
- <tr class="heateor_sss_help_content" id="heateor_sss_vertical_fb_secret_help_cont">
1566
- <td colspan="2">
1567
- <div>
1568
- <?php echo sprintf( __( 'Required for Facebook share count to work. Please follow the documentation at <a href="%s" target="_blank">this link</a> to get Facebook App Secret', 'sassy-social-share' ), 'http://support.heateor.com/how-to-get-facebook-app-id/' ) ?>
1569
- </div>
1570
- </td>
1571
- </tr>
1572
- </tbody>
1573
-
1574
  <tr>
1575
  <th>
1576
  <img id="heateor_sss_vmore_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
@@ -1682,6 +1612,44 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
1682
  <h3><label><?php _e( 'Miscellaneous', 'sassy-social-share' ) ?></label></h3>
1683
  <div class="inside">
1684
  <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1685
  <tr>
1686
  <th>
1687
  <img id="heateor_sss_footer_script_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
@@ -2063,12 +2031,12 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
2063
  <h3><label><?php _e( 'FAQ', 'sassy-social-share' ) ?></label></h3>
2064
  <div class="inside faq" style="padding-left:8px">
2065
  <p><?php _e( '<strong>Note:</strong> Plugin will not work on local server. You should have an online website for the plugin to function properly.', 'sassy-social-share' ); ?></p>
2066
- <p>
2067
  <p><a href="http://support.heateor.com/why-is-sharer-not-showing-the-correct-image-title-and-other-meta-tags-content" target="_blank"><?php _e( 'Why is sharer not showing the correct image, title and other meta tags content?', 'sassy-social-share' ) ?></a></p>
 
 
2068
  <p><a href="http://support.heateor.com/how-to-customize-the-url-being-shared" target="_blank"><?php _e( 'How to Customize the Url being Shared?', 'sassy-social-share' ) ?></a></p>
2069
  <a href="javascript:void(0)"><?php _e( 'Why is Instagram icon redirecting to Instagram website?', 'sassy-social-share' ); ?></a>
2070
  <div><?php _e( 'Instagram icon is there to send website visitors to the Instagram page of your choice. You can save the desired Instagram handle in "Instagram Username" option in "Standard Interface" and "Floating Interface" sections.', 'sassy-social-share' ); ?></div>
2071
- </p>
2072
  <p>
2073
  <a href="javascript:void(0)"><?php _e( 'Why are Twitter shares not appearing even after registering at Twitcount.com?', 'sassy-social-share' ); ?></a>
2074
  <div><?php _e( "It takes some time for their service to track the shares made on Twitter from your website. If you still feel it's taking too long you can contact their support directly from their website.", 'sassy-social-share' ); ?></div>
@@ -2111,10 +2079,7 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
2111
  <div class="stuffbox">
2112
  <h3><label>Instagram Shoutout</label></h3>
2113
  <div class="inside" style="padding-left:7px">
2114
- <p><?php _e( 'If you can send (to hello@heateor.com) how our plugin is helping your business, we can share it on Instagram. You can also send any relevant hashtags and people to mention in the Instagram post.', 'sassy-social-share' ) ?></p>
2115
- <p><?php _e( '<b>Example</b> - Blah-Blah Online Coaching teaches various programming language courses through their website. They have emerged as one of the most popular online coaching websites in the past year. Anyone can become proficient in programming language of their choice in a very easy way in no time.', 'sassy-social-share' ) ?></p>
2116
- <p><?php _e( '@blahblahonlinecoaching proudly use #SassySocialShare to share content of their website. Be sure to visit their website at
2117
- blahblahonlinecoaching.com where you can browse a variety of programming language courses.', 'sassy-social-share' ) ?></p>
2118
  </div>
2119
  </div>
2120
  </div>
785
  $likeButtons = array( 'facebook_share', 'facebook_like', 'facebook_recommend', 'twitter_tweet', 'linkedin_share', 'pinterest_pin', 'buffer_share', 'xing_share', 'yummly_share', 'reddit_badge' );
786
  $sharingNetworks = array( 'facebook', 'twitter', 'linkedin', 'print', 'email', 'reddit', 'digg', 'float_it', 'tumblr', 'vkontakte', 'pinterest', 'xing', 'whatsapp', 'instagram', 'yummly', 'buffer', 'AIM', 'Amazon_Wish_List', 'AOL_Mail', 'App.net', 'Balatarin', 'BibSonomy', 'Bitty_Browser', 'Blinklist', 'Blogger_Post', 'BlogMarks', 'Bookmarks.fr', 'Box.net', 'BuddyMarks', 'Care2_News', 'CiteULike', 'Comment', 'Copy_Link', 'Diary.Ru', 'Diaspora', 'Diigo', 'Douban', 'Draugiem', 'DZone', 'Evernote', 'Facebook_Messenger', 'Fark', 'Fintel', 'Flipboard', 'Folkd', 'GentleReader', 'Google_Bookmarks', 'Google_Classroom', 'Google_Gmail', 'Hacker_News', 'Hatena', 'Instapaper', 'Jamespot', 'Kakao', 'Kik', 'Kindle_It', 'Known', 'Line', 'LiveJournal', 'Mail.Ru', 'Mendeley', 'Meneame', 'MeWe', 'mix', 'Mixi', 'MySpace', 'Netvouz', 'Odnoklassniki', 'Outlook.com', 'Papaly', 'Pinboard', 'Plurk', 'Pocket', 'PrintFriendly', 'Protopage_Bookmarks', 'Pusha', 'Qzone', 'Rediff MyPage', 'Refind', 'Renren', 'Sina Weibo', 'SiteJot', 'Skype', 'Slashdot', 'SMS', 'StockTwits', 'Svejo', 'Symbaloo_Feeds', 'Telegram', 'Threema', 'Trello', 'Tuenti', 'Twiddla', 'TypePad_Post', 'Viadeo', 'Viber', 'Wanelo', 'Webnews', 'WordPress', 'Wykop', 'Yahoo_Mail', 'Yoolink' );
787
  ?>
788
+
789
  <tr>
790
  <th>
791
  <img id="heateor_sss_rearrange_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
1018
  </td>
1019
  </tr>
1020
 
1021
+ <tbody class="heateor_sss_fb_share_count_msg" <?php echo ! ( ( ( in_array( 'facebook', $options['vertical_re_providers'] ) && ( isset( $options['vertical_counts'] ) || isset( $options['vertical_total_shares'] ) ) ) || ( in_array( 'facebook', $options['horizontal_re_providers'] ) && ( isset( $options['horizontal_counts'] ) || isset( $options['horizontal_total_shares'] ) ) ) ) && ! $options['fb_key'] && ! $options['fb_secret'] ) ? 'style = "display: none"' : '';?>>
1022
+ <tr>
1023
+ <td colspan="2">
1024
+ <div style="color:green">
1025
+ <?php _e( 'Save Facebook App Id and Secret in the "Miscellaneous" section for Facebook share count to work', 'sassy-social-share' ) ?>
1026
+ </div>
1027
+ </td>
1028
+ </tr>
1029
+ </tbody>
1030
+
1031
  <tr>
1032
  <th>
1033
  <img id="heateor_sss_count_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
1068
  </div>
1069
  </td>
1070
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1071
 
1072
  <tr>
1073
  <th>
1188
  <tr>
1189
  <th>
1190
  <img id="heateor_sss_vertical_rearrange_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
1191
+ <label><?php _e( "Rearrange icons", 'sassy-social-share' ); ?></label>
1192
  </th>
1193
  </tr>
1194
 
1449
  </div>
1450
  </td>
1451
  </tr>
1452
+
1453
+ <tbody class="heateor_sss_fb_share_count_msg" <?php echo ! ( ( ( in_array( 'facebook', $options['vertical_re_providers'] ) && ( isset( $options['vertical_counts'] ) || isset( $options['vertical_total_shares'] ) ) ) || ( in_array( 'facebook', $options['horizontal_re_providers'] ) && ( isset( $options['horizontal_counts'] ) || isset( $options['horizontal_total_shares'] ) ) ) ) && ! $options['fb_key'] && ! $options['fb_secret'] ) ? 'style = "display: none"' : '';?>>
1454
+ <tr>
1455
+ <td colspan="2">
1456
+ <div style="color:green">
1457
+ <?php _e( 'Save Facebook App Id and Secret in the "Miscellaneous" section for Facebook share count to work', 'sassy-social-share' ) ?>
1458
+ </div>
1459
+ </td>
1460
+ </tr>
1461
+ </tbody>
1462
+
1463
  <tr>
1464
  <th>
1465
  <img id="heateor_sss_vertical_count_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
1501
  </td>
1502
  </tr>
1503
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1504
  <tr>
1505
  <th>
1506
  <img id="heateor_sss_vmore_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
1612
  <h3><label><?php _e( 'Miscellaneous', 'sassy-social-share' ) ?></label></h3>
1613
  <div class="inside">
1614
  <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
1615
+ <tbody id="heateor_sss_fb_share_count_options" <?php echo ! ( ( in_array( 'facebook', $options['vertical_re_providers'] ) && ( isset( $options['vertical_counts'] ) || isset( $options['vertical_total_shares'] ) ) ) || ( in_array( 'facebook', $options['horizontal_re_providers'] ) && ( isset( $options['horizontal_counts'] ) || isset( $options['horizontal_total_shares'] ) ) ) ) ? 'style = "display: none"' : '';?> >
1616
+ <tr>
1617
+ <th>
1618
+ <img id="heateor_sss_fb_key_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
1619
+ <label for="heateor_sss_fb_key"><?php _e( "Facebook App ID", 'sassy-social-share' ); ?></label>
1620
+ </th>
1621
+ <td>
1622
+ <input id="heateor_sss_fb_key" name="heateor_sss[fb_key]" type="text" value="<?php echo $options['fb_key'] ?>" />
1623
+ </td>
1624
+ </tr>
1625
+
1626
+ <tr class="heateor_sss_help_content" id="heateor_sss_fb_key_help_cont">
1627
+ <td colspan="2">
1628
+ <div>
1629
+ <?php echo sprintf( __( 'Required for Facebook share count to work. Please follow the documentation at <a href="%s" target="_blank">this link</a> to get Facebook App ID', 'sassy-social-share' ), 'http://support.heateor.com/how-to-get-facebook-app-id/' ) ?>
1630
+ </div>
1631
+ </td>
1632
+ </tr>
1633
+
1634
+ <tr>
1635
+ <th>
1636
+ <img id="heateor_sss_fb_secret_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
1637
+ <label for="heateor_sss_fblogin_secret"><?php _e( "Facebook App Secret", 'sassy-social-share' ); ?></label>
1638
+ </th>
1639
+ <td>
1640
+ <input id="heateor_sss_fblogin_secret" name="heateor_sss[fb_secret]" type="text" value="<?php echo $options['fb_secret'] ?>" />
1641
+ </td>
1642
+ </tr>
1643
+
1644
+ <tr class="heateor_sss_help_content" id="heateor_sss_fb_secret_help_cont">
1645
+ <td colspan="2">
1646
+ <div>
1647
+ <?php echo sprintf( __( 'Required for Facebook share count to work. Please follow the documentation at <a href="%s" target="_blank">this link</a> to get Facebook App Secret', 'sassy-social-share' ), 'http://support.heateor.com/how-to-get-facebook-app-id/' ) ?>
1648
+ </div>
1649
+ </td>
1650
+ </tr>
1651
+ </tbody>
1652
+
1653
  <tr>
1654
  <th>
1655
  <img id="heateor_sss_footer_script_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
2031
  <h3><label><?php _e( 'FAQ', 'sassy-social-share' ) ?></label></h3>
2032
  <div class="inside faq" style="padding-left:8px">
2033
  <p><?php _e( '<strong>Note:</strong> Plugin will not work on local server. You should have an online website for the plugin to function properly.', 'sassy-social-share' ); ?></p>
 
2034
  <p><a href="http://support.heateor.com/why-is-sharer-not-showing-the-correct-image-title-and-other-meta-tags-content" target="_blank"><?php _e( 'Why is sharer not showing the correct image, title and other meta tags content?', 'sassy-social-share' ) ?></a></p>
2035
+ <a href="javascript:void(0)"><?php _e( 'Why is Facebook share count not working?', 'sassy-social-share' ); ?></a>
2036
+ <div><?php _e( 'Save Facebook App Id and Secret in the "Miscellaneous" section for Facebook share count to work', 'sassy-social-share' ); ?></div>
2037
  <p><a href="http://support.heateor.com/how-to-customize-the-url-being-shared" target="_blank"><?php _e( 'How to Customize the Url being Shared?', 'sassy-social-share' ) ?></a></p>
2038
  <a href="javascript:void(0)"><?php _e( 'Why is Instagram icon redirecting to Instagram website?', 'sassy-social-share' ); ?></a>
2039
  <div><?php _e( 'Instagram icon is there to send website visitors to the Instagram page of your choice. You can save the desired Instagram handle in "Instagram Username" option in "Standard Interface" and "Floating Interface" sections.', 'sassy-social-share' ); ?></div>
 
2040
  <p>
2041
  <a href="javascript:void(0)"><?php _e( 'Why are Twitter shares not appearing even after registering at Twitcount.com?', 'sassy-social-share' ); ?></a>
2042
  <div><?php _e( "It takes some time for their service to track the shares made on Twitter from your website. If you still feel it's taking too long you can contact their support directly from their website.", 'sassy-social-share' ); ?></div>
2079
  <div class="stuffbox">
2080
  <h3><label>Instagram Shoutout</label></h3>
2081
  <div class="inside" style="padding-left:7px">
2082
+ <p><?php _e( 'If you can send (to hello@heateor.com) how this plugin is helping your business, we would be glad to shoutout on Instagram. You can also send any relevant hashtags and people to mention in the Instagram post.', 'sassy-social-share' ) ?></p>
 
 
 
2083
  </div>
2084
  </div>
2085
  </div>
languages/sassy-social-share.pot CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Sassy Social Share\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2019-04-19 16:11+0530\n"
6
- "PO-Revision-Date: 2019-04-19 16:11+0530\n"
7
  "Last-Translator: Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <hello@heateor.com>\n"
9
  "Language: en_IN\n"
@@ -132,7 +132,7 @@ msgid "Settings"
132
  msgstr ""
133
 
134
  #: ../admin/partials/sassy-social-share-options-page.php:16
135
- #: ../admin/partials/sassy-social-share-options-page.php:2106
136
  #, php-format
137
  msgid ""
138
  "You can appreciate the effort put in this free plugin by rating it <a href="
@@ -152,7 +152,7 @@ msgid "Floating Interface"
152
  msgstr ""
153
 
154
  #: ../admin/partials/sassy-social-share-options-page.php:27
155
- #: ../admin/partials/sassy-social-share-options-page.php:1682
156
  msgid "Miscellaneous"
157
  msgstr ""
158
 
@@ -161,8 +161,8 @@ msgid "3rd Party Integration"
161
  msgstr ""
162
 
163
  #: ../admin/partials/sassy-social-share-options-page.php:35
164
- #: ../admin/partials/sassy-social-share-options-page.php:2030
165
- #: ../admin/partials/sassy-social-share-options-page.php:2032
166
  msgid "Shortcode & Widget"
167
  msgstr ""
168
 
@@ -171,7 +171,7 @@ msgid "Troubleshooter"
171
  msgstr ""
172
 
173
  #: ../admin/partials/sassy-social-share-options-page.php:37
174
- #: ../admin/partials/sassy-social-share-options-page.php:2063
175
  msgid "FAQ"
176
  msgstr ""
177
 
@@ -198,13 +198,13 @@ msgstr ""
198
 
199
  #: ../admin/partials/sassy-social-share-options-page.php:133
200
  #: ../admin/partials/sassy-social-share-options-page.php:441
201
- #: ../includes/class-sassy-social-share-widgets.php:650
202
  msgid "Round"
203
  msgstr ""
204
 
205
  #: ../admin/partials/sassy-social-share-options-page.php:135
206
  #: ../admin/partials/sassy-social-share-options-page.php:443
207
- #: ../includes/class-sassy-social-share-widgets.php:651
208
  msgid "Square"
209
  msgstr ""
210
 
@@ -293,7 +293,7 @@ msgstr ""
293
 
294
  #: ../admin/partials/sassy-social-share-options-page.php:270
295
  #: ../admin/partials/sassy-social-share-options-page.php:578
296
- #: ../admin/partials/sassy-social-share-options-page.php:1344
297
  #: ../includes/class-sassy-social-share-widgets.php:433
298
  msgid "Background Color"
299
  msgstr ""
@@ -344,7 +344,7 @@ msgstr ""
344
  #: ../admin/partials/sassy-social-share-options-page.php:320
345
  #: ../admin/partials/sassy-social-share-options-page.php:627
346
  #: ../admin/partials/sassy-social-share-options-page.php:909
347
- #: ../admin/partials/sassy-social-share-options-page.php:1366
348
  #: ../includes/class-sassy-social-share-widgets.php:419
349
  msgid "Left"
350
  msgstr ""
@@ -357,7 +357,7 @@ msgstr ""
357
  #: ../admin/partials/sassy-social-share-options-page.php:324
358
  #: ../admin/partials/sassy-social-share-options-page.php:631
359
  #: ../admin/partials/sassy-social-share-options-page.php:911
360
- #: ../admin/partials/sassy-social-share-options-page.php:1367
361
  #: ../includes/class-sassy-social-share-widgets.php:420
362
  msgid "Right"
363
  msgstr ""
@@ -409,32 +409,32 @@ msgid "Master control to enable standard sharing"
409
  msgstr ""
410
 
411
  #: ../admin/partials/sassy-social-share-options-page.php:692
412
- #: ../admin/partials/sassy-social-share-options-page.php:1170
413
  msgid "Target Url"
414
  msgstr ""
415
 
416
  #: ../admin/partials/sassy-social-share-options-page.php:696
417
- #: ../admin/partials/sassy-social-share-options-page.php:1174
418
  msgid "Url of the webpage where icons are located (default)"
419
  msgstr ""
420
 
421
  #: ../admin/partials/sassy-social-share-options-page.php:698
422
- #: ../admin/partials/sassy-social-share-options-page.php:1176
423
  msgid "Url of the homepage of your website"
424
  msgstr ""
425
 
426
  #: ../admin/partials/sassy-social-share-options-page.php:700
427
- #: ../admin/partials/sassy-social-share-options-page.php:1178
428
  msgid "Custom url"
429
  msgstr ""
430
 
431
  #: ../admin/partials/sassy-social-share-options-page.php:707
432
- #: ../admin/partials/sassy-social-share-options-page.php:1185
433
  msgid "Url to share"
434
  msgstr ""
435
 
436
  #: ../admin/partials/sassy-social-share-options-page.php:715
437
- #: ../includes/class-sassy-social-share-widgets.php:644
438
  msgid "Title"
439
  msgstr ""
440
 
@@ -443,56 +443,56 @@ msgid "The text to display above the sharing interface"
443
  msgstr ""
444
 
445
  #: ../admin/partials/sassy-social-share-options-page.php:749
446
- #: ../admin/partials/sassy-social-share-options-page.php:1194
447
  msgid "Instagram username"
448
  msgstr ""
449
 
450
  #: ../admin/partials/sassy-social-share-options-page.php:759
451
- #: ../admin/partials/sassy-social-share-options-page.php:1204
452
  msgid ""
453
  "Username of the Instagram account you want to redirect users to, on clicking "
454
  "the icon"
455
  msgstr ""
456
 
457
  #: ../admin/partials/sassy-social-share-options-page.php:769
458
- #: ../admin/partials/sassy-social-share-options-page.php:1214
459
  msgid "HTML ID of container element of comment form"
460
  msgstr ""
461
 
462
  #: ../admin/partials/sassy-social-share-options-page.php:779
463
- #: ../admin/partials/sassy-social-share-options-page.php:1224
464
  msgid ""
465
  "HTML ID of the element you want to focus on the webpage, on click of Comment "
466
  "icon."
467
  msgstr ""
468
 
469
  #: ../admin/partials/sassy-social-share-options-page.php:792
470
- #: ../admin/partials/sassy-social-share-options-page.php:1233
471
  msgid "Rearrange icons"
472
  msgstr ""
473
 
474
  #: ../admin/partials/sassy-social-share-options-page.php:853
475
- #: ../admin/partials/sassy-social-share-options-page.php:1292
476
  msgid "Drag the icons to rearrange in desired order"
477
  msgstr ""
478
 
479
  #: ../admin/partials/sassy-social-share-options-page.php:861
480
- #: ../admin/partials/sassy-social-share-options-page.php:1300
481
  msgid "Select Sharing Services"
482
  msgstr ""
483
 
484
  #: ../admin/partials/sassy-social-share-options-page.php:868
485
- #: ../admin/partials/sassy-social-share-options-page.php:1307
486
  msgid "Select sharing services to show in social share bar"
487
  msgstr ""
488
 
489
  #: ../admin/partials/sassy-social-share-options-page.php:886
490
- #: ../admin/partials/sassy-social-share-options-page.php:1325
491
  msgid "Search social network"
492
  msgstr ""
493
 
494
  #: ../admin/partials/sassy-social-share-options-page.php:905
495
- #: ../admin/partials/sassy-social-share-options-page.php:1362
496
  msgid "Horizontal alignment"
497
  msgstr ""
498
 
@@ -501,7 +501,7 @@ msgid "Center"
501
  msgstr ""
502
 
503
  #: ../admin/partials/sassy-social-share-options-page.php:919
504
- #: ../admin/partials/sassy-social-share-options-page.php:1375
505
  msgid "Horizontal alignment of the sharing interface"
506
  msgstr ""
507
 
@@ -522,37 +522,37 @@ msgid "Specify position of the sharing interface with respect to the content"
522
  msgstr ""
523
 
524
  #: ../admin/partials/sassy-social-share-options-page.php:948
525
- #: ../admin/partials/sassy-social-share-options-page.php:1441
526
  msgid "Placement"
527
  msgstr ""
528
 
529
  #: ../admin/partials/sassy-social-share-options-page.php:952
530
- #: ../admin/partials/sassy-social-share-options-page.php:1445
531
  msgid "Homepage"
532
  msgstr ""
533
 
534
  #: ../admin/partials/sassy-social-share-options-page.php:954
535
- #: ../admin/partials/sassy-social-share-options-page.php:1447
536
  msgid "Posts"
537
  msgstr ""
538
 
539
  #: ../admin/partials/sassy-social-share-options-page.php:956
540
- #: ../admin/partials/sassy-social-share-options-page.php:1449
541
  msgid "Pages"
542
  msgstr ""
543
 
544
  #: ../admin/partials/sassy-social-share-options-page.php:958
545
- #: ../admin/partials/sassy-social-share-options-page.php:1451
546
  msgid "Excerpts and Posts page"
547
  msgstr ""
548
 
549
  #: ../admin/partials/sassy-social-share-options-page.php:960
550
- #: ../admin/partials/sassy-social-share-options-page.php:1453
551
  msgid "Category Archives"
552
  msgstr ""
553
 
554
  #: ../admin/partials/sassy-social-share-options-page.php:962
555
- #: ../admin/partials/sassy-social-share-options-page.php:1455
556
  msgid "Archive Pages (Category, Tag, Author or Date based pages)"
557
  msgstr ""
558
 
@@ -565,12 +565,12 @@ msgid "BuddyPress group (only at top of content)"
565
  msgstr ""
566
 
567
  #: ../admin/partials/sassy-social-share-options-page.php:986
568
- #: ../admin/partials/sassy-social-share-options-page.php:1477
569
  msgid "BBPress forum"
570
  msgstr ""
571
 
572
  #: ../admin/partials/sassy-social-share-options-page.php:989
573
- #: ../admin/partials/sassy-social-share-options-page.php:1480
574
  msgid "BBPress topic"
575
  msgstr ""
576
 
@@ -594,20 +594,28 @@ msgstr ""
594
  msgid "Specify the pages where you want to enable Sharing interface"
595
  msgstr ""
596
 
597
- #: ../admin/partials/sassy-social-share-options-page.php:1024
598
- #: ../admin/partials/sassy-social-share-options-page.php:1498
 
 
 
 
 
 
 
 
599
  msgid "Show share counts"
600
  msgstr ""
601
 
602
- #: ../admin/partials/sassy-social-share-options-page.php:1029
603
- #: ../admin/partials/sassy-social-share-options-page.php:1503
604
  msgid ""
605
  "Share counts are supported for Facebook, Twitter, Linkedin, Buffer, Reddit, "
606
  "Pinterest, Odnoklassniki, Fintel and Vkontakte"
607
  msgstr ""
608
 
609
- #: ../admin/partials/sassy-social-share-options-page.php:1030
610
- #: ../admin/partials/sassy-social-share-options-page.php:1504
611
  #, php-format
612
  msgid ""
613
  "To show Twitter share count, you have to click \"Give me my Twitter counts "
@@ -616,72 +624,46 @@ msgid ""
616
  "their website."
617
  msgstr ""
618
 
619
- #: ../admin/partials/sassy-social-share-options-page.php:1037
620
- #: ../admin/partials/sassy-social-share-options-page.php:1511
621
  msgid "If enabled, share counts are displayed above sharing icons."
622
  msgstr ""
623
 
624
- #: ../admin/partials/sassy-social-share-options-page.php:1046
625
- #: ../admin/partials/sassy-social-share-options-page.php:1520
626
  msgid "Show total shares"
627
  msgstr ""
628
 
629
- #: ../admin/partials/sassy-social-share-options-page.php:1056
630
- #: ../admin/partials/sassy-social-share-options-page.php:1530
631
  msgid "If enabled, total shares will be displayed with sharing icons"
632
  msgstr ""
633
 
634
- #: ../admin/partials/sassy-social-share-options-page.php:1080
635
- #: ../admin/partials/sassy-social-share-options-page.php:1540
636
- msgid "Facebook App ID"
637
- msgstr ""
638
-
639
- #: ../admin/partials/sassy-social-share-options-page.php:1090
640
- #: ../admin/partials/sassy-social-share-options-page.php:1550
641
- #, php-format
642
- msgid ""
643
- "Required for Facebook share count to work. Please follow the documentation "
644
- "at <a href=\"%s\" target=\"_blank\">this link</a> to get Facebook App ID"
645
- msgstr ""
646
-
647
- #: ../admin/partials/sassy-social-share-options-page.php:1098
648
- #: ../admin/partials/sassy-social-share-options-page.php:1558
649
- msgid "Facebook App Secret"
650
- msgstr ""
651
-
652
- #: ../admin/partials/sassy-social-share-options-page.php:1108
653
- #: ../admin/partials/sassy-social-share-options-page.php:1568
654
- #, php-format
655
- msgid ""
656
- "Required for Facebook share count to work. Please follow the documentation "
657
- "at <a href=\"%s\" target=\"_blank\">this link</a> to get Facebook App Secret"
658
- msgstr ""
659
-
660
- #: ../admin/partials/sassy-social-share-options-page.php:1117
661
- #: ../admin/partials/sassy-social-share-options-page.php:1577
662
  msgid "Enable 'More' icon"
663
  msgstr ""
664
 
665
- #: ../admin/partials/sassy-social-share-options-page.php:1127
666
- #: ../admin/partials/sassy-social-share-options-page.php:1587
667
  msgid ""
668
  "If enabled, \"More\" icon will be displayed after selected sharing icons "
669
  "which shows additional sharing networks in popup"
670
  msgstr ""
671
 
672
- #: ../admin/partials/sassy-social-share-options-page.php:1144
673
  msgid "Floating Sharing Interface Options"
674
  msgstr ""
675
 
676
- #: ../admin/partials/sassy-social-share-options-page.php:1150
677
  msgid "Enable Floating sharing interface"
678
  msgstr ""
679
 
680
- #: ../admin/partials/sassy-social-share-options-page.php:1160
681
  msgid "Master control to enable floating sharing widget"
682
  msgstr ""
683
 
684
- #: ../admin/partials/sassy-social-share-options-page.php:1354
685
  msgid ""
686
  "Specify the color or hex code (example #cc78e0) for the background of "
687
  "vertical sharing bar. Leave empty for transparent. You can get the hex code "
@@ -689,131 +671,153 @@ msgid ""
689
  "\"_blank\">this link</a>"
690
  msgstr ""
691
 
692
- #: ../admin/partials/sassy-social-share-options-page.php:1384
693
  msgid "Left offset"
694
  msgstr ""
695
 
696
- #: ../admin/partials/sassy-social-share-options-page.php:1394
697
  msgid ""
698
  "Specify a number. Increase in number will shift sharing interface towards "
699
  "right and decrease will shift it towards left. Number can be negative too."
700
  msgstr ""
701
 
702
- #: ../admin/partials/sassy-social-share-options-page.php:1404
703
  msgid "Right offset"
704
  msgstr ""
705
 
706
- #: ../admin/partials/sassy-social-share-options-page.php:1414
707
  msgid ""
708
  "Specify a number. Increase in number will shift sharing interface towards "
709
  "left and decrease will shift it towards right. Number can be negative too."
710
  msgstr ""
711
 
712
- #: ../admin/partials/sassy-social-share-options-page.php:1423
713
  msgid "Top offset"
714
  msgstr ""
715
 
716
- #: ../admin/partials/sassy-social-share-options-page.php:1433
717
  msgid ""
718
  "Specify a number. Increase in number will shift sharing interface towards "
719
  "bottom and decrease will shift it towards top."
720
  msgstr ""
721
 
722
- #: ../admin/partials/sassy-social-share-options-page.php:1469
723
  msgid "BuddyPress group"
724
  msgstr ""
725
 
726
- #: ../admin/partials/sassy-social-share-options-page.php:1490
727
  msgid "Specify the pages where you want to enable vertical Sharing interface"
728
  msgstr ""
729
 
730
- #: ../admin/partials/sassy-social-share-options-page.php:1595
731
  msgid "Hide floating slider"
732
  msgstr ""
733
 
734
- #: ../admin/partials/sassy-social-share-options-page.php:1605
735
  msgid "Hides the slider arrow present below the floating share bar"
736
  msgstr ""
737
 
738
- #: ../admin/partials/sassy-social-share-options-page.php:1613
739
  msgid "Vertical floating bar responsiveness"
740
  msgstr ""
741
 
742
- #: ../admin/partials/sassy-social-share-options-page.php:1616
743
  #, php-format
744
  msgid "Display vertical interface only when screen is wider than %s pixels"
745
  msgstr ""
746
 
747
- #: ../admin/partials/sassy-social-share-options-page.php:1623
748
  msgid ""
749
  "Display vertical interface only when screen is wider than the width "
750
  "specified."
751
  msgstr ""
752
 
753
- #: ../admin/partials/sassy-social-share-options-page.php:1631
754
  msgid "Horizontal floating bar responsiveness"
755
  msgstr ""
756
 
757
- #: ../admin/partials/sassy-social-share-options-page.php:1634
758
  #, php-format
759
  msgid ""
760
  "Stick vertical floating interface horizontally at bottom only when screen is "
761
  "narrower than %s pixels"
762
  msgstr ""
763
 
764
- #: ../admin/partials/sassy-social-share-options-page.php:1641
765
  msgid ""
766
  "Stick vertical floating interface horizontally at bottom only when screen is "
767
  "narrower than the width specified"
768
  msgstr ""
769
 
770
- #: ../admin/partials/sassy-social-share-options-page.php:1651
771
  msgid "Horizontal floating bar position"
772
  msgstr ""
773
 
774
- #: ../admin/partials/sassy-social-share-options-page.php:1654
775
  #, php-format
776
  msgid "%s pixels from %s"
777
  msgstr ""
778
 
779
- #: ../admin/partials/sassy-social-share-options-page.php:1655
780
  msgid "Auto-adjust according to screen width (responsive)"
781
  msgstr ""
782
 
783
- #: ../admin/partials/sassy-social-share-options-page.php:1662
784
  msgid "Alignment of horizontal floating interface. Number can be negative too."
785
  msgstr ""
786
 
787
- #: ../admin/partials/sassy-social-share-options-page.php:1688
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
788
  msgid "Load Javascript files in footer"
789
  msgstr ""
790
 
791
- #: ../admin/partials/sassy-social-share-options-page.php:1698
792
  msgid ""
793
  "If enabled (recommended), Javascript files will be included in the footer of "
794
  "your website."
795
  msgstr ""
796
 
797
- #: ../admin/partials/sassy-social-share-options-page.php:1706
798
  msgid "Delete all the options on plugin deletion"
799
  msgstr ""
800
 
801
- #: ../admin/partials/sassy-social-share-options-page.php:1716
802
  msgid ""
803
  "If enabled, plugin options will get deleted when plugin is deleted/"
804
  "uninstalled and you will need to reconfigure the options when you install "
805
  "the plugin next time."
806
  msgstr ""
807
 
808
- #: ../admin/partials/sassy-social-share-options-page.php:1725
809
  msgid "Share Count Cache"
810
  msgstr ""
811
 
812
- #: ../admin/partials/sassy-social-share-options-page.php:1731
813
  msgid "Refresh Share Count cache every"
814
  msgstr ""
815
 
816
- #: ../admin/partials/sassy-social-share-options-page.php:1747
817
  #, php-format
818
  msgid ""
819
  "Frequent cache refreshing results in slower loading of pages with share "
@@ -821,82 +825,82 @@ msgid ""
821
  "target=\"_blank\">here</a>"
822
  msgstr ""
823
 
824
- #: ../admin/partials/sassy-social-share-options-page.php:1755
825
  msgid "Clear Share Counts Cache"
826
  msgstr ""
827
 
828
- #: ../admin/partials/sassy-social-share-options-page.php:1759
829
  msgid "Share Counts cache cleared successfully."
830
  msgstr ""
831
 
832
- #: ../admin/partials/sassy-social-share-options-page.php:1766
833
  msgid "Use this to clear cached share counts"
834
  msgstr ""
835
 
836
- #: ../admin/partials/sassy-social-share-options-page.php:1775
837
  msgid "Url shortener"
838
  msgstr ""
839
 
840
- #: ../admin/partials/sassy-social-share-options-page.php:1781
841
  msgid "Use shortlinks already installed"
842
  msgstr ""
843
 
844
- #: ../admin/partials/sassy-social-share-options-page.php:1791
845
  msgid ""
846
  "Use default short url permalinks without the need for any additional plugin"
847
  msgstr ""
848
 
849
- #: ../admin/partials/sassy-social-share-options-page.php:1799
850
  msgid "Enable bit.ly url shortener for sharing"
851
  msgstr ""
852
 
853
- #: ../admin/partials/sassy-social-share-options-page.php:1809
854
  msgid "Master control to enable bit.ly url shortening for sharing"
855
  msgstr ""
856
 
857
- #: ../admin/partials/sassy-social-share-options-page.php:1817
858
  msgid "bit.ly Login"
859
  msgstr ""
860
 
861
- #: ../admin/partials/sassy-social-share-options-page.php:1827
862
  #, php-format
863
  msgid ""
864
  "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank"
865
  "\">this link</a> to get bit.ly Login"
866
  msgstr ""
867
 
868
- #: ../admin/partials/sassy-social-share-options-page.php:1836
869
  msgid "bit.ly API Key"
870
  msgstr ""
871
 
872
- #: ../admin/partials/sassy-social-share-options-page.php:1846
873
  #, php-format
874
  msgid ""
875
  "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank"
876
  "\">this link</a> to get your API key"
877
  msgstr ""
878
 
879
- #: ../admin/partials/sassy-social-share-options-page.php:1855
880
  msgid "Clear Bitly Cache"
881
  msgstr ""
882
 
883
- #: ../admin/partials/sassy-social-share-options-page.php:1859
884
  msgid "ShortUrl cache cleared successfully."
885
  msgstr ""
886
 
887
- #: ../admin/partials/sassy-social-share-options-page.php:1866
888
  msgid ""
889
  "Use this to delete short urls saved in database. Handy, if urls of your "
890
  "website have been changed but short urls are still being generated for old "
891
  "urls."
892
  msgstr ""
893
 
894
- #: ../admin/partials/sassy-social-share-options-page.php:1875
895
- #: ../admin/partials/sassy-social-share-options-page.php:1881
896
  msgid "Language"
897
  msgstr ""
898
 
899
- #: ../admin/partials/sassy-social-share-options-page.php:1891
900
  #, php-format
901
  msgid ""
902
  "Enter the code of the language you want to use for like buttons. You can "
@@ -904,60 +908,60 @@ msgid ""
904
  "Leave it empty for default language(English)"
905
  msgstr ""
906
 
907
- #: ../admin/partials/sassy-social-share-options-page.php:1900
908
  msgid "Username in sharing"
909
  msgstr ""
910
 
911
- #: ../admin/partials/sassy-social-share-options-page.php:1906
912
  msgid "Twitter username (without @)"
913
  msgstr ""
914
 
915
- #: ../admin/partials/sassy-social-share-options-page.php:1916
916
- #: ../admin/partials/sassy-social-share-options-page.php:1935
917
  msgid ""
918
  "Provided username will be appended after the content being shared as \"via "
919
  "@USERNAME\". Leave empty if you do not want any username in the content "
920
  "being shared."
921
  msgstr ""
922
 
923
- #: ../admin/partials/sassy-social-share-options-page.php:1925
924
  msgid "Buffer username (without @)"
925
  msgstr ""
926
 
927
- #: ../admin/partials/sassy-social-share-options-page.php:1944
928
  msgid "AMP"
929
  msgstr ""
930
 
931
- #: ../admin/partials/sassy-social-share-options-page.php:1950
932
  msgid "Enable sharing on AMP pages"
933
  msgstr ""
934
 
935
- #: ../admin/partials/sassy-social-share-options-page.php:1960
936
  msgid "Enable this option to render sharing icons on AMP pages"
937
  msgstr ""
938
 
939
- #: ../admin/partials/sassy-social-share-options-page.php:1969
940
- #: ../admin/partials/sassy-social-share-options-page.php:1975
941
  msgid "Custom CSS"
942
  msgstr ""
943
 
944
- #: ../admin/partials/sassy-social-share-options-page.php:1985
945
  msgid "You can specify any additional CSS rules (without &lt;style&gt; tag)"
946
  msgstr ""
947
 
948
- #: ../admin/partials/sassy-social-share-options-page.php:2004
949
  msgid "myCRED"
950
  msgstr ""
951
 
952
- #: ../admin/partials/sassy-social-share-options-page.php:2010
953
  msgid "Append myCRED referral ID to the urls being shared"
954
  msgstr ""
955
 
956
- #: ../admin/partials/sassy-social-share-options-page.php:2043
957
  msgid "Facebook Sharing Troubleshooter"
958
  msgstr ""
959
 
960
- #: ../admin/partials/sassy-social-share-options-page.php:2048
961
  msgid ""
962
  "If Facebook sharing is not working fine, click at the following link and "
963
  "enter the problematic url (where Facebook sharing is not working properly) "
@@ -965,27 +969,31 @@ msgid ""
965
  "button."
966
  msgstr ""
967
 
968
- #: ../admin/partials/sassy-social-share-options-page.php:2065
969
  msgid ""
970
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
971
  "an online website for the plugin to function properly."
972
  msgstr ""
973
 
974
- #: ../admin/partials/sassy-social-share-options-page.php:2067
975
  msgid ""
976
  "Why is sharer not showing the correct image, title and other meta tags "
977
  "content?"
978
  msgstr ""
979
 
980
- #: ../admin/partials/sassy-social-share-options-page.php:2068
 
 
 
 
981
  msgid "How to Customize the Url being Shared?"
982
  msgstr ""
983
 
984
- #: ../admin/partials/sassy-social-share-options-page.php:2069
985
  msgid "Why is Instagram icon redirecting to Instagram website?"
986
  msgstr ""
987
 
988
- #: ../admin/partials/sassy-social-share-options-page.php:2070
989
  msgid ""
990
  "Instagram icon is there to send website visitors to the Instagram page of "
991
  "your choice. You can save the desired Instagram handle in \"Instagram "
@@ -993,118 +1001,101 @@ msgid ""
993
  "sections."
994
  msgstr ""
995
 
996
- #: ../admin/partials/sassy-social-share-options-page.php:2073
997
  msgid ""
998
  "Why are Twitter shares not appearing even after registering at Twitcount.com?"
999
  msgstr ""
1000
 
1001
- #: ../admin/partials/sassy-social-share-options-page.php:2074
1002
  msgid ""
1003
  "It takes some time for their service to track the shares made on Twitter "
1004
  "from your website. If you still feel it's taking too long you can contact "
1005
  "their support directly from their website."
1006
  msgstr ""
1007
 
1008
- #: ../admin/partials/sassy-social-share-options-page.php:2076
1009
  msgid ""
1010
  "How to restore Social Share counts lost after moving my website to SSL/Https?"
1011
  msgstr ""
1012
 
1013
- #: ../admin/partials/sassy-social-share-options-page.php:2077
1014
  msgid "How to integrate Google Analytics with sharing?"
1015
  msgstr ""
1016
 
1017
- #: ../admin/partials/sassy-social-share-options-page.php:2078
1018
  msgid "Why the color of share icons is not being updated?"
1019
  msgstr ""
1020
 
1021
- #: ../admin/partials/sassy-social-share-options-page.php:2079
1022
  msgid ""
1023
  "How to show recent Facebook Comments from all over the website in a widget?"
1024
  msgstr ""
1025
 
1026
- #: ../admin/partials/sassy-social-share-options-page.php:2080
1027
  msgid ""
1028
  "How to recover the Facebook Comments lost after moving my website to SSL/"
1029
  "Https?"
1030
  msgstr ""
1031
 
1032
- #: ../admin/partials/sassy-social-share-options-page.php:2081
1033
  msgid "How to Place Title and Social Share Icons in the Same Row?"
1034
  msgstr ""
1035
 
1036
- #: ../admin/partials/sassy-social-share-options-page.php:2082
1037
  msgid ""
1038
  "How can I show share counts of my website rather than of individual pages/"
1039
  "posts?"
1040
  msgstr ""
1041
 
1042
- #: ../admin/partials/sassy-social-share-options-page.php:2083
1043
  msgid "How can I disable sharing on particular page/post?"
1044
  msgstr ""
1045
 
1046
- #: ../admin/partials/sassy-social-share-options-page.php:2084
1047
  msgid "How can I specify minimum sharing count for sharing networks?"
1048
  msgstr ""
1049
 
1050
- #: ../admin/partials/sassy-social-share-options-page.php:2085
1051
  msgid "How to share specific page?"
1052
  msgstr ""
1053
 
1054
- #: ../admin/partials/sassy-social-share-options-page.php:2086
1055
  msgid "How to customize the look of total share counts?"
1056
  msgstr ""
1057
 
1058
- #: ../admin/partials/sassy-social-share-options-page.php:2087
1059
  msgid "How to customize the look of individual share counts?"
1060
  msgstr ""
1061
 
1062
- #: ../admin/partials/sassy-social-share-options-page.php:2088
1063
  msgid "How to show Whatsapp icon only on mobile devices?"
1064
  msgstr ""
1065
 
1066
- #: ../admin/partials/sassy-social-share-options-page.php:2089
1067
  msgid "How to hide arrow after floating sharing bar?"
1068
  msgstr ""
1069
 
1070
- #: ../admin/partials/sassy-social-share-options-page.php:2090
1071
  msgid "Why is share count not getting updated?"
1072
  msgstr ""
1073
 
1074
- #: ../admin/partials/sassy-social-share-options-page.php:2091
1075
  msgid "Why is there so much space between like buttons?"
1076
  msgstr ""
1077
 
1078
- #: ../admin/partials/sassy-social-share-options-page.php:2092
1079
  msgid "Why are floating sharing/like buttons not appearing at homepage?"
1080
  msgstr ""
1081
 
1082
- #: ../admin/partials/sassy-social-share-options-page.php:2102
1083
  msgid "Save Changes"
1084
  msgstr ""
1085
 
1086
- #: ../admin/partials/sassy-social-share-options-page.php:2114
1087
- msgid ""
1088
- "If you can send (to hello@heateor.com) how our plugin is helping your "
1089
- "business, we can share it on Instagram. You can also send any relevant "
1090
- "hashtags and people to mention in the Instagram post."
1091
- msgstr ""
1092
-
1093
- #: ../admin/partials/sassy-social-share-options-page.php:2115
1094
- msgid ""
1095
- "<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
1096
- "language courses through their website. They have emerged as one of the most "
1097
- "popular online coaching websites in the past year. Anyone can become "
1098
- "proficient in programming language of their choice in a very easy way in no "
1099
- "time."
1100
- msgstr ""
1101
-
1102
- #: ../admin/partials/sassy-social-share-options-page.php:2116
1103
  msgid ""
1104
- "@blahblahonlinecoaching proudly use #SassySocialShare to share content of "
1105
- "their website. Be sure to visit their website at \n"
1106
- "\t\tblahblahonlinecoaching.com where you can browse a variety of programming "
1107
- "language courses."
1108
  msgstr ""
1109
 
1110
  #: ../admin/partials/sassy-social-share-about.php:4
@@ -1219,12 +1210,12 @@ msgid "Select"
1219
  msgstr ""
1220
 
1221
  #: ../includes/class-sassy-social-share-widgets.php:208
1222
- #: ../includes/class-sassy-social-share-widgets.php:642
1223
  msgid "Before widget content:"
1224
  msgstr ""
1225
 
1226
  #: ../includes/class-sassy-social-share-widgets.php:210
1227
- #: ../includes/class-sassy-social-share-widgets.php:716
1228
  msgid "After widget content:"
1229
  msgstr ""
1230
 
@@ -1269,95 +1260,99 @@ msgstr ""
1269
  msgid "These icons link to your Social Media accounts"
1270
  msgstr ""
1271
 
1272
- #: ../includes/class-sassy-social-share-widgets.php:646
1273
  msgid "Size of icons"
1274
  msgstr ""
1275
 
1276
- #: ../includes/class-sassy-social-share-widgets.php:648
1277
  msgid "Icon Shape"
1278
  msgstr ""
1279
 
1280
- #: ../includes/class-sassy-social-share-widgets.php:653
1281
  msgid "Facebook URL:"
1282
  msgstr ""
1283
 
1284
- #: ../includes/class-sassy-social-share-widgets.php:656
1285
  msgid "Twitter URL:"
1286
  msgstr ""
1287
 
1288
- #: ../includes/class-sassy-social-share-widgets.php:659
1289
  msgid "Instagram URL:"
1290
  msgstr ""
1291
 
1292
- #: ../includes/class-sassy-social-share-widgets.php:662
1293
  msgid "Pinterest URL:"
1294
  msgstr ""
1295
 
1296
- #: ../includes/class-sassy-social-share-widgets.php:665
1297
  msgid "Behance URL:"
1298
  msgstr ""
1299
 
1300
- #: ../includes/class-sassy-social-share-widgets.php:668
1301
  msgid "Flickr URL:"
1302
  msgstr ""
1303
 
1304
- #: ../includes/class-sassy-social-share-widgets.php:671
1305
  msgid "Foursquare URL:"
1306
  msgstr ""
1307
 
1308
- #: ../includes/class-sassy-social-share-widgets.php:674
1309
  msgid "Github URL:"
1310
  msgstr ""
1311
 
1312
- #: ../includes/class-sassy-social-share-widgets.php:677
1313
  msgid "LinkedIn URL:"
1314
  msgstr ""
1315
 
1316
- #: ../includes/class-sassy-social-share-widgets.php:680
1317
  msgid "LinkedIn Company URL:"
1318
  msgstr ""
1319
 
1320
- #: ../includes/class-sassy-social-share-widgets.php:683
1321
  msgid "Medium URL:"
1322
  msgstr ""
1323
 
1324
- #: ../includes/class-sassy-social-share-widgets.php:686
1325
  msgid "MeWe URL:"
1326
  msgstr ""
1327
 
1328
- #: ../includes/class-sassy-social-share-widgets.php:689
1329
  msgid "Odnoklassniki URL:"
1330
  msgstr ""
1331
 
1332
- #: ../includes/class-sassy-social-share-widgets.php:692
1333
  msgid "Snapchat URL:"
1334
  msgstr ""
1335
 
1336
- #: ../includes/class-sassy-social-share-widgets.php:695
 
 
 
 
1337
  msgid "Tumblr URL:"
1338
  msgstr ""
1339
 
1340
- #: ../includes/class-sassy-social-share-widgets.php:698
1341
  msgid "Vimeo URL:"
1342
  msgstr ""
1343
 
1344
- #: ../includes/class-sassy-social-share-widgets.php:701
1345
  msgid "Vkontakte URL:"
1346
  msgstr ""
1347
 
1348
- #: ../includes/class-sassy-social-share-widgets.php:704
1349
  msgid "Xing URL:"
1350
  msgstr ""
1351
 
1352
- #: ../includes/class-sassy-social-share-widgets.php:707
1353
  msgid "Youtube URL:"
1354
  msgstr ""
1355
 
1356
- #: ../includes/class-sassy-social-share-widgets.php:710
1357
  msgid "Youtube Channel URL:"
1358
  msgstr ""
1359
 
1360
- #: ../includes/class-sassy-social-share-widgets.php:713
1361
  msgid "RSS Feed URL:"
1362
  msgstr ""
1363
 
@@ -1385,11 +1380,11 @@ msgstr ""
1385
  msgid "Archives"
1386
  msgstr ""
1387
 
1388
- #: ../public/class-sassy-social-share-public.php:1571
1389
- #: ../public/class-sassy-social-share-public.php:1834
1390
  msgid "Invalid request"
1391
  msgstr ""
1392
 
1393
- #: ../public/class-sassy-social-share-public.php:1577
1394
  msgid "Providers not selected"
1395
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: Sassy Social Share\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2019-05-15 16:44+0530\n"
6
+ "PO-Revision-Date: 2019-05-15 16:44+0530\n"
7
  "Last-Translator: Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <hello@heateor.com>\n"
9
  "Language: en_IN\n"
132
  msgstr ""
133
 
134
  #: ../admin/partials/sassy-social-share-options-page.php:16
135
+ #: ../admin/partials/sassy-social-share-options-page.php:2074
136
  #, php-format
137
  msgid ""
138
  "You can appreciate the effort put in this free plugin by rating it <a href="
152
  msgstr ""
153
 
154
  #: ../admin/partials/sassy-social-share-options-page.php:27
155
+ #: ../admin/partials/sassy-social-share-options-page.php:1612
156
  msgid "Miscellaneous"
157
  msgstr ""
158
 
161
  msgstr ""
162
 
163
  #: ../admin/partials/sassy-social-share-options-page.php:35
164
+ #: ../admin/partials/sassy-social-share-options-page.php:1998
165
+ #: ../admin/partials/sassy-social-share-options-page.php:2000
166
  msgid "Shortcode & Widget"
167
  msgstr ""
168
 
171
  msgstr ""
172
 
173
  #: ../admin/partials/sassy-social-share-options-page.php:37
174
+ #: ../admin/partials/sassy-social-share-options-page.php:2031
175
  msgid "FAQ"
176
  msgstr ""
177
 
198
 
199
  #: ../admin/partials/sassy-social-share-options-page.php:133
200
  #: ../admin/partials/sassy-social-share-options-page.php:441
201
+ #: ../includes/class-sassy-social-share-widgets.php:654
202
  msgid "Round"
203
  msgstr ""
204
 
205
  #: ../admin/partials/sassy-social-share-options-page.php:135
206
  #: ../admin/partials/sassy-social-share-options-page.php:443
207
+ #: ../includes/class-sassy-social-share-widgets.php:655
208
  msgid "Square"
209
  msgstr ""
210
 
293
 
294
  #: ../admin/partials/sassy-social-share-options-page.php:270
295
  #: ../admin/partials/sassy-social-share-options-page.php:578
296
+ #: ../admin/partials/sassy-social-share-options-page.php:1302
297
  #: ../includes/class-sassy-social-share-widgets.php:433
298
  msgid "Background Color"
299
  msgstr ""
344
  #: ../admin/partials/sassy-social-share-options-page.php:320
345
  #: ../admin/partials/sassy-social-share-options-page.php:627
346
  #: ../admin/partials/sassy-social-share-options-page.php:909
347
+ #: ../admin/partials/sassy-social-share-options-page.php:1324
348
  #: ../includes/class-sassy-social-share-widgets.php:419
349
  msgid "Left"
350
  msgstr ""
357
  #: ../admin/partials/sassy-social-share-options-page.php:324
358
  #: ../admin/partials/sassy-social-share-options-page.php:631
359
  #: ../admin/partials/sassy-social-share-options-page.php:911
360
+ #: ../admin/partials/sassy-social-share-options-page.php:1325
361
  #: ../includes/class-sassy-social-share-widgets.php:420
362
  msgid "Right"
363
  msgstr ""
409
  msgstr ""
410
 
411
  #: ../admin/partials/sassy-social-share-options-page.php:692
412
+ #: ../admin/partials/sassy-social-share-options-page.php:1128
413
  msgid "Target Url"
414
  msgstr ""
415
 
416
  #: ../admin/partials/sassy-social-share-options-page.php:696
417
+ #: ../admin/partials/sassy-social-share-options-page.php:1132
418
  msgid "Url of the webpage where icons are located (default)"
419
  msgstr ""
420
 
421
  #: ../admin/partials/sassy-social-share-options-page.php:698
422
+ #: ../admin/partials/sassy-social-share-options-page.php:1134
423
  msgid "Url of the homepage of your website"
424
  msgstr ""
425
 
426
  #: ../admin/partials/sassy-social-share-options-page.php:700
427
+ #: ../admin/partials/sassy-social-share-options-page.php:1136
428
  msgid "Custom url"
429
  msgstr ""
430
 
431
  #: ../admin/partials/sassy-social-share-options-page.php:707
432
+ #: ../admin/partials/sassy-social-share-options-page.php:1143
433
  msgid "Url to share"
434
  msgstr ""
435
 
436
  #: ../admin/partials/sassy-social-share-options-page.php:715
437
+ #: ../includes/class-sassy-social-share-widgets.php:648
438
  msgid "Title"
439
  msgstr ""
440
 
443
  msgstr ""
444
 
445
  #: ../admin/partials/sassy-social-share-options-page.php:749
446
+ #: ../admin/partials/sassy-social-share-options-page.php:1152
447
  msgid "Instagram username"
448
  msgstr ""
449
 
450
  #: ../admin/partials/sassy-social-share-options-page.php:759
451
+ #: ../admin/partials/sassy-social-share-options-page.php:1162
452
  msgid ""
453
  "Username of the Instagram account you want to redirect users to, on clicking "
454
  "the icon"
455
  msgstr ""
456
 
457
  #: ../admin/partials/sassy-social-share-options-page.php:769
458
+ #: ../admin/partials/sassy-social-share-options-page.php:1172
459
  msgid "HTML ID of container element of comment form"
460
  msgstr ""
461
 
462
  #: ../admin/partials/sassy-social-share-options-page.php:779
463
+ #: ../admin/partials/sassy-social-share-options-page.php:1182
464
  msgid ""
465
  "HTML ID of the element you want to focus on the webpage, on click of Comment "
466
  "icon."
467
  msgstr ""
468
 
469
  #: ../admin/partials/sassy-social-share-options-page.php:792
470
+ #: ../admin/partials/sassy-social-share-options-page.php:1191
471
  msgid "Rearrange icons"
472
  msgstr ""
473
 
474
  #: ../admin/partials/sassy-social-share-options-page.php:853
475
+ #: ../admin/partials/sassy-social-share-options-page.php:1250
476
  msgid "Drag the icons to rearrange in desired order"
477
  msgstr ""
478
 
479
  #: ../admin/partials/sassy-social-share-options-page.php:861
480
+ #: ../admin/partials/sassy-social-share-options-page.php:1258
481
  msgid "Select Sharing Services"
482
  msgstr ""
483
 
484
  #: ../admin/partials/sassy-social-share-options-page.php:868
485
+ #: ../admin/partials/sassy-social-share-options-page.php:1265
486
  msgid "Select sharing services to show in social share bar"
487
  msgstr ""
488
 
489
  #: ../admin/partials/sassy-social-share-options-page.php:886
490
+ #: ../admin/partials/sassy-social-share-options-page.php:1283
491
  msgid "Search social network"
492
  msgstr ""
493
 
494
  #: ../admin/partials/sassy-social-share-options-page.php:905
495
+ #: ../admin/partials/sassy-social-share-options-page.php:1320
496
  msgid "Horizontal alignment"
497
  msgstr ""
498
 
501
  msgstr ""
502
 
503
  #: ../admin/partials/sassy-social-share-options-page.php:919
504
+ #: ../admin/partials/sassy-social-share-options-page.php:1333
505
  msgid "Horizontal alignment of the sharing interface"
506
  msgstr ""
507
 
522
  msgstr ""
523
 
524
  #: ../admin/partials/sassy-social-share-options-page.php:948
525
+ #: ../admin/partials/sassy-social-share-options-page.php:1399
526
  msgid "Placement"
527
  msgstr ""
528
 
529
  #: ../admin/partials/sassy-social-share-options-page.php:952
530
+ #: ../admin/partials/sassy-social-share-options-page.php:1403
531
  msgid "Homepage"
532
  msgstr ""
533
 
534
  #: ../admin/partials/sassy-social-share-options-page.php:954
535
+ #: ../admin/partials/sassy-social-share-options-page.php:1405
536
  msgid "Posts"
537
  msgstr ""
538
 
539
  #: ../admin/partials/sassy-social-share-options-page.php:956
540
+ #: ../admin/partials/sassy-social-share-options-page.php:1407
541
  msgid "Pages"
542
  msgstr ""
543
 
544
  #: ../admin/partials/sassy-social-share-options-page.php:958
545
+ #: ../admin/partials/sassy-social-share-options-page.php:1409
546
  msgid "Excerpts and Posts page"
547
  msgstr ""
548
 
549
  #: ../admin/partials/sassy-social-share-options-page.php:960
550
+ #: ../admin/partials/sassy-social-share-options-page.php:1411
551
  msgid "Category Archives"
552
  msgstr ""
553
 
554
  #: ../admin/partials/sassy-social-share-options-page.php:962
555
+ #: ../admin/partials/sassy-social-share-options-page.php:1413
556
  msgid "Archive Pages (Category, Tag, Author or Date based pages)"
557
  msgstr ""
558
 
565
  msgstr ""
566
 
567
  #: ../admin/partials/sassy-social-share-options-page.php:986
568
+ #: ../admin/partials/sassy-social-share-options-page.php:1435
569
  msgid "BBPress forum"
570
  msgstr ""
571
 
572
  #: ../admin/partials/sassy-social-share-options-page.php:989
573
+ #: ../admin/partials/sassy-social-share-options-page.php:1438
574
  msgid "BBPress topic"
575
  msgstr ""
576
 
594
  msgid "Specify the pages where you want to enable Sharing interface"
595
  msgstr ""
596
 
597
+ #: ../admin/partials/sassy-social-share-options-page.php:1025
598
+ #: ../admin/partials/sassy-social-share-options-page.php:1457
599
+ #: ../admin/partials/sassy-social-share-options-page.php:2036
600
+ msgid ""
601
+ "Save Facebook App Id and Secret in the \"Miscellaneous\" section for "
602
+ "Facebook share count to work"
603
+ msgstr ""
604
+
605
+ #: ../admin/partials/sassy-social-share-options-page.php:1034
606
+ #: ../admin/partials/sassy-social-share-options-page.php:1466
607
  msgid "Show share counts"
608
  msgstr ""
609
 
610
+ #: ../admin/partials/sassy-social-share-options-page.php:1039
611
+ #: ../admin/partials/sassy-social-share-options-page.php:1471
612
  msgid ""
613
  "Share counts are supported for Facebook, Twitter, Linkedin, Buffer, Reddit, "
614
  "Pinterest, Odnoklassniki, Fintel and Vkontakte"
615
  msgstr ""
616
 
617
+ #: ../admin/partials/sassy-social-share-options-page.php:1040
618
+ #: ../admin/partials/sassy-social-share-options-page.php:1472
619
  #, php-format
620
  msgid ""
621
  "To show Twitter share count, you have to click \"Give me my Twitter counts "
624
  "their website."
625
  msgstr ""
626
 
627
+ #: ../admin/partials/sassy-social-share-options-page.php:1047
628
+ #: ../admin/partials/sassy-social-share-options-page.php:1479
629
  msgid "If enabled, share counts are displayed above sharing icons."
630
  msgstr ""
631
 
632
+ #: ../admin/partials/sassy-social-share-options-page.php:1056
633
+ #: ../admin/partials/sassy-social-share-options-page.php:1488
634
  msgid "Show total shares"
635
  msgstr ""
636
 
637
+ #: ../admin/partials/sassy-social-share-options-page.php:1066
638
+ #: ../admin/partials/sassy-social-share-options-page.php:1498
639
  msgid "If enabled, total shares will be displayed with sharing icons"
640
  msgstr ""
641
 
642
+ #: ../admin/partials/sassy-social-share-options-page.php:1075
643
+ #: ../admin/partials/sassy-social-share-options-page.php:1507
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
644
  msgid "Enable 'More' icon"
645
  msgstr ""
646
 
647
+ #: ../admin/partials/sassy-social-share-options-page.php:1085
648
+ #: ../admin/partials/sassy-social-share-options-page.php:1517
649
  msgid ""
650
  "If enabled, \"More\" icon will be displayed after selected sharing icons "
651
  "which shows additional sharing networks in popup"
652
  msgstr ""
653
 
654
+ #: ../admin/partials/sassy-social-share-options-page.php:1102
655
  msgid "Floating Sharing Interface Options"
656
  msgstr ""
657
 
658
+ #: ../admin/partials/sassy-social-share-options-page.php:1108
659
  msgid "Enable Floating sharing interface"
660
  msgstr ""
661
 
662
+ #: ../admin/partials/sassy-social-share-options-page.php:1118
663
  msgid "Master control to enable floating sharing widget"
664
  msgstr ""
665
 
666
+ #: ../admin/partials/sassy-social-share-options-page.php:1312
667
  msgid ""
668
  "Specify the color or hex code (example #cc78e0) for the background of "
669
  "vertical sharing bar. Leave empty for transparent. You can get the hex code "
671
  "\"_blank\">this link</a>"
672
  msgstr ""
673
 
674
+ #: ../admin/partials/sassy-social-share-options-page.php:1342
675
  msgid "Left offset"
676
  msgstr ""
677
 
678
+ #: ../admin/partials/sassy-social-share-options-page.php:1352
679
  msgid ""
680
  "Specify a number. Increase in number will shift sharing interface towards "
681
  "right and decrease will shift it towards left. Number can be negative too."
682
  msgstr ""
683
 
684
+ #: ../admin/partials/sassy-social-share-options-page.php:1362
685
  msgid "Right offset"
686
  msgstr ""
687
 
688
+ #: ../admin/partials/sassy-social-share-options-page.php:1372
689
  msgid ""
690
  "Specify a number. Increase in number will shift sharing interface towards "
691
  "left and decrease will shift it towards right. Number can be negative too."
692
  msgstr ""
693
 
694
+ #: ../admin/partials/sassy-social-share-options-page.php:1381
695
  msgid "Top offset"
696
  msgstr ""
697
 
698
+ #: ../admin/partials/sassy-social-share-options-page.php:1391
699
  msgid ""
700
  "Specify a number. Increase in number will shift sharing interface towards "
701
  "bottom and decrease will shift it towards top."
702
  msgstr ""
703
 
704
+ #: ../admin/partials/sassy-social-share-options-page.php:1427
705
  msgid "BuddyPress group"
706
  msgstr ""
707
 
708
+ #: ../admin/partials/sassy-social-share-options-page.php:1448
709
  msgid "Specify the pages where you want to enable vertical Sharing interface"
710
  msgstr ""
711
 
712
+ #: ../admin/partials/sassy-social-share-options-page.php:1525
713
  msgid "Hide floating slider"
714
  msgstr ""
715
 
716
+ #: ../admin/partials/sassy-social-share-options-page.php:1535
717
  msgid "Hides the slider arrow present below the floating share bar"
718
  msgstr ""
719
 
720
+ #: ../admin/partials/sassy-social-share-options-page.php:1543
721
  msgid "Vertical floating bar responsiveness"
722
  msgstr ""
723
 
724
+ #: ../admin/partials/sassy-social-share-options-page.php:1546
725
  #, php-format
726
  msgid "Display vertical interface only when screen is wider than %s pixels"
727
  msgstr ""
728
 
729
+ #: ../admin/partials/sassy-social-share-options-page.php:1553
730
  msgid ""
731
  "Display vertical interface only when screen is wider than the width "
732
  "specified."
733
  msgstr ""
734
 
735
+ #: ../admin/partials/sassy-social-share-options-page.php:1561
736
  msgid "Horizontal floating bar responsiveness"
737
  msgstr ""
738
 
739
+ #: ../admin/partials/sassy-social-share-options-page.php:1564
740
  #, php-format
741
  msgid ""
742
  "Stick vertical floating interface horizontally at bottom only when screen is "
743
  "narrower than %s pixels"
744
  msgstr ""
745
 
746
+ #: ../admin/partials/sassy-social-share-options-page.php:1571
747
  msgid ""
748
  "Stick vertical floating interface horizontally at bottom only when screen is "
749
  "narrower than the width specified"
750
  msgstr ""
751
 
752
+ #: ../admin/partials/sassy-social-share-options-page.php:1581
753
  msgid "Horizontal floating bar position"
754
  msgstr ""
755
 
756
+ #: ../admin/partials/sassy-social-share-options-page.php:1584
757
  #, php-format
758
  msgid "%s pixels from %s"
759
  msgstr ""
760
 
761
+ #: ../admin/partials/sassy-social-share-options-page.php:1585
762
  msgid "Auto-adjust according to screen width (responsive)"
763
  msgstr ""
764
 
765
+ #: ../admin/partials/sassy-social-share-options-page.php:1592
766
  msgid "Alignment of horizontal floating interface. Number can be negative too."
767
  msgstr ""
768
 
769
+ #: ../admin/partials/sassy-social-share-options-page.php:1619
770
+ msgid "Facebook App ID"
771
+ msgstr ""
772
+
773
+ #: ../admin/partials/sassy-social-share-options-page.php:1629
774
+ #, php-format
775
+ msgid ""
776
+ "Required for Facebook share count to work. Please follow the documentation "
777
+ "at <a href=\"%s\" target=\"_blank\">this link</a> to get Facebook App ID"
778
+ msgstr ""
779
+
780
+ #: ../admin/partials/sassy-social-share-options-page.php:1637
781
+ msgid "Facebook App Secret"
782
+ msgstr ""
783
+
784
+ #: ../admin/partials/sassy-social-share-options-page.php:1647
785
+ #, php-format
786
+ msgid ""
787
+ "Required for Facebook share count to work. Please follow the documentation "
788
+ "at <a href=\"%s\" target=\"_blank\">this link</a> to get Facebook App Secret"
789
+ msgstr ""
790
+
791
+ #: ../admin/partials/sassy-social-share-options-page.php:1656
792
  msgid "Load Javascript files in footer"
793
  msgstr ""
794
 
795
+ #: ../admin/partials/sassy-social-share-options-page.php:1666
796
  msgid ""
797
  "If enabled (recommended), Javascript files will be included in the footer of "
798
  "your website."
799
  msgstr ""
800
 
801
+ #: ../admin/partials/sassy-social-share-options-page.php:1674
802
  msgid "Delete all the options on plugin deletion"
803
  msgstr ""
804
 
805
+ #: ../admin/partials/sassy-social-share-options-page.php:1684
806
  msgid ""
807
  "If enabled, plugin options will get deleted when plugin is deleted/"
808
  "uninstalled and you will need to reconfigure the options when you install "
809
  "the plugin next time."
810
  msgstr ""
811
 
812
+ #: ../admin/partials/sassy-social-share-options-page.php:1693
813
  msgid "Share Count Cache"
814
  msgstr ""
815
 
816
+ #: ../admin/partials/sassy-social-share-options-page.php:1699
817
  msgid "Refresh Share Count cache every"
818
  msgstr ""
819
 
820
+ #: ../admin/partials/sassy-social-share-options-page.php:1715
821
  #, php-format
822
  msgid ""
823
  "Frequent cache refreshing results in slower loading of pages with share "
825
  "target=\"_blank\">here</a>"
826
  msgstr ""
827
 
828
+ #: ../admin/partials/sassy-social-share-options-page.php:1723
829
  msgid "Clear Share Counts Cache"
830
  msgstr ""
831
 
832
+ #: ../admin/partials/sassy-social-share-options-page.php:1727
833
  msgid "Share Counts cache cleared successfully."
834
  msgstr ""
835
 
836
+ #: ../admin/partials/sassy-social-share-options-page.php:1734
837
  msgid "Use this to clear cached share counts"
838
  msgstr ""
839
 
840
+ #: ../admin/partials/sassy-social-share-options-page.php:1743
841
  msgid "Url shortener"
842
  msgstr ""
843
 
844
+ #: ../admin/partials/sassy-social-share-options-page.php:1749
845
  msgid "Use shortlinks already installed"
846
  msgstr ""
847
 
848
+ #: ../admin/partials/sassy-social-share-options-page.php:1759
849
  msgid ""
850
  "Use default short url permalinks without the need for any additional plugin"
851
  msgstr ""
852
 
853
+ #: ../admin/partials/sassy-social-share-options-page.php:1767
854
  msgid "Enable bit.ly url shortener for sharing"
855
  msgstr ""
856
 
857
+ #: ../admin/partials/sassy-social-share-options-page.php:1777
858
  msgid "Master control to enable bit.ly url shortening for sharing"
859
  msgstr ""
860
 
861
+ #: ../admin/partials/sassy-social-share-options-page.php:1785
862
  msgid "bit.ly Login"
863
  msgstr ""
864
 
865
+ #: ../admin/partials/sassy-social-share-options-page.php:1795
866
  #, php-format
867
  msgid ""
868
  "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank"
869
  "\">this link</a> to get bit.ly Login"
870
  msgstr ""
871
 
872
+ #: ../admin/partials/sassy-social-share-options-page.php:1804
873
  msgid "bit.ly API Key"
874
  msgstr ""
875
 
876
+ #: ../admin/partials/sassy-social-share-options-page.php:1814
877
  #, php-format
878
  msgid ""
879
  "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank"
880
  "\">this link</a> to get your API key"
881
  msgstr ""
882
 
883
+ #: ../admin/partials/sassy-social-share-options-page.php:1823
884
  msgid "Clear Bitly Cache"
885
  msgstr ""
886
 
887
+ #: ../admin/partials/sassy-social-share-options-page.php:1827
888
  msgid "ShortUrl cache cleared successfully."
889
  msgstr ""
890
 
891
+ #: ../admin/partials/sassy-social-share-options-page.php:1834
892
  msgid ""
893
  "Use this to delete short urls saved in database. Handy, if urls of your "
894
  "website have been changed but short urls are still being generated for old "
895
  "urls."
896
  msgstr ""
897
 
898
+ #: ../admin/partials/sassy-social-share-options-page.php:1843
899
+ #: ../admin/partials/sassy-social-share-options-page.php:1849
900
  msgid "Language"
901
  msgstr ""
902
 
903
+ #: ../admin/partials/sassy-social-share-options-page.php:1859
904
  #, php-format
905
  msgid ""
906
  "Enter the code of the language you want to use for like buttons. You can "
908
  "Leave it empty for default language(English)"
909
  msgstr ""
910
 
911
+ #: ../admin/partials/sassy-social-share-options-page.php:1868
912
  msgid "Username in sharing"
913
  msgstr ""
914
 
915
+ #: ../admin/partials/sassy-social-share-options-page.php:1874
916
  msgid "Twitter username (without @)"
917
  msgstr ""
918
 
919
+ #: ../admin/partials/sassy-social-share-options-page.php:1884
920
+ #: ../admin/partials/sassy-social-share-options-page.php:1903
921
  msgid ""
922
  "Provided username will be appended after the content being shared as \"via "
923
  "@USERNAME\". Leave empty if you do not want any username in the content "
924
  "being shared."
925
  msgstr ""
926
 
927
+ #: ../admin/partials/sassy-social-share-options-page.php:1893
928
  msgid "Buffer username (without @)"
929
  msgstr ""
930
 
931
+ #: ../admin/partials/sassy-social-share-options-page.php:1912
932
  msgid "AMP"
933
  msgstr ""
934
 
935
+ #: ../admin/partials/sassy-social-share-options-page.php:1918
936
  msgid "Enable sharing on AMP pages"
937
  msgstr ""
938
 
939
+ #: ../admin/partials/sassy-social-share-options-page.php:1928
940
  msgid "Enable this option to render sharing icons on AMP pages"
941
  msgstr ""
942
 
943
+ #: ../admin/partials/sassy-social-share-options-page.php:1937
944
+ #: ../admin/partials/sassy-social-share-options-page.php:1943
945
  msgid "Custom CSS"
946
  msgstr ""
947
 
948
+ #: ../admin/partials/sassy-social-share-options-page.php:1953
949
  msgid "You can specify any additional CSS rules (without &lt;style&gt; tag)"
950
  msgstr ""
951
 
952
+ #: ../admin/partials/sassy-social-share-options-page.php:1972
953
  msgid "myCRED"
954
  msgstr ""
955
 
956
+ #: ../admin/partials/sassy-social-share-options-page.php:1978
957
  msgid "Append myCRED referral ID to the urls being shared"
958
  msgstr ""
959
 
960
+ #: ../admin/partials/sassy-social-share-options-page.php:2011
961
  msgid "Facebook Sharing Troubleshooter"
962
  msgstr ""
963
 
964
+ #: ../admin/partials/sassy-social-share-options-page.php:2016
965
  msgid ""
966
  "If Facebook sharing is not working fine, click at the following link and "
967
  "enter the problematic url (where Facebook sharing is not working properly) "
969
  "button."
970
  msgstr ""
971
 
972
+ #: ../admin/partials/sassy-social-share-options-page.php:2033
973
  msgid ""
974
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
975
  "an online website for the plugin to function properly."
976
  msgstr ""
977
 
978
+ #: ../admin/partials/sassy-social-share-options-page.php:2034
979
  msgid ""
980
  "Why is sharer not showing the correct image, title and other meta tags "
981
  "content?"
982
  msgstr ""
983
 
984
+ #: ../admin/partials/sassy-social-share-options-page.php:2035
985
+ msgid "Why is Facebook share count not working?"
986
+ msgstr ""
987
+
988
+ #: ../admin/partials/sassy-social-share-options-page.php:2037
989
  msgid "How to Customize the Url being Shared?"
990
  msgstr ""
991
 
992
+ #: ../admin/partials/sassy-social-share-options-page.php:2038
993
  msgid "Why is Instagram icon redirecting to Instagram website?"
994
  msgstr ""
995
 
996
+ #: ../admin/partials/sassy-social-share-options-page.php:2039
997
  msgid ""
998
  "Instagram icon is there to send website visitors to the Instagram page of "
999
  "your choice. You can save the desired Instagram handle in \"Instagram "
1001
  "sections."
1002
  msgstr ""
1003
 
1004
+ #: ../admin/partials/sassy-social-share-options-page.php:2041
1005
  msgid ""
1006
  "Why are Twitter shares not appearing even after registering at Twitcount.com?"
1007
  msgstr ""
1008
 
1009
+ #: ../admin/partials/sassy-social-share-options-page.php:2042
1010
  msgid ""
1011
  "It takes some time for their service to track the shares made on Twitter "
1012
  "from your website. If you still feel it's taking too long you can contact "
1013
  "their support directly from their website."
1014
  msgstr ""
1015
 
1016
+ #: ../admin/partials/sassy-social-share-options-page.php:2044
1017
  msgid ""
1018
  "How to restore Social Share counts lost after moving my website to SSL/Https?"
1019
  msgstr ""
1020
 
1021
+ #: ../admin/partials/sassy-social-share-options-page.php:2045
1022
  msgid "How to integrate Google Analytics with sharing?"
1023
  msgstr ""
1024
 
1025
+ #: ../admin/partials/sassy-social-share-options-page.php:2046
1026
  msgid "Why the color of share icons is not being updated?"
1027
  msgstr ""
1028
 
1029
+ #: ../admin/partials/sassy-social-share-options-page.php:2047
1030
  msgid ""
1031
  "How to show recent Facebook Comments from all over the website in a widget?"
1032
  msgstr ""
1033
 
1034
+ #: ../admin/partials/sassy-social-share-options-page.php:2048
1035
  msgid ""
1036
  "How to recover the Facebook Comments lost after moving my website to SSL/"
1037
  "Https?"
1038
  msgstr ""
1039
 
1040
+ #: ../admin/partials/sassy-social-share-options-page.php:2049
1041
  msgid "How to Place Title and Social Share Icons in the Same Row?"
1042
  msgstr ""
1043
 
1044
+ #: ../admin/partials/sassy-social-share-options-page.php:2050
1045
  msgid ""
1046
  "How can I show share counts of my website rather than of individual pages/"
1047
  "posts?"
1048
  msgstr ""
1049
 
1050
+ #: ../admin/partials/sassy-social-share-options-page.php:2051
1051
  msgid "How can I disable sharing on particular page/post?"
1052
  msgstr ""
1053
 
1054
+ #: ../admin/partials/sassy-social-share-options-page.php:2052
1055
  msgid "How can I specify minimum sharing count for sharing networks?"
1056
  msgstr ""
1057
 
1058
+ #: ../admin/partials/sassy-social-share-options-page.php:2053
1059
  msgid "How to share specific page?"
1060
  msgstr ""
1061
 
1062
+ #: ../admin/partials/sassy-social-share-options-page.php:2054
1063
  msgid "How to customize the look of total share counts?"
1064
  msgstr ""
1065
 
1066
+ #: ../admin/partials/sassy-social-share-options-page.php:2055
1067
  msgid "How to customize the look of individual share counts?"
1068
  msgstr ""
1069
 
1070
+ #: ../admin/partials/sassy-social-share-options-page.php:2056
1071
  msgid "How to show Whatsapp icon only on mobile devices?"
1072
  msgstr ""
1073
 
1074
+ #: ../admin/partials/sassy-social-share-options-page.php:2057
1075
  msgid "How to hide arrow after floating sharing bar?"
1076
  msgstr ""
1077
 
1078
+ #: ../admin/partials/sassy-social-share-options-page.php:2058
1079
  msgid "Why is share count not getting updated?"
1080
  msgstr ""
1081
 
1082
+ #: ../admin/partials/sassy-social-share-options-page.php:2059
1083
  msgid "Why is there so much space between like buttons?"
1084
  msgstr ""
1085
 
1086
+ #: ../admin/partials/sassy-social-share-options-page.php:2060
1087
  msgid "Why are floating sharing/like buttons not appearing at homepage?"
1088
  msgstr ""
1089
 
1090
+ #: ../admin/partials/sassy-social-share-options-page.php:2070
1091
  msgid "Save Changes"
1092
  msgstr ""
1093
 
1094
+ #: ../admin/partials/sassy-social-share-options-page.php:2082
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1095
  msgid ""
1096
+ "If you can send (to hello@heateor.com) how this plugin is helping your "
1097
+ "business, we would be glad to shoutout on Instagram. You can also send any "
1098
+ "relevant hashtags and people to mention in the Instagram post."
 
1099
  msgstr ""
1100
 
1101
  #: ../admin/partials/sassy-social-share-about.php:4
1210
  msgstr ""
1211
 
1212
  #: ../includes/class-sassy-social-share-widgets.php:208
1213
+ #: ../includes/class-sassy-social-share-widgets.php:646
1214
  msgid "Before widget content:"
1215
  msgstr ""
1216
 
1217
  #: ../includes/class-sassy-social-share-widgets.php:210
1218
+ #: ../includes/class-sassy-social-share-widgets.php:723
1219
  msgid "After widget content:"
1220
  msgstr ""
1221
 
1260
  msgid "These icons link to your Social Media accounts"
1261
  msgstr ""
1262
 
1263
+ #: ../includes/class-sassy-social-share-widgets.php:650
1264
  msgid "Size of icons"
1265
  msgstr ""
1266
 
1267
+ #: ../includes/class-sassy-social-share-widgets.php:652
1268
  msgid "Icon Shape"
1269
  msgstr ""
1270
 
1271
+ #: ../includes/class-sassy-social-share-widgets.php:657
1272
  msgid "Facebook URL:"
1273
  msgstr ""
1274
 
1275
+ #: ../includes/class-sassy-social-share-widgets.php:660
1276
  msgid "Twitter URL:"
1277
  msgstr ""
1278
 
1279
+ #: ../includes/class-sassy-social-share-widgets.php:663
1280
  msgid "Instagram URL:"
1281
  msgstr ""
1282
 
1283
+ #: ../includes/class-sassy-social-share-widgets.php:666
1284
  msgid "Pinterest URL:"
1285
  msgstr ""
1286
 
1287
+ #: ../includes/class-sassy-social-share-widgets.php:669
1288
  msgid "Behance URL:"
1289
  msgstr ""
1290
 
1291
+ #: ../includes/class-sassy-social-share-widgets.php:672
1292
  msgid "Flickr URL:"
1293
  msgstr ""
1294
 
1295
+ #: ../includes/class-sassy-social-share-widgets.php:675
1296
  msgid "Foursquare URL:"
1297
  msgstr ""
1298
 
1299
+ #: ../includes/class-sassy-social-share-widgets.php:678
1300
  msgid "Github URL:"
1301
  msgstr ""
1302
 
1303
+ #: ../includes/class-sassy-social-share-widgets.php:681
1304
  msgid "LinkedIn URL:"
1305
  msgstr ""
1306
 
1307
+ #: ../includes/class-sassy-social-share-widgets.php:684
1308
  msgid "LinkedIn Company URL:"
1309
  msgstr ""
1310
 
1311
+ #: ../includes/class-sassy-social-share-widgets.php:687
1312
  msgid "Medium URL:"
1313
  msgstr ""
1314
 
1315
+ #: ../includes/class-sassy-social-share-widgets.php:690
1316
  msgid "MeWe URL:"
1317
  msgstr ""
1318
 
1319
+ #: ../includes/class-sassy-social-share-widgets.php:693
1320
  msgid "Odnoklassniki URL:"
1321
  msgstr ""
1322
 
1323
+ #: ../includes/class-sassy-social-share-widgets.php:696
1324
  msgid "Snapchat URL:"
1325
  msgstr ""
1326
 
1327
+ #: ../includes/class-sassy-social-share-widgets.php:699
1328
+ msgid "Telegram URL:"
1329
+ msgstr ""
1330
+
1331
+ #: ../includes/class-sassy-social-share-widgets.php:702
1332
  msgid "Tumblr URL:"
1333
  msgstr ""
1334
 
1335
+ #: ../includes/class-sassy-social-share-widgets.php:705
1336
  msgid "Vimeo URL:"
1337
  msgstr ""
1338
 
1339
+ #: ../includes/class-sassy-social-share-widgets.php:708
1340
  msgid "Vkontakte URL:"
1341
  msgstr ""
1342
 
1343
+ #: ../includes/class-sassy-social-share-widgets.php:711
1344
  msgid "Xing URL:"
1345
  msgstr ""
1346
 
1347
+ #: ../includes/class-sassy-social-share-widgets.php:714
1348
  msgid "Youtube URL:"
1349
  msgstr ""
1350
 
1351
+ #: ../includes/class-sassy-social-share-widgets.php:717
1352
  msgid "Youtube Channel URL:"
1353
  msgstr ""
1354
 
1355
+ #: ../includes/class-sassy-social-share-widgets.php:720
1356
  msgid "RSS Feed URL:"
1357
  msgstr ""
1358
 
1380
  msgid "Archives"
1381
  msgstr ""
1382
 
1383
+ #: ../public/class-sassy-social-share-public.php:1549
1384
+ #: ../public/class-sassy-social-share-public.php:1791
1385
  msgid "Invalid request"
1386
  msgstr ""
1387
 
1388
+ #: ../public/class-sassy-social-share-public.php:1555
1389
  msgid "Providers not selected"
1390
  msgstr ""
public/class-sassy-social-share-public.php CHANGED
@@ -1525,30 +1525,8 @@ class Sassy_Social_Share_Public {
1525
  */
1526
  private function fetch_fb_access_token() {
1527
 
1528
- $fb_access_token = get_option( 'heateor_sss_fb_access_token' );
1529
- if ( $fb_access_token ) {
1530
- return $fb_access_token;
1531
- } else {
1532
- $fb_app_id = '';
1533
- $fb_app_secret = '';
1534
- if ( $this->options['fb_key'] && $this->options['fb_secret'] ) {
1535
- $fb_app_id = $this->options['fb_key'];
1536
- $fb_app_secret = $this->options['fb_secret'];
1537
- } elseif ( $this->options['vertical_fb_key'] && $this->options['vertical_fb_secret'] ) {
1538
- $fb_app_id = $this->options['vertical_fb_key'];
1539
- $fb_app_secret = $this->options['vertical_fb_secret'];
1540
- }
1541
- if ( $fb_app_id && $fb_app_secret ) {
1542
- $url = "https://graph.facebook.com/oauth/access_token?client_id=" . $fb_app_id . "&client_secret=" . $fb_app_secret . "&grant_type=client_credentials";
1543
- $response = wp_remote_get( $url, array( 'timeout' => 15, 'user-agent' => 'Sassy-Social-Share' ) );
1544
- if ( ! is_wp_error( $response ) && isset( $response['response']['code'] ) && 200 === $response['response']['code'] ) {
1545
- $body = json_decode( wp_remote_retrieve_body( $response ) );
1546
- if ( isset( $body->access_token ) ) {
1547
- update_option( 'heateor_sss_fb_access_token', $body->access_token );
1548
- return $body->access_token;
1549
- }
1550
- }
1551
- }
1552
  }
1553
 
1554
  return false;
@@ -1622,10 +1600,10 @@ class Sassy_Social_Share_Public {
1622
  switch ( $provider ) {
1623
  case 'facebook':
1624
  $fb_access_token = $this->fetch_fb_access_token();
1625
- if ( $fb_access_token === false || $fb_access_token == '' ) {
1626
- $url = '';
1627
- } else {
1628
  $url = "https://graph.facebook.com/?access_token=" . $fb_access_token . "&fields=engagement&id=" . $target_url;
 
 
1629
  }
1630
  break;
1631
  case 'twitter':
@@ -1657,27 +1635,6 @@ class Sassy_Social_Share_Public {
1657
  }
1658
  if ( $url == '' ) { continue; }
1659
  $response = wp_remote_get( $url, array( 'timeout' => 15, 'user-agent' => 'Sassy-Social-Share' ) );
1660
- if ( $provider == 'facebook' && ! is_wp_error( $response ) && isset( $response['response']['code'] ) && 400 === $response['response']['code'] ) {
1661
- $body = json_decode( wp_remote_retrieve_body( $response ) );
1662
- if ( isset( $body->error ) && isset( $body->error->code ) && $body->error->code == 190 ) {
1663
- delete_option( 'heateor_sss_fb_access_token' );
1664
- $fb_access_token = $this->fetch_fb_access_token();
1665
- if ( $fb_access_token ) {
1666
- $url = "https://graph.facebook.com/?access_token=" . $fb_access_token . "&fields=engagement&id=" . $target_url;
1667
- $response = wp_remote_get( $url, array( 'timeout' => 15, 'user-agent' => 'Sassy-Social-Share' ) );
1668
- if ( ! is_wp_error( $response ) && isset( $response['response']['code'] ) && 200 === $response['response']['code'] ) {
1669
- $body = wp_remote_retrieve_body( $response );
1670
- if ( ! empty( $body -> engagement ) && isset( $body -> engagement -> share_count ) ) {
1671
- $share_count_transient['facebook'] = $body -> engagement -> share_count;
1672
- } else {
1673
- $share_count_transient['facebook'] = 0;
1674
- }
1675
- } else {
1676
- $share_count_transient['facebook'] = 0;
1677
- }
1678
- }
1679
- }
1680
- }
1681
  if ( ! is_wp_error( $response ) && isset( $response['response']['code'] ) && 200 === $response['response']['code'] ) {
1682
  $body = wp_remote_retrieve_body( $response );
1683
  if ( $provider == 'pinterest' ) {
1525
  */
1526
  private function fetch_fb_access_token() {
1527
 
1528
+ if ( $this->options['fb_key'] && $this->options['fb_secret'] ) {
1529
+ return $this->options['fb_key'] . '|' . $this->options['fb_secret'];
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1530
  }
1531
 
1532
  return false;
1600
  switch ( $provider ) {
1601
  case 'facebook':
1602
  $fb_access_token = $this->fetch_fb_access_token();
1603
+ if ( $fb_access_token ) {
 
 
1604
  $url = "https://graph.facebook.com/?access_token=" . $fb_access_token . "&fields=engagement&id=" . $target_url;
1605
+ } else {
1606
+ $url = '';
1607
  }
1608
  break;
1609
  case 'twitter':
1635
  }
1636
  if ( $url == '' ) { continue; }
1637
  $response = wp_remote_get( $url, array( 'timeout' => 15, 'user-agent' => 'Sassy-Social-Share' ) );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1638
  if ( ! is_wp_error( $response ) && isset( $response['response']['code'] ) && 200 === $response['response']['code'] ) {
1639
  $body = wp_remote_retrieve_body( $response );
1640
  if ( $provider == 'pinterest' ) {
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.heateor.com/donate/?action=Sassy+Social+Share
4
  Tags: social share, social sharing, social media share, share facebook, facebook social share, wordpress social share, share buttons, social share buttons, facebook like, twitter tweet, whatsapp share, line share
5
  Requires at least: 2.5.0
6
  Tested up to: 5.2
7
- Stable tag: 3.2.23
8
  License: GPLv2 or later
9
 
10
  Slickest, Simplest and Optimized Share buttons. Facebook, Twitter, Reddit, Pinterest, WhatsApp and over 100 more.
@@ -123,6 +123,9 @@ Yes, we can help you with it. Just drop an email at support[at]heateor[dot]com
123
  4. **Universal Sharing Popup**: Universal Sharing popup having all the supported sharing and bookmarking services
124
 
125
  == Changelog ==
 
 
 
126
  = 3.2.23 =
127
  * [Bugfix] Performance improvement and minor bugfix
128
 
@@ -761,4 +764,7 @@ Yes, we can help you with it. Just drop an email at support[at]heateor[dot]com
761
  * [Bugfix] Performance improvement
762
 
763
  = 3.2.23 =
764
- * [Bugfix] Performance improvement and minor bugfix
 
 
 
4
  Tags: social share, social sharing, social media share, share facebook, facebook social share, wordpress social share, share buttons, social share buttons, facebook like, twitter tweet, whatsapp share, line share
5
  Requires at least: 2.5.0
6
  Tested up to: 5.2
7
+ Stable tag: 3.2.24
8
  License: GPLv2 or later
9
 
10
  Slickest, Simplest and Optimized Share buttons. Facebook, Twitter, Reddit, Pinterest, WhatsApp and over 100 more.
123
  4. **Universal Sharing Popup**: Universal Sharing popup having all the supported sharing and bookmarking services
124
 
125
  == Changelog ==
126
+ = 3.2.24 =
127
+ * [Bugfix] Facebook share count was not working in some cases
128
+
129
  = 3.2.23 =
130
  * [Bugfix] Performance improvement and minor bugfix
131
 
764
  * [Bugfix] Performance improvement
765
 
766
  = 3.2.23 =
767
+ * [Bugfix] Performance improvement and minor bugfix
768
+
769
+ = 3.2.24 =
770
+ * [Bugfix] Facebook share count was not working in some cases
sassy-social-share.php CHANGED
@@ -7,7 +7,7 @@
7
  * Plugin Name: Sassy Social Share
8
  * Plugin URI: https://www.heateor.com
9
  * Description: Slickest, Simplest and Optimized Share buttons. Facebook, Twitter, Reddit, Pinterest, WhatsApp and over 100 more
10
- * Version: 3.2.23
11
  * Author: Team Heateor
12
  * Author URI: https://www.heateor.com
13
  * Text Domain: sassy-social-share
@@ -21,7 +21,7 @@ if ( ! defined( 'WPINC' ) ) {
21
  die;
22
  }
23
 
24
- define( 'HEATEOR_SSS_VERSION', '3.2.23' );
25
  define( 'HEATEOR_SSS_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
26
 
27
  // plugin core class object
@@ -129,9 +129,7 @@ function heateor_sss_save_default_options() {
129
  'custom_css' => '',
130
  'amp_enable' => '1',
131
  'fb_key' => '',
132
- 'fb_secret' => '',
133
- 'vertical_fb_key' => '',
134
- 'vertical_fb_secret' => ''
135
  ) );
136
 
137
  // plugin version
7
  * Plugin Name: Sassy Social Share
8
  * Plugin URI: https://www.heateor.com
9
  * Description: Slickest, Simplest and Optimized Share buttons. Facebook, Twitter, Reddit, Pinterest, WhatsApp and over 100 more
10
+ * Version: 3.2.24
11
  * Author: Team Heateor
12
  * Author URI: https://www.heateor.com
13
  * Text Domain: sassy-social-share
21
  die;
22
  }
23
 
24
+ define( 'HEATEOR_SSS_VERSION', '3.2.24' );
25
  define( 'HEATEOR_SSS_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
26
 
27
  // plugin core class object
129
  'custom_css' => '',
130
  'amp_enable' => '1',
131
  'fb_key' => '',
132
+ 'fb_secret' => ''
 
 
133
  ) );
134
 
135
  // plugin version