WordPress Social Sharing Plugin – Sassy Social Share - Version 3.2.20

Version Description

  • [Bugfix] Facebook shares were not working because of the expiration of Facebook API v2.8
  • [Bugfix] Fixed a PHP error occurring when floating share bar enabled via shortcode
  • [Improvement] Share counts are loading faster
Download this release

Release Info

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

Code changes from version 3.2.19 to 3.2.20

admin/class-sassy-social-share-admin.php CHANGED
@@ -455,6 +455,18 @@ class Sassy_Social_Share_Admin {
455
 
456
  }
457
 
 
 
 
 
 
 
 
 
 
 
 
 
458
  /**
459
  * Show notices in admin area
460
  *
@@ -483,6 +495,34 @@ class Sassy_Social_Share_Admin {
483
  <?php
484
  }
485
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
486
  if ( version_compare( '3.2.1', $this->version ) <= 0 ) {
487
  if ( ! get_option( 'heateor_sss_gdpr_notification_read' ) ) {
488
  ?>
@@ -629,6 +669,14 @@ class Sassy_Social_Share_Admin {
629
  heateor_sss_update_svg_css( $this->options['vertical_font_color_hover'], 'sassy-social-share-hover-svg-vertical' );
630
  }
631
 
 
 
 
 
 
 
 
 
632
  if ( version_compare( '3.2.18', $current_version ) > 0 ) {
633
  $networks_to_remove = array( 'google_plus', 'google_plusone', 'google_plus_share' );
634
  if ( $this->options['vertical_re_providers'] ) {
455
 
456
  }
457
 
458
+ /**
459
+ * Save Facebook share count notification flag in DB
460
+ *
461
+ * @since 3.2.20
462
+ */
463
+ public function fb_count_notification_read() {
464
+
465
+ update_option( 'heateor_sss_fb_count_notification_read', '1' );
466
+ die;
467
+
468
+ }
469
+
470
  /**
471
  * Show notices in admin area
472
  *
495
  <?php
496
  }
497
 
498
+ if ( version_compare( '3.2.20', $this->version ) <= 0 ) {
499
+ if ( ( ( in_array( 'facebook', $this->options['horizontal_re_providers'] ) && ( isset( $this->options['horizontal_counts'] ) || isset( $this->options['horizontal_total_shares'] ) ) ) || ( in_array( 'facebook', $this->options['vertical_re_providers'] ) && ( isset( $this->options['vertical_counts'] ) || isset( $this->options['vertical_total_shares'] ) ) ) ) && ! get_option( 'heateor_sss_fb_count_notification_read' ) ) {
500
+ ?>
501
+ <script type="text/javascript">
502
+ function heateorSssFBCountNotificationRead(){
503
+ jQuery.ajax({
504
+ type: 'GET',
505
+ url: '<?php echo get_admin_url() ?>admin-ajax.php',
506
+ data: {
507
+ action: 'heateor_sss_fb_count_notification_read'
508
+ },
509
+ success: function(data, textStatus, XMLHttpRequest){
510
+ jQuery('#heateor_sss_fb_count_notification').fadeOut();
511
+ }
512
+ });
513
+ }
514
+ </script>
515
+ <div id="heateor_sss_fb_count_notification" class="update-nag">
516
+ <h3>Sassy Social Share</h3>
517
+ <p>
518
+ <?php _e( 'Save Facebook App ID and Secret keys in "Standard Interface" and/or "Floating Interface" section(s) to fix the issue with Facebook share count. After that, clear share counts cache from "Miscellaneous" section.', 'sassy-social-share' ); ?>
519
+ <p><input type="button" onclick="heateorSssFBCountNotificationRead()" style="margin-left: 5px;" class="button button-primary" value="<?php _e( 'Okay', 'sassy-social-share' ) ?>" /></p>
520
+ </p>
521
+ </div>
522
+ <?php
523
+ }
524
+ }
525
+
526
  if ( version_compare( '3.2.1', $this->version ) <= 0 ) {
527
  if ( ! get_option( 'heateor_sss_gdpr_notification_read' ) ) {
528
  ?>
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'] = '';
675
+ $this->options['vertical_fb_key'] = '';
676
+ $this->options['vertical_fb_secret'] = '';
677
+ update_option( 'heateor_sss', $this->options );
678
+ }
679
+
680
  if ( version_compare( '3.2.18', $current_version ) > 0 ) {
681
  $networks_to_remove = array( 'google_plus', 'google_plusone', 'google_plus_share' );
682
  if ( $this->options['vertical_re_providers'] ) {
admin/js/sassy-social-share-options.js CHANGED
@@ -249,6 +249,19 @@ function heateorSssVerticalCounterPreview(val){
249
  }
250
  }
251
 
 
 
 
 
 
 
 
 
 
 
 
 
 
252
  jQuery(document).ready(function() {
253
  // instagram username option
254
  jQuery('input#heateor_sss_instagram').click(function(){
@@ -265,6 +278,23 @@ jQuery(document).ready(function() {
265
  jQuery('#heateor_sss_vertical_instagram_options').css('display', 'none');
266
  }
267
  });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
268
  jQuery('input#heateor_sss_vertical_instagram_username').keyup(function(){
269
  jQuery('#heateor_sss_instagram_username').val(jQuery(this).val().trim());
270
  });
249
  }
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
+
265
  jQuery(document).ready(function() {
266
  // instagram username option
267
  jQuery('input#heateor_sss_instagram').click(function(){
278
  jQuery('#heateor_sss_vertical_instagram_options').css('display', 'none');
279
  }
280
  });
281
+ // facebook share count option
282
+ jQuery('input#heateor_sss_facebook').click(function(){
283
+ if(jQuery(this).is(':checked')){
284
+ heateorSssHorizontalFacebookShareEnabled = true;
285
+ }else{
286
+ heateorSssHorizontalFacebookShareEnabled = false;
287
+ }
288
+ heateor_sss_toggle_fb_share_count_options();
289
+ });
290
+ jQuery('input#heateor_sss_vertical_sharing_facebook').click(function(){
291
+ if(jQuery(this).is(':checked')){
292
+ heateorSssVerticalFacebookShareEnabled = true;
293
+ }else{
294
+ heateorSssVerticalFacebookShareEnabled = false;
295
+ }
296
+ heateor_sss_toggle_fb_share_count_options();
297
+ });
298
  jQuery('input#heateor_sss_vertical_instagram_username').keyup(function(){
299
  jQuery('#heateor_sss_instagram_username').val(jQuery(this).val().trim());
300
  });
admin/partials/sassy-social-share-options-page.php CHANGED
@@ -789,13 +789,15 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
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__ ) ?>" />
792
- <label><?php _e("Rearrange icons", 'sassy-social-share' ); ?></label>
793
  </th>
794
  </tr>
795
 
796
  <tr>
797
  <td colspan="2">
798
  <script>
 
 
799
  <?php
800
  $horSharingStyle = 'width:' . ( $options['horizontal_sharing_shape'] != 'rectangle' ? $options['horizontal_sharing_size'] : $options['horizontal_sharing_width'] ) . 'px;height:' . $line_height . 'px;';
801
  $horDeliciousRadius = '';
@@ -1019,10 +1021,10 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
1019
  <tr>
1020
  <th>
1021
  <img id="heateor_sss_count_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
1022
- <label for="heateor_sss_counts"><?php _e("Show share counts", 'sassy-social-share' ); ?></label>
1023
  </th>
1024
  <td>
1025
- <input id="heateor_sss_counts" name="heateor_sss[horizontal_counts]" type="checkbox" <?php echo isset( $options['horizontal_counts'] ) ? 'checked = "checked"' : '';?> value="1" />
1026
  <br/>
1027
  <span class="heateor_sss_help_content" style="display:block"><?php _e( 'Share counts are supported for Facebook, Twitter, Linkedin, Buffer, Reddit, Pinterest, Odnoklassniki, Fintel and Vkontakte', 'sassy-social-share' ) ?></span>
1028
  <span class="heateor_sss_help_content" style="display:block"><strong><?php echo sprintf( __( 'To show Twitter share count, you have to click "Give me my Twitter counts back" button at <a href="%s" target="_blank">TwitCount.com</a> and register your website %s with them. No need to copy-paste any code from their website.', 'sassy-social-share' ), 'http://twitcount.com', home_url() ) ?></strong></span>
@@ -1044,7 +1046,7 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
1044
  <label for="heateor_sss_total_hor_shares"><?php _e("Show total shares", 'sassy-social-share' ); ?></label>
1045
  </th>
1046
  <td>
1047
- <input id="heateor_sss_total_hor_shares" name="heateor_sss[horizontal_total_shares]" type="checkbox" <?php echo isset( $options['horizontal_total_shares'] ) ? 'checked = "checked"' : '';?> value="1" />
1048
  </td>
1049
  </tr>
1050
 
@@ -1056,11 +1058,63 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
1056
  </div>
1057
  </td>
1058
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1059
 
1060
  <tr>
1061
  <th>
1062
  <img id="heateor_sss_hmore_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
1063
- <label for="heateor_sss_hmore"><?php _e("Enable 'More' icon", 'sassy-social-share' ); ?></label>
1064
  </th>
1065
  <td>
1066
  <input id="heateor_sss_hmore" name="heateor_sss[horizontal_more]" type="checkbox" <?php echo isset( $options['horizontal_more'] ) ? 'checked = "checked"' : '';?> value="1" />
@@ -1444,7 +1498,7 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
1444
  <label for="heateor_sss_vertical_counts"><?php _e( "Show share counts", 'sassy-social-share' ); ?></label>
1445
  </th>
1446
  <td>
1447
- <input id="heateor_sss_vertical_counts" name="heateor_sss[vertical_counts]" type="checkbox" <?php echo isset( $options['vertical_counts'] ) ? 'checked = "checked"' : '';?> value="1" />
1448
  <br/>
1449
  <span class="heateor_sss_help_content" style="display:block"><?php _e( 'Share counts are supported for Facebook, Twitter, Linkedin, Buffer, Reddit, Pinterest, Odnoklassniki, Fintel and Vkontakte', 'sassy-social-share' ) ?></span>
1450
  <span class="heateor_sss_help_content" style="display:block"><strong><?php echo sprintf( __( 'To show Twitter share count, you have to click "Give me my Twitter counts back" button at <a href="%s" target="_blank">TwitCount.com</a> and register your website %s with them. No need to copy-paste any code from their website.', 'sassy-social-share' ), 'http://twitcount.com', home_url() ) ?></strong></span>
@@ -1466,7 +1520,7 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
1466
  <label for="heateor_sss_total_vertical_shares"><?php _e( "Show total shares", 'sassy-social-share' ); ?></label>
1467
  </th>
1468
  <td>
1469
- <input id="heateor_sss_total_vertical_shares" name="heateor_sss[vertical_total_shares]" type="checkbox" <?php echo isset( $options['vertical_total_shares'] ) ? 'checked = "checked"' : '';?> value="1" />
1470
  </td>
1471
  </tr>
1472
 
@@ -1479,6 +1533,44 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
1479
  </td>
1480
  </tr>
1481
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1482
  <tr>
1483
  <th>
1484
  <img id="heateor_sss_vmore_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
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__ ) ?>" />
792
+ <label><?php _e( "Rearrange icons", 'sassy-social-share' ); ?></label>
793
  </th>
794
  </tr>
795
 
796
  <tr>
797
  <td colspan="2">
798
  <script>
799
+ // facebook app id and secret options toggle variables
800
+ var heateorSssHorizontalShares = <?php echo isset( $options['horizontal_counts'] ) ? 'true' : 'false' ?>, heateorSssHorizontalTotalShares = <?php echo isset( $options['horizontal_total_shares'] ) ? 'true' : 'false' ?>, heateorSssVerticalShares = <?php echo isset( $options['vertical_counts'] ) ? 'true' : 'false' ?>, heateorSssVerticalTotalShares = <?php echo isset( $options['vertical_total_shares'] ) ? 'true' : 'false' ?>, heateorSssHorizontalFacebookShareEnabled = <?php echo in_array( 'facebook', $options['horizontal_re_providers'] ) ? 'true' : 'false'; ?>, heateorSssVerticalFacebookShareEnabled = <?php echo in_array( 'facebook', $options['vertical_re_providers'] ) ? 'true' : 'false'; ?>;
801
  <?php
802
  $horSharingStyle = 'width:' . ( $options['horizontal_sharing_shape'] != 'rectangle' ? $options['horizontal_sharing_size'] : $options['horizontal_sharing_width'] ) . 'px;height:' . $line_height . 'px;';
803
  $horDeliciousRadius = '';
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__ ) ?>" />
1024
+ <label for="heateor_sss_counts"><?php _e( "Show share counts", 'sassy-social-share' ); ?></label>
1025
  </th>
1026
  <td>
1027
+ <input id="heateor_sss_counts" name="heateor_sss[horizontal_counts]" type="checkbox" <?php echo isset( $options['horizontal_counts'] ) ? 'checked = "checked"' : '';?> value="1" onclick="if(this.checked){heateorSssHorizontalShares = true;}else{heateorSssHorizontalShares = false;} heateor_sss_toggle_fb_share_count_options()" />
1028
  <br/>
1029
  <span class="heateor_sss_help_content" style="display:block"><?php _e( 'Share counts are supported for Facebook, Twitter, Linkedin, Buffer, Reddit, Pinterest, Odnoklassniki, Fintel and Vkontakte', 'sassy-social-share' ) ?></span>
1030
  <span class="heateor_sss_help_content" style="display:block"><strong><?php echo sprintf( __( 'To show Twitter share count, you have to click "Give me my Twitter counts back" button at <a href="%s" target="_blank">TwitCount.com</a> and register your website %s with them. No need to copy-paste any code from their website.', 'sassy-social-share' ), 'http://twitcount.com', home_url() ) ?></strong></span>
1046
  <label for="heateor_sss_total_hor_shares"><?php _e("Show total shares", 'sassy-social-share' ); ?></label>
1047
  </th>
1048
  <td>
1049
+ <input id="heateor_sss_total_hor_shares" name="heateor_sss[horizontal_total_shares]" type="checkbox" <?php echo isset( $options['horizontal_total_shares'] ) ? 'checked = "checked"' : '';?> value="1" onclick="if(this.checked){heateorSssHorizontalTotalShares = true;}else{heateorSssHorizontalTotalShares = false;} heateor_sss_toggle_fb_share_count_options()" />
1050
  </td>
1051
  </tr>
1052
 
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>
1116
  <img id="heateor_sss_hmore_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
1117
+ <label for="heateor_sss_hmore"><?php _e( "Enable 'More' icon", 'sassy-social-share' ); ?></label>
1118
  </th>
1119
  <td>
1120
  <input id="heateor_sss_hmore" name="heateor_sss[horizontal_more]" type="checkbox" <?php echo isset( $options['horizontal_more'] ) ? 'checked = "checked"' : '';?> value="1" />
1498
  <label for="heateor_sss_vertical_counts"><?php _e( "Show share counts", 'sassy-social-share' ); ?></label>
1499
  </th>
1500
  <td>
1501
+ <input id="heateor_sss_vertical_counts" name="heateor_sss[vertical_counts]" type="checkbox" <?php echo isset( $options['vertical_counts'] ) ? 'checked = "checked"' : '';?> value="1" onclick="if(this.checked){heateorSssVerticalShares = true;}else{heateorSssVerticalShares = false;} heateor_sss_toggle_fb_share_count_options()" />
1502
  <br/>
1503
  <span class="heateor_sss_help_content" style="display:block"><?php _e( 'Share counts are supported for Facebook, Twitter, Linkedin, Buffer, Reddit, Pinterest, Odnoklassniki, Fintel and Vkontakte', 'sassy-social-share' ) ?></span>
1504
  <span class="heateor_sss_help_content" style="display:block"><strong><?php echo sprintf( __( 'To show Twitter share count, you have to click "Give me my Twitter counts back" button at <a href="%s" target="_blank">TwitCount.com</a> and register your website %s with them. No need to copy-paste any code from their website.', 'sassy-social-share' ), 'http://twitcount.com', home_url() ) ?></strong></span>
1520
  <label for="heateor_sss_total_vertical_shares"><?php _e( "Show total shares", 'sassy-social-share' ); ?></label>
1521
  </th>
1522
  <td>
1523
+ <input id="heateor_sss_total_vertical_shares" name="heateor_sss[vertical_total_shares]" type="checkbox" onclick="if(this.checked){heateorSssVerticalTotalShares = true;}else{heateorSssVerticalTotalShares = false;} heateor_sss_toggle_fb_share_count_options()" <?php echo isset( $options['vertical_total_shares'] ) ? 'checked = "checked"' : '';?> value="1" />
1524
  </td>
1525
  </tr>
1526
 
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__ ) ?>" />
includes/class-sassy-social-share-shortcodes.php CHANGED
@@ -77,7 +77,7 @@ class Sassy_Social_Share_Shortcodes {
77
  $target_url = esc_url( home_url() );
78
  $post_id = 0;
79
  } elseif ( ! is_singular() && $type == 'vertical' ) {
80
- $target_url = html_entity_decode( esc_url( the_champ_get_http() . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"] ) );
81
  $post_id = 0;
82
  } elseif ( isset( $_SERVER['QUERY_STRING'] ) && $_SERVER['QUERY_STRING'] ) {
83
  $target_url = html_entity_decode( esc_url( $this->public_class_object->get_http_protocol() . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"] ) );
77
  $target_url = esc_url( home_url() );
78
  $post_id = 0;
79
  } elseif ( ! is_singular() && $type == 'vertical' ) {
80
+ $target_url = html_entity_decode( esc_url( $this->public_class_object->get_http_protocol() . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"] ) );
81
  $post_id = 0;
82
  } elseif ( isset( $_SERVER['QUERY_STRING'] ) && $_SERVER['QUERY_STRING'] ) {
83
  $target_url = html_entity_decode( esc_url( $this->public_class_object->get_http_protocol() . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"] ) );
includes/class-sassy-social-share.php CHANGED
@@ -130,6 +130,8 @@ class Sassy_Social_Share {
130
  add_action( 'plugins_loaded', array( $plugin_admin, 'update_db_check' ) );
131
  // save GDPR notification flag in DB
132
  add_action( 'wp_ajax_heateor_sss_gdpr_notification_read', array( $plugin_admin, 'gdpr_notification_read' ) );
 
 
133
  // save Twitter share count notification flag in DB
134
  add_action( 'wp_ajax_heateor_sss_twitter_share_notification_read', array( $plugin_admin, 'twitter_share_notification_read' ) );
135
  // save Twitcount notification flag in DB
130
  add_action( 'plugins_loaded', array( $plugin_admin, 'update_db_check' ) );
131
  // save GDPR notification flag in DB
132
  add_action( 'wp_ajax_heateor_sss_gdpr_notification_read', array( $plugin_admin, 'gdpr_notification_read' ) );
133
+ // save FB share count notification flag in DB
134
+ add_action( 'wp_ajax_heateor_sss_fb_count_notification_read', array( $plugin_admin, 'fb_count_notification_read' ) );
135
  // save Twitter share count notification flag in DB
136
  add_action( 'wp_ajax_heateor_sss_twitter_share_notification_read', array( $plugin_admin, 'twitter_share_notification_read' ) );
137
  // save Twitcount notification flag in DB
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-06 07:08+0530\n"
6
- "PO-Revision-Date: 2019-04-06 07:08+0530\n"
7
  "Last-Translator: Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <hello@heateor.com>\n"
9
  "Language: en_IN\n"
@@ -64,22 +64,37 @@ msgstr ""
64
  msgid "Dismiss this notice"
65
  msgstr ""
66
 
67
- #: ../admin/class-sassy-social-share-admin.php:468
68
  msgid "Thanks for installing Sassy Social Share plugin"
69
  msgstr ""
70
 
71
- #: ../admin/class-sassy-social-share-admin.php:470
72
  msgid "Configure the Plugin"
73
  msgstr ""
74
 
75
- #: ../admin/class-sassy-social-share-admin.php:481
76
  msgid ""
77
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
78
  "with current version of Sassy Social Share"
79
  msgstr ""
80
 
81
- #: ../admin/class-sassy-social-share-admin.php:505
82
- #: ../admin/class-sassy-social-share-admin.php:578
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
83
  #, php-format
84
  msgid ""
85
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
@@ -87,14 +102,7 @@ msgid ""
87
  "\"%s\" target=\"_blank\">here</a>"
88
  msgstr ""
89
 
90
- #: ../admin/class-sassy-social-share-admin.php:505
91
- #: ../admin/class-sassy-social-share-admin.php:531
92
- #: ../admin/class-sassy-social-share-admin.php:554
93
- #: ../admin/class-sassy-social-share-admin.php:578
94
- msgid "Okay"
95
- msgstr ""
96
-
97
- #: ../admin/class-sassy-social-share-admin.php:531
98
  #, php-format
99
  msgid ""
100
  "Twitter share counts are no longer working as newsharecounts.com is down. To "
@@ -102,7 +110,7 @@ msgid ""
102
  "\"_blank\">here</a> with this domain. No other steps needed."
103
  msgstr ""
104
 
105
- #: ../admin/class-sassy-social-share-admin.php:554
106
  #, php-format
107
  msgid ""
108
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
@@ -111,20 +119,20 @@ msgid ""
111
  "your website %s with them. No need to copy-paste any code from their website."
112
  msgstr ""
113
 
114
- #: ../admin/class-sassy-social-share-admin.php:595
115
  msgid "Add-Ons"
116
  msgstr ""
117
 
118
- #: ../admin/class-sassy-social-share-admin.php:596
119
  msgid "Support Documentation"
120
  msgstr ""
121
 
122
- #: ../admin/class-sassy-social-share-admin.php:597
123
  msgid "Settings"
124
  msgstr ""
125
 
126
  #: ../admin/partials/sassy-social-share-options-page.php:16
127
- #: ../admin/partials/sassy-social-share-options-page.php:2014
128
  #, php-format
129
  msgid ""
130
  "You can appreciate the effort put in this free plugin by rating it <a href="
@@ -144,7 +152,7 @@ msgid "Floating Interface"
144
  msgstr ""
145
 
146
  #: ../admin/partials/sassy-social-share-options-page.php:27
147
- #: ../admin/partials/sassy-social-share-options-page.php:1590
148
  msgid "Miscellaneous"
149
  msgstr ""
150
 
@@ -153,8 +161,8 @@ msgid "3rd Party Integration"
153
  msgstr ""
154
 
155
  #: ../admin/partials/sassy-social-share-options-page.php:35
156
- #: ../admin/partials/sassy-social-share-options-page.php:1938
157
- #: ../admin/partials/sassy-social-share-options-page.php:1940
158
  msgid "Shortcode & Widget"
159
  msgstr ""
160
 
@@ -163,7 +171,7 @@ msgid "Troubleshooter"
163
  msgstr ""
164
 
165
  #: ../admin/partials/sassy-social-share-options-page.php:37
166
- #: ../admin/partials/sassy-social-share-options-page.php:1971
167
  msgid "FAQ"
168
  msgstr ""
169
 
@@ -190,13 +198,13 @@ msgstr ""
190
 
191
  #: ../admin/partials/sassy-social-share-options-page.php:133
192
  #: ../admin/partials/sassy-social-share-options-page.php:441
193
- #: ../includes/class-sassy-social-share-widgets.php:642
194
  msgid "Round"
195
  msgstr ""
196
 
197
  #: ../admin/partials/sassy-social-share-options-page.php:135
198
  #: ../admin/partials/sassy-social-share-options-page.php:443
199
- #: ../includes/class-sassy-social-share-widgets.php:643
200
  msgid "Square"
201
  msgstr ""
202
 
@@ -285,8 +293,8 @@ msgstr ""
285
 
286
  #: ../admin/partials/sassy-social-share-options-page.php:270
287
  #: ../admin/partials/sassy-social-share-options-page.php:578
288
- #: ../admin/partials/sassy-social-share-options-page.php:1290
289
- #: ../includes/class-sassy-social-share-widgets.php:425
290
  msgid "Background Color"
291
  msgstr ""
292
 
@@ -335,9 +343,9 @@ msgstr ""
335
 
336
  #: ../admin/partials/sassy-social-share-options-page.php:320
337
  #: ../admin/partials/sassy-social-share-options-page.php:627
338
- #: ../admin/partials/sassy-social-share-options-page.php:907
339
- #: ../admin/partials/sassy-social-share-options-page.php:1312
340
- #: ../includes/class-sassy-social-share-widgets.php:411
341
  msgid "Left"
342
  msgstr ""
343
 
@@ -348,9 +356,9 @@ msgstr ""
348
 
349
  #: ../admin/partials/sassy-social-share-options-page.php:324
350
  #: ../admin/partials/sassy-social-share-options-page.php:631
351
- #: ../admin/partials/sassy-social-share-options-page.php:909
352
- #: ../admin/partials/sassy-social-share-options-page.php:1313
353
- #: ../includes/class-sassy-social-share-widgets.php:412
354
  msgid "Right"
355
  msgstr ""
356
 
@@ -401,32 +409,32 @@ msgid "Master control to enable standard sharing"
401
  msgstr ""
402
 
403
  #: ../admin/partials/sassy-social-share-options-page.php:692
404
- #: ../admin/partials/sassy-social-share-options-page.php:1116
405
  msgid "Target Url"
406
  msgstr ""
407
 
408
  #: ../admin/partials/sassy-social-share-options-page.php:696
409
- #: ../admin/partials/sassy-social-share-options-page.php:1120
410
  msgid "Url of the webpage where icons are located (default)"
411
  msgstr ""
412
 
413
  #: ../admin/partials/sassy-social-share-options-page.php:698
414
- #: ../admin/partials/sassy-social-share-options-page.php:1122
415
  msgid "Url of the homepage of your website"
416
  msgstr ""
417
 
418
  #: ../admin/partials/sassy-social-share-options-page.php:700
419
- #: ../admin/partials/sassy-social-share-options-page.php:1124
420
  msgid "Custom url"
421
  msgstr ""
422
 
423
  #: ../admin/partials/sassy-social-share-options-page.php:707
424
- #: ../admin/partials/sassy-social-share-options-page.php:1131
425
  msgid "Url to share"
426
  msgstr ""
427
 
428
  #: ../admin/partials/sassy-social-share-options-page.php:715
429
- #: ../includes/class-sassy-social-share-widgets.php:636
430
  msgid "Title"
431
  msgstr ""
432
 
@@ -435,171 +443,171 @@ msgid "The text to display above the sharing interface"
435
  msgstr ""
436
 
437
  #: ../admin/partials/sassy-social-share-options-page.php:749
438
- #: ../admin/partials/sassy-social-share-options-page.php:1140
439
  msgid "Instagram username"
440
  msgstr ""
441
 
442
  #: ../admin/partials/sassy-social-share-options-page.php:759
443
- #: ../admin/partials/sassy-social-share-options-page.php:1150
444
  msgid ""
445
  "Username of the Instagram account you want to redirect users to, on clicking "
446
  "the icon"
447
  msgstr ""
448
 
449
  #: ../admin/partials/sassy-social-share-options-page.php:769
450
- #: ../admin/partials/sassy-social-share-options-page.php:1160
451
  msgid "HTML ID of container element of comment form"
452
  msgstr ""
453
 
454
  #: ../admin/partials/sassy-social-share-options-page.php:779
455
- #: ../admin/partials/sassy-social-share-options-page.php:1170
456
  msgid ""
457
  "HTML ID of the element you want to focus on the webpage, on click of Comment "
458
  "icon."
459
  msgstr ""
460
 
461
  #: ../admin/partials/sassy-social-share-options-page.php:792
462
- #: ../admin/partials/sassy-social-share-options-page.php:1179
463
  msgid "Rearrange icons"
464
  msgstr ""
465
 
466
- #: ../admin/partials/sassy-social-share-options-page.php:851
467
- #: ../admin/partials/sassy-social-share-options-page.php:1238
468
  msgid "Drag the icons to rearrange in desired order"
469
  msgstr ""
470
 
471
- #: ../admin/partials/sassy-social-share-options-page.php:859
472
- #: ../admin/partials/sassy-social-share-options-page.php:1246
473
  msgid "Select Sharing Services"
474
  msgstr ""
475
 
476
- #: ../admin/partials/sassy-social-share-options-page.php:866
477
- #: ../admin/partials/sassy-social-share-options-page.php:1253
478
  msgid "Select sharing services to show in social share bar"
479
  msgstr ""
480
 
481
- #: ../admin/partials/sassy-social-share-options-page.php:884
482
- #: ../admin/partials/sassy-social-share-options-page.php:1271
483
  msgid "Search social network"
484
  msgstr ""
485
 
486
- #: ../admin/partials/sassy-social-share-options-page.php:903
487
- #: ../admin/partials/sassy-social-share-options-page.php:1308
488
  msgid "Horizontal alignment"
489
  msgstr ""
490
 
491
- #: ../admin/partials/sassy-social-share-options-page.php:908
492
  msgid "Center"
493
  msgstr ""
494
 
495
- #: ../admin/partials/sassy-social-share-options-page.php:917
496
- #: ../admin/partials/sassy-social-share-options-page.php:1321
497
  msgid "Horizontal alignment of the sharing interface"
498
  msgstr ""
499
 
500
- #: ../admin/partials/sassy-social-share-options-page.php:925
501
  msgid "Position with respect to content"
502
  msgstr ""
503
 
504
- #: ../admin/partials/sassy-social-share-options-page.php:929
505
  msgid "Top of the content"
506
  msgstr ""
507
 
508
- #: ../admin/partials/sassy-social-share-options-page.php:931
509
  msgid "Bottom of the content"
510
  msgstr ""
511
 
512
- #: ../admin/partials/sassy-social-share-options-page.php:938
513
  msgid "Specify position of the sharing interface with respect to the content"
514
  msgstr ""
515
 
516
- #: ../admin/partials/sassy-social-share-options-page.php:946
517
- #: ../admin/partials/sassy-social-share-options-page.php:1387
518
  msgid "Placement"
519
  msgstr ""
520
 
521
- #: ../admin/partials/sassy-social-share-options-page.php:950
522
- #: ../admin/partials/sassy-social-share-options-page.php:1391
523
  msgid "Homepage"
524
  msgstr ""
525
 
526
- #: ../admin/partials/sassy-social-share-options-page.php:952
527
- #: ../admin/partials/sassy-social-share-options-page.php:1393
528
  msgid "Posts"
529
  msgstr ""
530
 
531
- #: ../admin/partials/sassy-social-share-options-page.php:954
532
- #: ../admin/partials/sassy-social-share-options-page.php:1395
533
  msgid "Pages"
534
  msgstr ""
535
 
536
- #: ../admin/partials/sassy-social-share-options-page.php:956
537
- #: ../admin/partials/sassy-social-share-options-page.php:1397
538
  msgid "Excerpts and Posts page"
539
  msgstr ""
540
 
541
- #: ../admin/partials/sassy-social-share-options-page.php:958
542
- #: ../admin/partials/sassy-social-share-options-page.php:1399
543
  msgid "Category Archives"
544
  msgstr ""
545
 
546
- #: ../admin/partials/sassy-social-share-options-page.php:960
547
- #: ../admin/partials/sassy-social-share-options-page.php:1401
548
  msgid "Archive Pages (Category, Tag, Author or Date based pages)"
549
  msgstr ""
550
 
551
- #: ../admin/partials/sassy-social-share-options-page.php:976
552
  msgid "BuddyPress activity"
553
  msgstr ""
554
 
555
- #: ../admin/partials/sassy-social-share-options-page.php:978
556
  msgid "BuddyPress group (only at top of content)"
557
  msgstr ""
558
 
559
- #: ../admin/partials/sassy-social-share-options-page.php:984
560
- #: ../admin/partials/sassy-social-share-options-page.php:1423
561
  msgid "BBPress forum"
562
  msgstr ""
563
 
564
- #: ../admin/partials/sassy-social-share-options-page.php:987
565
- #: ../admin/partials/sassy-social-share-options-page.php:1426
566
  msgid "BBPress topic"
567
  msgstr ""
568
 
569
- #: ../admin/partials/sassy-social-share-options-page.php:990
570
  msgid "BBPress reply"
571
  msgstr ""
572
 
573
- #: ../admin/partials/sassy-social-share-options-page.php:997
574
  msgid "After individual product at WooCommerce Shop page"
575
  msgstr ""
576
 
577
- #: ../admin/partials/sassy-social-share-options-page.php:1000
578
  msgid "WooCommerce Product Page"
579
  msgstr ""
580
 
581
- #: ../admin/partials/sassy-social-share-options-page.php:1003
582
  msgid "WooCommerce Thankyou Page"
583
  msgstr ""
584
 
585
- #: ../admin/partials/sassy-social-share-options-page.php:1014
586
  msgid "Specify the pages where you want to enable Sharing interface"
587
  msgstr ""
588
 
589
- #: ../admin/partials/sassy-social-share-options-page.php:1022
590
- #: ../admin/partials/sassy-social-share-options-page.php:1444
591
  msgid "Show share counts"
592
  msgstr ""
593
 
594
- #: ../admin/partials/sassy-social-share-options-page.php:1027
595
- #: ../admin/partials/sassy-social-share-options-page.php:1449
596
  msgid ""
597
  "Share counts are supported for Facebook, Twitter, Linkedin, Buffer, Reddit, "
598
  "Pinterest, Odnoklassniki, Fintel and Vkontakte"
599
  msgstr ""
600
 
601
- #: ../admin/partials/sassy-social-share-options-page.php:1028
602
- #: ../admin/partials/sassy-social-share-options-page.php:1450
603
  #, php-format
604
  msgid ""
605
  "To show Twitter share count, you have to click \"Give me my Twitter counts "
@@ -608,46 +616,72 @@ msgid ""
608
  "their website."
609
  msgstr ""
610
 
611
- #: ../admin/partials/sassy-social-share-options-page.php:1035
612
- #: ../admin/partials/sassy-social-share-options-page.php:1457
613
  msgid "If enabled, share counts are displayed above sharing icons."
614
  msgstr ""
615
 
616
- #: ../admin/partials/sassy-social-share-options-page.php:1044
617
- #: ../admin/partials/sassy-social-share-options-page.php:1466
618
  msgid "Show total shares"
619
  msgstr ""
620
 
621
- #: ../admin/partials/sassy-social-share-options-page.php:1054
622
- #: ../admin/partials/sassy-social-share-options-page.php:1476
623
  msgid "If enabled, total shares will be displayed with sharing icons"
624
  msgstr ""
625
 
626
- #: ../admin/partials/sassy-social-share-options-page.php:1063
627
- #: ../admin/partials/sassy-social-share-options-page.php:1485
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
628
  msgid "Enable 'More' icon"
629
  msgstr ""
630
 
631
- #: ../admin/partials/sassy-social-share-options-page.php:1073
632
- #: ../admin/partials/sassy-social-share-options-page.php:1495
633
  msgid ""
634
  "If enabled, \"More\" icon will be displayed after selected sharing icons "
635
  "which shows additional sharing networks in popup"
636
  msgstr ""
637
 
638
- #: ../admin/partials/sassy-social-share-options-page.php:1090
639
  msgid "Floating Sharing Interface Options"
640
  msgstr ""
641
 
642
- #: ../admin/partials/sassy-social-share-options-page.php:1096
643
  msgid "Enable Floating sharing interface"
644
  msgstr ""
645
 
646
- #: ../admin/partials/sassy-social-share-options-page.php:1106
647
  msgid "Master control to enable floating sharing widget"
648
  msgstr ""
649
 
650
- #: ../admin/partials/sassy-social-share-options-page.php:1300
651
  msgid ""
652
  "Specify the color or hex code (example #cc78e0) for the background of "
653
  "vertical sharing bar. Leave empty for transparent. You can get the hex code "
@@ -655,131 +689,131 @@ msgid ""
655
  "\"_blank\">this link</a>"
656
  msgstr ""
657
 
658
- #: ../admin/partials/sassy-social-share-options-page.php:1330
659
  msgid "Left offset"
660
  msgstr ""
661
 
662
- #: ../admin/partials/sassy-social-share-options-page.php:1340
663
  msgid ""
664
  "Specify a number. Increase in number will shift sharing interface towards "
665
  "right and decrease will shift it towards left. Number can be negative too."
666
  msgstr ""
667
 
668
- #: ../admin/partials/sassy-social-share-options-page.php:1350
669
  msgid "Right offset"
670
  msgstr ""
671
 
672
- #: ../admin/partials/sassy-social-share-options-page.php:1360
673
  msgid ""
674
  "Specify a number. Increase in number will shift sharing interface towards "
675
  "left and decrease will shift it towards right. Number can be negative too."
676
  msgstr ""
677
 
678
- #: ../admin/partials/sassy-social-share-options-page.php:1369
679
  msgid "Top offset"
680
  msgstr ""
681
 
682
- #: ../admin/partials/sassy-social-share-options-page.php:1379
683
  msgid ""
684
  "Specify a number. Increase in number will shift sharing interface towards "
685
  "bottom and decrease will shift it towards top."
686
  msgstr ""
687
 
688
- #: ../admin/partials/sassy-social-share-options-page.php:1415
689
  msgid "BuddyPress group"
690
  msgstr ""
691
 
692
- #: ../admin/partials/sassy-social-share-options-page.php:1436
693
  msgid "Specify the pages where you want to enable vertical Sharing interface"
694
  msgstr ""
695
 
696
- #: ../admin/partials/sassy-social-share-options-page.php:1503
697
  msgid "Hide floating slider"
698
  msgstr ""
699
 
700
- #: ../admin/partials/sassy-social-share-options-page.php:1513
701
  msgid "Hides the slider arrow present below the floating share bar"
702
  msgstr ""
703
 
704
- #: ../admin/partials/sassy-social-share-options-page.php:1521
705
  msgid "Vertical floating bar responsiveness"
706
  msgstr ""
707
 
708
- #: ../admin/partials/sassy-social-share-options-page.php:1524
709
  #, php-format
710
  msgid "Display vertical interface only when screen is wider than %s pixels"
711
  msgstr ""
712
 
713
- #: ../admin/partials/sassy-social-share-options-page.php:1531
714
  msgid ""
715
  "Display vertical interface only when screen is wider than the width "
716
  "specified."
717
  msgstr ""
718
 
719
- #: ../admin/partials/sassy-social-share-options-page.php:1539
720
  msgid "Horizontal floating bar responsiveness"
721
  msgstr ""
722
 
723
- #: ../admin/partials/sassy-social-share-options-page.php:1542
724
  #, php-format
725
  msgid ""
726
  "Stick vertical floating interface horizontally at bottom only when screen is "
727
  "narrower than %s pixels"
728
  msgstr ""
729
 
730
- #: ../admin/partials/sassy-social-share-options-page.php:1549
731
  msgid ""
732
  "Stick vertical floating interface horizontally at bottom only when screen is "
733
  "narrower than the width specified"
734
  msgstr ""
735
 
736
- #: ../admin/partials/sassy-social-share-options-page.php:1559
737
  msgid "Horizontal floating bar position"
738
  msgstr ""
739
 
740
- #: ../admin/partials/sassy-social-share-options-page.php:1562
741
  #, php-format
742
  msgid "%s pixels from %s"
743
  msgstr ""
744
 
745
- #: ../admin/partials/sassy-social-share-options-page.php:1563
746
  msgid "Auto-adjust according to screen width (responsive)"
747
  msgstr ""
748
 
749
- #: ../admin/partials/sassy-social-share-options-page.php:1570
750
  msgid "Alignment of horizontal floating interface. Number can be negative too."
751
  msgstr ""
752
 
753
- #: ../admin/partials/sassy-social-share-options-page.php:1596
754
  msgid "Load Javascript files in footer"
755
  msgstr ""
756
 
757
- #: ../admin/partials/sassy-social-share-options-page.php:1606
758
  msgid ""
759
  "If enabled (recommended), Javascript files will be included in the footer of "
760
  "your website."
761
  msgstr ""
762
 
763
- #: ../admin/partials/sassy-social-share-options-page.php:1614
764
  msgid "Delete all the options on plugin deletion"
765
  msgstr ""
766
 
767
- #: ../admin/partials/sassy-social-share-options-page.php:1624
768
  msgid ""
769
  "If enabled, plugin options will get deleted when plugin is deleted/"
770
  "uninstalled and you will need to reconfigure the options when you install "
771
  "the plugin next time."
772
  msgstr ""
773
 
774
- #: ../admin/partials/sassy-social-share-options-page.php:1633
775
  msgid "Share Count Cache"
776
  msgstr ""
777
 
778
- #: ../admin/partials/sassy-social-share-options-page.php:1639
779
  msgid "Refresh Share Count cache every"
780
  msgstr ""
781
 
782
- #: ../admin/partials/sassy-social-share-options-page.php:1655
783
  #, php-format
784
  msgid ""
785
  "Frequent cache refreshing results in slower loading of pages with share "
@@ -787,82 +821,82 @@ msgid ""
787
  "target=\"_blank\">here</a>"
788
  msgstr ""
789
 
790
- #: ../admin/partials/sassy-social-share-options-page.php:1663
791
  msgid "Clear Share Counts Cache"
792
  msgstr ""
793
 
794
- #: ../admin/partials/sassy-social-share-options-page.php:1667
795
  msgid "Share Counts cache cleared successfully."
796
  msgstr ""
797
 
798
- #: ../admin/partials/sassy-social-share-options-page.php:1674
799
  msgid "Use this to clear cached share counts"
800
  msgstr ""
801
 
802
- #: ../admin/partials/sassy-social-share-options-page.php:1683
803
  msgid "Url shortener"
804
  msgstr ""
805
 
806
- #: ../admin/partials/sassy-social-share-options-page.php:1689
807
  msgid "Use shortlinks already installed"
808
  msgstr ""
809
 
810
- #: ../admin/partials/sassy-social-share-options-page.php:1699
811
  msgid ""
812
  "Use default short url permalinks without the need for any additional plugin"
813
  msgstr ""
814
 
815
- #: ../admin/partials/sassy-social-share-options-page.php:1707
816
  msgid "Enable bit.ly url shortener for sharing"
817
  msgstr ""
818
 
819
- #: ../admin/partials/sassy-social-share-options-page.php:1717
820
  msgid "Master control to enable bit.ly url shortening for sharing"
821
  msgstr ""
822
 
823
- #: ../admin/partials/sassy-social-share-options-page.php:1725
824
  msgid "bit.ly Login"
825
  msgstr ""
826
 
827
- #: ../admin/partials/sassy-social-share-options-page.php:1735
828
  #, php-format
829
  msgid ""
830
  "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank"
831
  "\">this link</a> to get bit.ly Login"
832
  msgstr ""
833
 
834
- #: ../admin/partials/sassy-social-share-options-page.php:1744
835
  msgid "bit.ly API Key"
836
  msgstr ""
837
 
838
- #: ../admin/partials/sassy-social-share-options-page.php:1754
839
  #, php-format
840
  msgid ""
841
  "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank"
842
  "\">this link</a> to get your API key"
843
  msgstr ""
844
 
845
- #: ../admin/partials/sassy-social-share-options-page.php:1763
846
  msgid "Clear Bitly Cache"
847
  msgstr ""
848
 
849
- #: ../admin/partials/sassy-social-share-options-page.php:1767
850
  msgid "ShortUrl cache cleared successfully."
851
  msgstr ""
852
 
853
- #: ../admin/partials/sassy-social-share-options-page.php:1774
854
  msgid ""
855
  "Use this to delete short urls saved in database. Handy, if urls of your "
856
  "website have been changed but short urls are still being generated for old "
857
  "urls."
858
  msgstr ""
859
 
860
- #: ../admin/partials/sassy-social-share-options-page.php:1783
861
- #: ../admin/partials/sassy-social-share-options-page.php:1789
862
  msgid "Language"
863
  msgstr ""
864
 
865
- #: ../admin/partials/sassy-social-share-options-page.php:1799
866
  #, php-format
867
  msgid ""
868
  "Enter the code of the language you want to use for like buttons. You can "
@@ -870,60 +904,60 @@ msgid ""
870
  "Leave it empty for default language(English)"
871
  msgstr ""
872
 
873
- #: ../admin/partials/sassy-social-share-options-page.php:1808
874
  msgid "Username in sharing"
875
  msgstr ""
876
 
877
- #: ../admin/partials/sassy-social-share-options-page.php:1814
878
  msgid "Twitter username (without @)"
879
  msgstr ""
880
 
881
- #: ../admin/partials/sassy-social-share-options-page.php:1824
882
- #: ../admin/partials/sassy-social-share-options-page.php:1843
883
  msgid ""
884
  "Provided username will be appended after the content being shared as \"via "
885
  "@USERNAME\". Leave empty if you do not want any username in the content "
886
  "being shared."
887
  msgstr ""
888
 
889
- #: ../admin/partials/sassy-social-share-options-page.php:1833
890
  msgid "Buffer username (without @)"
891
  msgstr ""
892
 
893
- #: ../admin/partials/sassy-social-share-options-page.php:1852
894
  msgid "AMP"
895
  msgstr ""
896
 
897
- #: ../admin/partials/sassy-social-share-options-page.php:1858
898
  msgid "Enable sharing on AMP pages"
899
  msgstr ""
900
 
901
- #: ../admin/partials/sassy-social-share-options-page.php:1868
902
  msgid "Enable this option to render sharing icons on AMP pages"
903
  msgstr ""
904
 
905
- #: ../admin/partials/sassy-social-share-options-page.php:1877
906
- #: ../admin/partials/sassy-social-share-options-page.php:1883
907
  msgid "Custom CSS"
908
  msgstr ""
909
 
910
- #: ../admin/partials/sassy-social-share-options-page.php:1893
911
  msgid "You can specify any additional CSS rules (without &lt;style&gt; tag)"
912
  msgstr ""
913
 
914
- #: ../admin/partials/sassy-social-share-options-page.php:1912
915
  msgid "myCRED"
916
  msgstr ""
917
 
918
- #: ../admin/partials/sassy-social-share-options-page.php:1918
919
  msgid "Append myCRED referral ID to the urls being shared"
920
  msgstr ""
921
 
922
- #: ../admin/partials/sassy-social-share-options-page.php:1951
923
  msgid "Facebook Sharing Troubleshooter"
924
  msgstr ""
925
 
926
- #: ../admin/partials/sassy-social-share-options-page.php:1956
927
  msgid ""
928
  "If Facebook sharing is not working fine, click at the following link and "
929
  "enter the problematic url (where Facebook sharing is not working properly) "
@@ -931,27 +965,27 @@ msgid ""
931
  "button."
932
  msgstr ""
933
 
934
- #: ../admin/partials/sassy-social-share-options-page.php:1973
935
  msgid ""
936
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
937
  "an online website for the plugin to function properly."
938
  msgstr ""
939
 
940
- #: ../admin/partials/sassy-social-share-options-page.php:1975
941
  msgid ""
942
  "Why is sharer not showing the correct image, title and other meta tags "
943
  "content?"
944
  msgstr ""
945
 
946
- #: ../admin/partials/sassy-social-share-options-page.php:1976
947
  msgid "How to Customize the Url being Shared?"
948
  msgstr ""
949
 
950
- #: ../admin/partials/sassy-social-share-options-page.php:1977
951
  msgid "Why is Instagram icon redirecting to Instagram website?"
952
  msgstr ""
953
 
954
- #: ../admin/partials/sassy-social-share-options-page.php:1978
955
  msgid ""
956
  "Instagram icon is there to send website visitors to the Instagram page of "
957
  "your choice. You can save the desired Instagram handle in \"Instagram "
@@ -959,104 +993,104 @@ msgid ""
959
  "sections."
960
  msgstr ""
961
 
962
- #: ../admin/partials/sassy-social-share-options-page.php:1981
963
  msgid ""
964
  "Why are Twitter shares not appearing even after registering at Twitcount.com?"
965
  msgstr ""
966
 
967
- #: ../admin/partials/sassy-social-share-options-page.php:1982
968
  msgid ""
969
  "It takes some time for their service to track the shares made on Twitter "
970
  "from your website. If you still feel it's taking too long you can contact "
971
  "their support directly from their website."
972
  msgstr ""
973
 
974
- #: ../admin/partials/sassy-social-share-options-page.php:1984
975
  msgid ""
976
  "How to restore Social Share counts lost after moving my website to SSL/Https?"
977
  msgstr ""
978
 
979
- #: ../admin/partials/sassy-social-share-options-page.php:1985
980
  msgid "How to integrate Google Analytics with sharing?"
981
  msgstr ""
982
 
983
- #: ../admin/partials/sassy-social-share-options-page.php:1986
984
  msgid "Why the color of share icons is not being updated?"
985
  msgstr ""
986
 
987
- #: ../admin/partials/sassy-social-share-options-page.php:1987
988
  msgid ""
989
  "How to show recent Facebook Comments from all over the website in a widget?"
990
  msgstr ""
991
 
992
- #: ../admin/partials/sassy-social-share-options-page.php:1988
993
  msgid ""
994
  "How to recover the Facebook Comments lost after moving my website to SSL/"
995
  "Https?"
996
  msgstr ""
997
 
998
- #: ../admin/partials/sassy-social-share-options-page.php:1989
999
  msgid "How to Place Title and Social Share Icons in the Same Row?"
1000
  msgstr ""
1001
 
1002
- #: ../admin/partials/sassy-social-share-options-page.php:1990
1003
  msgid ""
1004
  "How can I show share counts of my website rather than of individual pages/"
1005
  "posts?"
1006
  msgstr ""
1007
 
1008
- #: ../admin/partials/sassy-social-share-options-page.php:1991
1009
  msgid "How can I disable sharing on particular page/post?"
1010
  msgstr ""
1011
 
1012
- #: ../admin/partials/sassy-social-share-options-page.php:1992
1013
  msgid "How can I specify minimum sharing count for sharing networks?"
1014
  msgstr ""
1015
 
1016
- #: ../admin/partials/sassy-social-share-options-page.php:1993
1017
  msgid "How to share specific page?"
1018
  msgstr ""
1019
 
1020
- #: ../admin/partials/sassy-social-share-options-page.php:1994
1021
  msgid "How to customize the look of total share counts?"
1022
  msgstr ""
1023
 
1024
- #: ../admin/partials/sassy-social-share-options-page.php:1995
1025
  msgid "How to customize the look of individual share counts?"
1026
  msgstr ""
1027
 
1028
- #: ../admin/partials/sassy-social-share-options-page.php:1996
1029
  msgid "How to show Whatsapp icon only on mobile devices?"
1030
  msgstr ""
1031
 
1032
- #: ../admin/partials/sassy-social-share-options-page.php:1997
1033
  msgid "How to hide arrow after floating sharing bar?"
1034
  msgstr ""
1035
 
1036
- #: ../admin/partials/sassy-social-share-options-page.php:1998
1037
  msgid "Why is share count not getting updated?"
1038
  msgstr ""
1039
 
1040
- #: ../admin/partials/sassy-social-share-options-page.php:1999
1041
  msgid "Why is there so much space between like buttons?"
1042
  msgstr ""
1043
 
1044
- #: ../admin/partials/sassy-social-share-options-page.php:2000
1045
  msgid "Why are floating sharing/like buttons not appearing at homepage?"
1046
  msgstr ""
1047
 
1048
- #: ../admin/partials/sassy-social-share-options-page.php:2010
1049
  msgid "Save Changes"
1050
  msgstr ""
1051
 
1052
- #: ../admin/partials/sassy-social-share-options-page.php:2022
1053
  msgid ""
1054
  "If you can send (to hello@heateor.com) how our plugin is helping your "
1055
  "business, we can share it on Instagram. You can also send any relevant "
1056
  "hashtags and people to mention in the Instagram post."
1057
  msgstr ""
1058
 
1059
- #: ../admin/partials/sassy-social-share-options-page.php:2023
1060
  msgid ""
1061
  "<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
1062
  "language courses through their website. They have emerged as one of the most "
@@ -1065,7 +1099,7 @@ msgid ""
1065
  "time."
1066
  msgstr ""
1067
 
1068
- #: ../admin/partials/sassy-social-share-options-page.php:2024
1069
  msgid ""
1070
  "@blahblahonlinecoaching proudly use #SassySocialShare to share content of "
1071
  "their website. Be sure to visit their website at \n"
@@ -1165,37 +1199,37 @@ msgid "Title:"
1165
  msgstr ""
1166
 
1167
  #: ../includes/class-sassy-social-share-widgets.php:196
1168
- #: ../includes/class-sassy-social-share-widgets.php:397
1169
  msgid "Show individual share counts:"
1170
  msgstr ""
1171
 
1172
  #: ../includes/class-sassy-social-share-widgets.php:198
1173
- #: ../includes/class-sassy-social-share-widgets.php:399
1174
  msgid "Show total shares:"
1175
  msgstr ""
1176
 
1177
  #: ../includes/class-sassy-social-share-widgets.php:200
1178
- #: ../includes/class-sassy-social-share-widgets.php:401
1179
  msgid "Target Url:"
1180
  msgstr ""
1181
 
1182
  #: ../includes/class-sassy-social-share-widgets.php:202
1183
- #: ../includes/class-sassy-social-share-widgets.php:403
1184
  msgid "Select"
1185
  msgstr ""
1186
 
1187
  #: ../includes/class-sassy-social-share-widgets.php:208
1188
- #: ../includes/class-sassy-social-share-widgets.php:634
1189
  msgid "Before widget content:"
1190
  msgstr ""
1191
 
1192
  #: ../includes/class-sassy-social-share-widgets.php:210
1193
- #: ../includes/class-sassy-social-share-widgets.php:708
1194
  msgid "After widget content:"
1195
  msgstr ""
1196
 
1197
  #: ../includes/class-sassy-social-share-widgets.php:212
1198
- #: ../includes/class-sassy-social-share-widgets.php:428
1199
  msgid "Hide for logged in users:"
1200
  msgstr ""
1201
 
@@ -1205,125 +1239,125 @@ msgid ""
1205
  "Social networks like Facebook, Twitter, Tumblr, Whatsapp and many more"
1206
  msgstr ""
1207
 
1208
- #: ../includes/class-sassy-social-share-widgets.php:396
1209
  msgid ""
1210
  "Make sure \"Floating Interface\" is enabled in \"Floating Interface\" "
1211
  "section at \"Sassy Social Share\" page."
1212
  msgstr ""
1213
 
1214
- #: ../includes/class-sassy-social-share-widgets.php:409
1215
  msgid "Alignment"
1216
  msgstr ""
1217
 
1218
- #: ../includes/class-sassy-social-share-widgets.php:415
1219
  msgid "Left Offset"
1220
  msgstr ""
1221
 
1222
- #: ../includes/class-sassy-social-share-widgets.php:419
1223
  msgid "Right Offset"
1224
  msgstr ""
1225
 
1226
- #: ../includes/class-sassy-social-share-widgets.php:422
1227
  msgid "Top Offset"
1228
  msgstr ""
1229
 
1230
- #: ../includes/class-sassy-social-share-widgets.php:453
1231
  msgid "Sassy Social Share - Follow Icons"
1232
  msgstr ""
1233
 
1234
- #: ../includes/class-sassy-social-share-widgets.php:454
1235
  msgid "These icons link to your Social Media accounts"
1236
  msgstr ""
1237
 
1238
- #: ../includes/class-sassy-social-share-widgets.php:638
1239
  msgid "Size of icons"
1240
  msgstr ""
1241
 
1242
- #: ../includes/class-sassy-social-share-widgets.php:640
1243
  msgid "Icon Shape"
1244
  msgstr ""
1245
 
1246
- #: ../includes/class-sassy-social-share-widgets.php:645
1247
  msgid "Facebook URL:"
1248
  msgstr ""
1249
 
1250
- #: ../includes/class-sassy-social-share-widgets.php:648
1251
  msgid "Twitter URL:"
1252
  msgstr ""
1253
 
1254
- #: ../includes/class-sassy-social-share-widgets.php:651
1255
  msgid "Instagram URL:"
1256
  msgstr ""
1257
 
1258
- #: ../includes/class-sassy-social-share-widgets.php:654
1259
  msgid "Pinterest URL:"
1260
  msgstr ""
1261
 
1262
- #: ../includes/class-sassy-social-share-widgets.php:657
1263
  msgid "Behance URL:"
1264
  msgstr ""
1265
 
1266
- #: ../includes/class-sassy-social-share-widgets.php:660
1267
  msgid "Flickr URL:"
1268
  msgstr ""
1269
 
1270
- #: ../includes/class-sassy-social-share-widgets.php:663
1271
  msgid "Foursquare URL:"
1272
  msgstr ""
1273
 
1274
- #: ../includes/class-sassy-social-share-widgets.php:666
1275
  msgid "Github URL:"
1276
  msgstr ""
1277
 
1278
- #: ../includes/class-sassy-social-share-widgets.php:669
1279
  msgid "LinkedIn URL:"
1280
  msgstr ""
1281
 
1282
- #: ../includes/class-sassy-social-share-widgets.php:672
1283
  msgid "LinkedIn Company URL:"
1284
  msgstr ""
1285
 
1286
- #: ../includes/class-sassy-social-share-widgets.php:675
1287
  msgid "Medium URL:"
1288
  msgstr ""
1289
 
1290
- #: ../includes/class-sassy-social-share-widgets.php:678
1291
  msgid "MeWe URL:"
1292
  msgstr ""
1293
 
1294
- #: ../includes/class-sassy-social-share-widgets.php:681
1295
  msgid "Odnoklassniki URL:"
1296
  msgstr ""
1297
 
1298
- #: ../includes/class-sassy-social-share-widgets.php:684
1299
  msgid "Snapchat URL:"
1300
  msgstr ""
1301
 
1302
- #: ../includes/class-sassy-social-share-widgets.php:687
1303
  msgid "Tumblr URL:"
1304
  msgstr ""
1305
 
1306
- #: ../includes/class-sassy-social-share-widgets.php:690
1307
  msgid "Vimeo URL:"
1308
  msgstr ""
1309
 
1310
- #: ../includes/class-sassy-social-share-widgets.php:693
1311
  msgid "Vkontakte URL:"
1312
  msgstr ""
1313
 
1314
- #: ../includes/class-sassy-social-share-widgets.php:696
1315
  msgid "Xing URL:"
1316
  msgstr ""
1317
 
1318
- #: ../includes/class-sassy-social-share-widgets.php:699
1319
  msgid "Youtube URL:"
1320
  msgstr ""
1321
 
1322
- #: ../includes/class-sassy-social-share-widgets.php:702
1323
  msgid "Youtube Channel URL:"
1324
  msgstr ""
1325
 
1326
- #: ../includes/class-sassy-social-share-widgets.php:705
1327
  msgid "RSS Feed URL:"
1328
  msgstr ""
1329
 
@@ -1351,11 +1385,11 @@ msgstr ""
1351
  msgid "Archives"
1352
  msgstr ""
1353
 
1354
- #: ../public/class-sassy-social-share-public.php:1533
1355
- #: ../public/class-sassy-social-share-public.php:1764
1356
  msgid "Invalid request"
1357
  msgstr ""
1358
 
1359
- #: ../public/class-sassy-social-share-public.php:1539
1360
  msgid "Providers not selected"
1361
  msgstr ""
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"
64
  msgid "Dismiss this notice"
65
  msgstr ""
66
 
67
+ #: ../admin/class-sassy-social-share-admin.php:480
68
  msgid "Thanks for installing Sassy Social Share plugin"
69
  msgstr ""
70
 
71
+ #: ../admin/class-sassy-social-share-admin.php:482
72
  msgid "Configure the Plugin"
73
  msgstr ""
74
 
75
+ #: ../admin/class-sassy-social-share-admin.php:493
76
  msgid ""
77
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
78
  "with current version of Sassy Social Share"
79
  msgstr ""
80
 
81
+ #: ../admin/class-sassy-social-share-admin.php:518
82
+ msgid ""
83
+ "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
84
+ "\"Floating Interface\" section(s) to fix the issue with Facebook share "
85
+ "count. After that, clear share counts cache from \"Miscellaneous\" section."
86
+ msgstr ""
87
+
88
+ #: ../admin/class-sassy-social-share-admin.php:519
89
+ #: ../admin/class-sassy-social-share-admin.php:545
90
+ #: ../admin/class-sassy-social-share-admin.php:571
91
+ #: ../admin/class-sassy-social-share-admin.php:594
92
+ #: ../admin/class-sassy-social-share-admin.php:618
93
+ msgid "Okay"
94
+ msgstr ""
95
+
96
+ #: ../admin/class-sassy-social-share-admin.php:545
97
+ #: ../admin/class-sassy-social-share-admin.php:618
98
  #, php-format
99
  msgid ""
100
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
102
  "\"%s\" target=\"_blank\">here</a>"
103
  msgstr ""
104
 
105
+ #: ../admin/class-sassy-social-share-admin.php:571
 
 
 
 
 
 
 
106
  #, php-format
107
  msgid ""
108
  "Twitter share counts are no longer working as newsharecounts.com is down. To "
110
  "\"_blank\">here</a> with this domain. No other steps needed."
111
  msgstr ""
112
 
113
+ #: ../admin/class-sassy-social-share-admin.php:594
114
  #, php-format
115
  msgid ""
116
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
119
  "your website %s with them. No need to copy-paste any code from their website."
120
  msgstr ""
121
 
122
+ #: ../admin/class-sassy-social-share-admin.php:635
123
  msgid "Add-Ons"
124
  msgstr ""
125
 
126
+ #: ../admin/class-sassy-social-share-admin.php:636
127
  msgid "Support Documentation"
128
  msgstr ""
129
 
130
+ #: ../admin/class-sassy-social-share-admin.php:637
131
  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
  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
  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
  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
 
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
 
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 ""
300
 
343
 
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 ""
351
 
356
 
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 ""
364
 
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
  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
 
499
+ #: ../admin/partials/sassy-social-share-options-page.php:910
500
  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
 
508
+ #: ../admin/partials/sassy-social-share-options-page.php:927
509
  msgid "Position with respect to content"
510
  msgstr ""
511
 
512
+ #: ../admin/partials/sassy-social-share-options-page.php:931
513
  msgid "Top of the content"
514
  msgstr ""
515
 
516
+ #: ../admin/partials/sassy-social-share-options-page.php:933
517
  msgid "Bottom of the content"
518
  msgstr ""
519
 
520
+ #: ../admin/partials/sassy-social-share-options-page.php:940
521
  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
 
559
+ #: ../admin/partials/sassy-social-share-options-page.php:978
560
  msgid "BuddyPress activity"
561
  msgstr ""
562
 
563
+ #: ../admin/partials/sassy-social-share-options-page.php:980
564
  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
 
577
+ #: ../admin/partials/sassy-social-share-options-page.php:992
578
  msgid "BBPress reply"
579
  msgstr ""
580
 
581
+ #: ../admin/partials/sassy-social-share-options-page.php:999
582
  msgid "After individual product at WooCommerce Shop page"
583
  msgstr ""
584
 
585
+ #: ../admin/partials/sassy-social-share-options-page.php:1002
586
  msgid "WooCommerce Product Page"
587
  msgstr ""
588
 
589
+ #: ../admin/partials/sassy-social-share-options-page.php:1005
590
  msgid "WooCommerce Thankyou Page"
591
  msgstr ""
592
 
593
+ #: ../admin/partials/sassy-social-share-options-page.php:1016
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
  "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
  "\"_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
  "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
  "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
  "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
  "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 "
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"
1199
  msgstr ""
1200
 
1201
  #: ../includes/class-sassy-social-share-widgets.php:196
1202
+ #: ../includes/class-sassy-social-share-widgets.php:405
1203
  msgid "Show individual share counts:"
1204
  msgstr ""
1205
 
1206
  #: ../includes/class-sassy-social-share-widgets.php:198
1207
+ #: ../includes/class-sassy-social-share-widgets.php:407
1208
  msgid "Show total shares:"
1209
  msgstr ""
1210
 
1211
  #: ../includes/class-sassy-social-share-widgets.php:200
1212
+ #: ../includes/class-sassy-social-share-widgets.php:409
1213
  msgid "Target Url:"
1214
  msgstr ""
1215
 
1216
  #: ../includes/class-sassy-social-share-widgets.php:202
1217
+ #: ../includes/class-sassy-social-share-widgets.php:411
1218
  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
 
1231
  #: ../includes/class-sassy-social-share-widgets.php:212
1232
+ #: ../includes/class-sassy-social-share-widgets.php:436
1233
  msgid "Hide for logged in users:"
1234
  msgstr ""
1235
 
1239
  "Social networks like Facebook, Twitter, Tumblr, Whatsapp and many more"
1240
  msgstr ""
1241
 
1242
+ #: ../includes/class-sassy-social-share-widgets.php:404
1243
  msgid ""
1244
  "Make sure \"Floating Interface\" is enabled in \"Floating Interface\" "
1245
  "section at \"Sassy Social Share\" page."
1246
  msgstr ""
1247
 
1248
+ #: ../includes/class-sassy-social-share-widgets.php:417
1249
  msgid "Alignment"
1250
  msgstr ""
1251
 
1252
+ #: ../includes/class-sassy-social-share-widgets.php:423
1253
  msgid "Left Offset"
1254
  msgstr ""
1255
 
1256
+ #: ../includes/class-sassy-social-share-widgets.php:427
1257
  msgid "Right Offset"
1258
  msgstr ""
1259
 
1260
+ #: ../includes/class-sassy-social-share-widgets.php:430
1261
  msgid "Top Offset"
1262
  msgstr ""
1263
 
1264
+ #: ../includes/class-sassy-social-share-widgets.php:461
1265
  msgid "Sassy Social Share - Follow Icons"
1266
  msgstr ""
1267
 
1268
+ #: ../includes/class-sassy-social-share-widgets.php:462
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
  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 ""
public/class-sassy-social-share-public.php CHANGED
@@ -1519,7 +1519,44 @@ class Sassy_Social_Share_Public {
1519
  }
1520
 
1521
  /**
1522
- * Get sharing count for sharing networks
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1523
  *
1524
  * @since 1.0.0
1525
  */
@@ -1542,10 +1579,6 @@ class Sassy_Social_Share_Public {
1542
 
1543
  $response_data = array();
1544
  $ajax_response = array();
1545
-
1546
- if ( in_array( 'facebook', $sharing_networks ) ) {
1547
- $ajax_response['facebook'] = 1;
1548
- }
1549
 
1550
  $multiplier = 60;
1551
  if ( $this->options['share_count_cache_refresh_count'] != '' ) {
@@ -1587,6 +1620,14 @@ class Sassy_Social_Share_Public {
1587
  $share_count_transient = array();
1588
  foreach ( $sharing_networks as $provider ) {
1589
  switch ( $provider ) {
 
 
 
 
 
 
 
 
1590
  case 'twitter':
1591
  $url = "https://counts.twitcount.com/counts.php?url=" . $target_url;
1592
  break;
@@ -1616,6 +1657,27 @@ class Sassy_Social_Share_Public {
1616
  }
1617
  if ( $url == '' ) { continue; }
1618
  $response = wp_remote_get( $url, array( 'timeout' => 15, 'user-agent' => 'Sassy-Social-Share' ) );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1619
  if ( ! is_wp_error( $response ) && isset( $response['response']['code'] ) && 200 === $response['response']['code'] ) {
1620
  $body = wp_remote_retrieve_body( $response );
1621
  if ( $provider == 'pinterest' ) {
@@ -1625,6 +1687,13 @@ class Sassy_Social_Share_Public {
1625
  $body = json_decode( $body );
1626
  }
1627
  switch ( $provider ) {
 
 
 
 
 
 
 
1628
  case 'twitter':
1629
  if ( ! empty( $body -> count ) ) {
1630
  $share_count_transient['twitter'] = $body -> count;
1519
  }
1520
 
1521
  /**
1522
+ * Fetch Facebook access token
1523
+ *
1524
+ * @since 3.2.20
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;
1555
+
1556
+ }
1557
+
1558
+ /**
1559
+ * Get share counts for sharing networks
1560
  *
1561
  * @since 1.0.0
1562
  */
1579
 
1580
  $response_data = array();
1581
  $ajax_response = array();
 
 
 
 
1582
 
1583
  $multiplier = 60;
1584
  if ( $this->options['share_count_cache_refresh_count'] != '' ) {
1620
  $share_count_transient = array();
1621
  foreach ( $sharing_networks as $provider ) {
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':
1632
  $url = "https://counts.twitcount.com/counts.php?url=" . $target_url;
1633
  break;
1657
  }
1658
  if ( $url == '' ) { continue; }
1659
  $response = wp_remote_get( $url, array( 'timeout' => 15, 'user-agent' => 'Sassy-Social-Share' ) );
1660
+ if ( $provider == 'facebook' && 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' ) {
1687
  $body = json_decode( $body );
1688
  }
1689
  switch ( $provider ) {
1690
+ case 'facebook':
1691
+ if ( ! empty( $body -> engagement ) && isset( $body -> engagement -> share_count ) ) {
1692
+ $share_count_transient['facebook'] = $body -> engagement -> share_count;
1693
+ } else {
1694
+ $share_count_transient['facebook'] = 0;
1695
+ }
1696
+ break;
1697
  case 'twitter':
1698
  if ( ! empty( $body -> count ) ) {
1699
  $share_count_transient['twitter'] = $body -> count;
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.1.1
7
- Stable tag: 3.2.19
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,11 @@ 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.19 =
127
  * [Bugfix] Social shares for the homepage were reset to 0 after last update in some cases
128
  * [Bugfix] Minor bugfixes
@@ -731,4 +736,9 @@ Yes, we can help you with it. Just drop an email at support[at]heateor[dot]com
731
 
732
  = 3.2.19 =
733
  * [Bugfix] Social shares for the homepage were reset to 0 after last update in some cases
734
- * [Bugfix] Minor bugfixes
 
 
 
 
 
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.1.1
7
+ Stable tag: 3.2.20
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.20 =
127
+ * [Bugfix] Facebook shares were not working because of the expiration of Facebook API v2.8
128
+ * [Bugfix] Fixed a PHP error occurring when floating share bar enabled via shortcode
129
+ * [Improvement] Share counts are loading faster
130
+
131
  = 3.2.19 =
132
  * [Bugfix] Social shares for the homepage were reset to 0 after last update in some cases
133
  * [Bugfix] Minor bugfixes
736
 
737
  = 3.2.19 =
738
  * [Bugfix] Social shares for the homepage were reset to 0 after last update in some cases
739
+ * [Bugfix] Minor bugfixes
740
+
741
+ = 3.2.20 =
742
+ * [Bugfix] Facebook shares were not working because of the expiration of Facebook API v2.8
743
+ * [Bugfix] Fixed a PHP error occurring when floating share bar enabled via shortcode
744
+ * [Improvement] Share counts are loading faster
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.19
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.19' );
25
  define( 'HEATEOR_SSS_PLUGIN_DIR', plugin_dir_path(__FILE__) );
26
 
27
  // plugin core class object
@@ -127,7 +127,11 @@ function heateor_sss_save_default_options() {
127
  'twitter_username' => '',
128
  'buffer_username' => '',
129
  'custom_css' => '',
130
- 'amp_enable' => '1'
 
 
 
 
131
  ) );
132
 
133
  // 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.20
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.20' );
25
  define( 'HEATEOR_SSS_PLUGIN_DIR', plugin_dir_path(__FILE__) );
26
 
27
  // plugin core class object
127
  'twitter_username' => '',
128
  'buffer_username' => '',
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
uninstall.php CHANGED
@@ -28,7 +28,8 @@ $heateor_sss_options_to_delete = array(
28
  'heateor_sss_custom_url_shares',
29
  'heateor_sss_homepage_shares',
30
  'widget_heateor_sss_sharing',
31
- 'widget_heateor_sss_floating_sharing'
 
32
  );
33
 
34
  if ( isset( $heateor_sss_options['delete_options'] ) ) {
28
  'heateor_sss_custom_url_shares',
29
  'heateor_sss_homepage_shares',
30
  'widget_heateor_sss_sharing',
31
+ 'widget_heateor_sss_floating_sharing',
32
+ 'heateor_sss_fb_access_token'
33
  );
34
 
35
  if ( isset( $heateor_sss_options['delete_options'] ) ) {