WordPress Social Sharing Plugin – Sassy Social Share - Version 3.2.25

Version Description

[6 June 2019] = * [Bugfix] Minor bugfixes * [Bugfix] Facebook App ID and Facebook App Secret options were not appearing in Miscellaneous section if Facebook share icon was enabled via shortcode or widget

Download this release

Release Info

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

Code changes from version 3.2.24 to 3.2.25

admin/js/sassy-social-share-options.js CHANGED
@@ -250,11 +250,14 @@ function heateorSssVerticalCounterPreview(val){
250
  }
251
 
252
  function heateor_sss_toggle_fb_share_count_options() {
253
- if((heateorSssHorizontalFacebookShareEnabled && (heateorSssHorizontalShares || heateorSssHorizontalTotalShares)) || (heateorSssVerticalFacebookShareEnabled && (heateorSssVerticalShares || heateorSssVerticalTotalShares))){
254
- jQuery('#heateor_sss_fb_share_count_options').css('display', 'table-row-group');
255
- jQuery('.heateor_sss_fb_share_count_msg').css('display', 'table-row-group');
256
  }else{
257
  jQuery('#heateor_sss_fb_share_count_options').css('display', 'none');
 
 
 
 
258
  jQuery('.heateor_sss_fb_share_count_msg').css('display', 'none');
259
  }
260
  }
250
  }
251
 
252
  function heateor_sss_toggle_fb_share_count_options() {
253
+ if(heateorSssHorizontalFacebookShareEnabled || heateorSssVerticalFacebookShareEnabled){
254
+ jQuery('#heateor_sss_fb_share_count_options').css('display', 'block');
 
255
  }else{
256
  jQuery('#heateor_sss_fb_share_count_options').css('display', 'none');
257
+ }
258
+ if(((heateorSssHorizontalFacebookShareEnabled && (heateorSssHorizontalShares || heateorSssHorizontalTotalShares)) || (heateorSssVerticalFacebookShareEnabled && (heateorSssVerticalShares || heateorSssVerticalTotalShares))) && heateorSssFacebookIDSecretNotSaved){
259
+ jQuery('.heateor_sss_fb_share_count_msg').css('display', 'table-row-group');
260
+ }else{
261
  jQuery('.heateor_sss_fb_share_count_msg').css('display', 'none');
262
  }
263
  }
admin/partials/sassy-social-share-options-page.php CHANGED
@@ -742,7 +742,7 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
742
  }
743
  ?>
744
 
745
- <tbody id="heateor_sss_instagram_options" <?php echo ! in_array( 'instagram', $options['horizontal_re_providers'] ) ? 'style = "display: none"' : '';?> >
746
  <tr>
747
  <th>
748
  <img id="heateor_sss_instagram_username_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
@@ -762,7 +762,7 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
762
  </tr>
763
  </tbody>
764
 
765
- <tbody id="heateor_sss_comment_options" <?php echo ! in_array( 'Comment', $options['horizontal_re_providers'] ) ? 'style = "display: none"' : '';?> >
766
  <tr>
767
  <th>
768
  <img id="heateor_sss_comment_container_id_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
@@ -797,7 +797,7 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
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 = '';
@@ -1608,11 +1608,14 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
1608
  <div class="clear"></div>
1609
  <div class="heateor_sss_left_column">
1610
 
1611
- <div class="stuffbox">
1612
- <h3><label><?php _e( 'Miscellaneous', 'sassy-social-share' ) ?></label></h3>
1613
  <div class="inside">
1614
  <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
1615
- <tbody id="heateor_sss_fb_share_count_options" <?php echo ! ( ( in_array( 'facebook', $options['vertical_re_providers'] ) && ( isset( $options['vertical_counts'] ) || isset( $options['vertical_total_shares'] ) ) ) || ( in_array( 'facebook', $options['horizontal_re_providers'] ) && ( isset( $options['horizontal_counts'] ) || isset( $options['horizontal_total_shares'] ) ) ) ) ? 'style = "display: none"' : '';?> >
 
 
 
1616
  <tr>
1617
  <th>
1618
  <img id="heateor_sss_fb_key_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
@@ -1649,7 +1652,14 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
1649
  </td>
1650
  </tr>
1651
  </tbody>
 
 
 
1652
 
 
 
 
 
1653
  <tr>
1654
  <th>
1655
  <img id="heateor_sss_footer_script_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
742
  }
743
  ?>
744
 
745
+ <tbody id="heateor_sss_instagram_options" <?php echo ! isset( $options['horizontal_re_providers'] ) || ! in_array( 'instagram', $options['horizontal_re_providers'] ) ? 'style = "display: none"' : '';?> >
746
  <tr>
747
  <th>
748
  <img id="heateor_sss_instagram_username_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
762
  </tr>
763
  </tbody>
764
 
765
+ <tbody id="heateor_sss_comment_options" <?php echo ! isset( $options['horizontal_re_providers'] ) || ! in_array( 'Comment', $options['horizontal_re_providers'] ) ? 'style = "display: none"' : '';?> >
766
  <tr>
767
  <th>
768
  <img id="heateor_sss_comment_container_id_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
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'; ?>, heateorSssFacebookIDSecretNotSaved = <?php echo ! $options['fb_key'] || ! $options['fb_secret'] ? '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 = '';
1608
  <div class="clear"></div>
1609
  <div class="heateor_sss_left_column">
1610
 
1611
+ <div class="stuffbox" id="heateor_sss_fb_share_count_options" <?php echo ! ( in_array( 'facebook', $options['vertical_re_providers'] ) || in_array( 'facebook', $options['horizontal_re_providers'] ) ) ? 'style = "display: none"' : '';?>>
1612
+ <h3><label><?php _e( 'Facebook Share Count', 'sassy-social-share' ) ?></label></h3>
1613
  <div class="inside">
1614
  <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
1615
+ <tbody>
1616
+ <tr>
1617
+ <td colspan="2"><strong><?php _e( 'Note', 'sassy-social-share' ) ?>:</strong> <?php _e( 'Required only to track Facebook share count', 'sassy-social-share' ) ?></td>
1618
+ </tr>
1619
  <tr>
1620
  <th>
1621
  <img id="heateor_sss_fb_key_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
1652
  </td>
1653
  </tr>
1654
  </tbody>
1655
+ </table>
1656
+ </div>
1657
+ </div>
1658
 
1659
+ <div class="stuffbox">
1660
+ <h3><label><?php _e( 'Miscellaneous', 'sassy-social-share' ) ?></label></h3>
1661
+ <div class="inside">
1662
+ <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
1663
  <tr>
1664
  <th>
1665
  <img id="heateor_sss_footer_script_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
includes/class-sassy-social-share-shortcodes.php CHANGED
@@ -70,6 +70,9 @@ class Sassy_Social_Share_Shortcodes {
70
  return;
71
  }
72
  global $post;
 
 
 
73
  if ( $url ) {
74
  $target_url = $url;
75
  $post_id = 0;
70
  return;
71
  }
72
  global $post;
73
+ if ( ! is_object( $post ) ) {
74
+ return;
75
+ }
76
  if ( $url ) {
77
  $target_url = $url;
78
  $post_id = 0;
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-05-15 16:44+0530\n"
6
- "PO-Revision-Date: 2019-05-15 16:44+0530\n"
7
  "Last-Translator: Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <hello@heateor.com>\n"
9
  "Language: en_IN\n"
@@ -132,7 +132,7 @@ msgid "Settings"
132
  msgstr ""
133
 
134
  #: ../admin/partials/sassy-social-share-options-page.php:16
135
- #: ../admin/partials/sassy-social-share-options-page.php:2074
136
  #, php-format
137
  msgid ""
138
  "You can appreciate the effort put in this free plugin by rating it <a href="
@@ -161,8 +161,8 @@ msgid "3rd Party Integration"
161
  msgstr ""
162
 
163
  #: ../admin/partials/sassy-social-share-options-page.php:35
164
- #: ../admin/partials/sassy-social-share-options-page.php:1998
165
- #: ../admin/partials/sassy-social-share-options-page.php:2000
166
  msgid "Shortcode & Widget"
167
  msgstr ""
168
 
@@ -171,7 +171,7 @@ msgid "Troubleshooter"
171
  msgstr ""
172
 
173
  #: ../admin/partials/sassy-social-share-options-page.php:37
174
- #: ../admin/partials/sassy-social-share-options-page.php:2031
175
  msgid "FAQ"
176
  msgstr ""
177
 
@@ -596,7 +596,7 @@ msgstr ""
596
 
597
  #: ../admin/partials/sassy-social-share-options-page.php:1025
598
  #: ../admin/partials/sassy-social-share-options-page.php:1457
599
- #: ../admin/partials/sassy-social-share-options-page.php:2036
600
  msgid ""
601
  "Save Facebook App Id and Secret in the \"Miscellaneous\" section for "
602
  "Facebook share count to work"
@@ -766,58 +766,66 @@ msgstr ""
766
  msgid "Alignment of horizontal floating interface. Number can be negative too."
767
  msgstr ""
768
 
769
- #: ../admin/partials/sassy-social-share-options-page.php:1619
 
 
 
 
 
 
 
 
770
  msgid "Facebook App ID"
771
  msgstr ""
772
 
773
- #: ../admin/partials/sassy-social-share-options-page.php:1629
774
  #, php-format
775
  msgid ""
776
  "Required for Facebook share count to work. Please follow the documentation "
777
  "at <a href=\"%s\" target=\"_blank\">this link</a> to get Facebook App ID"
778
  msgstr ""
779
 
780
- #: ../admin/partials/sassy-social-share-options-page.php:1637
781
  msgid "Facebook App Secret"
782
  msgstr ""
783
 
784
- #: ../admin/partials/sassy-social-share-options-page.php:1647
785
  #, php-format
786
  msgid ""
787
  "Required for Facebook share count to work. Please follow the documentation "
788
  "at <a href=\"%s\" target=\"_blank\">this link</a> to get Facebook App Secret"
789
  msgstr ""
790
 
791
- #: ../admin/partials/sassy-social-share-options-page.php:1656
792
  msgid "Load Javascript files in footer"
793
  msgstr ""
794
 
795
- #: ../admin/partials/sassy-social-share-options-page.php:1666
796
  msgid ""
797
  "If enabled (recommended), Javascript files will be included in the footer of "
798
  "your website."
799
  msgstr ""
800
 
801
- #: ../admin/partials/sassy-social-share-options-page.php:1674
802
  msgid "Delete all the options on plugin deletion"
803
  msgstr ""
804
 
805
- #: ../admin/partials/sassy-social-share-options-page.php:1684
806
  msgid ""
807
  "If enabled, plugin options will get deleted when plugin is deleted/"
808
  "uninstalled and you will need to reconfigure the options when you install "
809
  "the plugin next time."
810
  msgstr ""
811
 
812
- #: ../admin/partials/sassy-social-share-options-page.php:1693
813
  msgid "Share Count Cache"
814
  msgstr ""
815
 
816
- #: ../admin/partials/sassy-social-share-options-page.php:1699
817
  msgid "Refresh Share Count cache every"
818
  msgstr ""
819
 
820
- #: ../admin/partials/sassy-social-share-options-page.php:1715
821
  #, php-format
822
  msgid ""
823
  "Frequent cache refreshing results in slower loading of pages with share "
@@ -825,82 +833,82 @@ msgid ""
825
  "target=\"_blank\">here</a>"
826
  msgstr ""
827
 
828
- #: ../admin/partials/sassy-social-share-options-page.php:1723
829
  msgid "Clear Share Counts Cache"
830
  msgstr ""
831
 
832
- #: ../admin/partials/sassy-social-share-options-page.php:1727
833
  msgid "Share Counts cache cleared successfully."
834
  msgstr ""
835
 
836
- #: ../admin/partials/sassy-social-share-options-page.php:1734
837
  msgid "Use this to clear cached share counts"
838
  msgstr ""
839
 
840
- #: ../admin/partials/sassy-social-share-options-page.php:1743
841
  msgid "Url shortener"
842
  msgstr ""
843
 
844
- #: ../admin/partials/sassy-social-share-options-page.php:1749
845
  msgid "Use shortlinks already installed"
846
  msgstr ""
847
 
848
- #: ../admin/partials/sassy-social-share-options-page.php:1759
849
  msgid ""
850
  "Use default short url permalinks without the need for any additional plugin"
851
  msgstr ""
852
 
853
- #: ../admin/partials/sassy-social-share-options-page.php:1767
854
  msgid "Enable bit.ly url shortener for sharing"
855
  msgstr ""
856
 
857
- #: ../admin/partials/sassy-social-share-options-page.php:1777
858
  msgid "Master control to enable bit.ly url shortening for sharing"
859
  msgstr ""
860
 
861
- #: ../admin/partials/sassy-social-share-options-page.php:1785
862
  msgid "bit.ly Login"
863
  msgstr ""
864
 
865
- #: ../admin/partials/sassy-social-share-options-page.php:1795
866
  #, php-format
867
  msgid ""
868
  "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank"
869
  "\">this link</a> to get bit.ly Login"
870
  msgstr ""
871
 
872
- #: ../admin/partials/sassy-social-share-options-page.php:1804
873
  msgid "bit.ly API Key"
874
  msgstr ""
875
 
876
- #: ../admin/partials/sassy-social-share-options-page.php:1814
877
  #, php-format
878
  msgid ""
879
  "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank"
880
  "\">this link</a> to get your API key"
881
  msgstr ""
882
 
883
- #: ../admin/partials/sassy-social-share-options-page.php:1823
884
  msgid "Clear Bitly Cache"
885
  msgstr ""
886
 
887
- #: ../admin/partials/sassy-social-share-options-page.php:1827
888
  msgid "ShortUrl cache cleared successfully."
889
  msgstr ""
890
 
891
- #: ../admin/partials/sassy-social-share-options-page.php:1834
892
  msgid ""
893
  "Use this to delete short urls saved in database. Handy, if urls of your "
894
  "website have been changed but short urls are still being generated for old "
895
  "urls."
896
  msgstr ""
897
 
898
- #: ../admin/partials/sassy-social-share-options-page.php:1843
899
- #: ../admin/partials/sassy-social-share-options-page.php:1849
900
  msgid "Language"
901
  msgstr ""
902
 
903
- #: ../admin/partials/sassy-social-share-options-page.php:1859
904
  #, php-format
905
  msgid ""
906
  "Enter the code of the language you want to use for like buttons. You can "
@@ -908,60 +916,60 @@ msgid ""
908
  "Leave it empty for default language(English)"
909
  msgstr ""
910
 
911
- #: ../admin/partials/sassy-social-share-options-page.php:1868
912
  msgid "Username in sharing"
913
  msgstr ""
914
 
915
- #: ../admin/partials/sassy-social-share-options-page.php:1874
916
  msgid "Twitter username (without @)"
917
  msgstr ""
918
 
919
- #: ../admin/partials/sassy-social-share-options-page.php:1884
920
- #: ../admin/partials/sassy-social-share-options-page.php:1903
921
  msgid ""
922
  "Provided username will be appended after the content being shared as \"via "
923
  "@USERNAME\". Leave empty if you do not want any username in the content "
924
  "being shared."
925
  msgstr ""
926
 
927
- #: ../admin/partials/sassy-social-share-options-page.php:1893
928
  msgid "Buffer username (without @)"
929
  msgstr ""
930
 
931
- #: ../admin/partials/sassy-social-share-options-page.php:1912
932
  msgid "AMP"
933
  msgstr ""
934
 
935
- #: ../admin/partials/sassy-social-share-options-page.php:1918
936
  msgid "Enable sharing on AMP pages"
937
  msgstr ""
938
 
939
- #: ../admin/partials/sassy-social-share-options-page.php:1928
940
  msgid "Enable this option to render sharing icons on AMP pages"
941
  msgstr ""
942
 
943
- #: ../admin/partials/sassy-social-share-options-page.php:1937
944
- #: ../admin/partials/sassy-social-share-options-page.php:1943
945
  msgid "Custom CSS"
946
  msgstr ""
947
 
948
- #: ../admin/partials/sassy-social-share-options-page.php:1953
949
  msgid "You can specify any additional CSS rules (without &lt;style&gt; tag)"
950
  msgstr ""
951
 
952
- #: ../admin/partials/sassy-social-share-options-page.php:1972
953
  msgid "myCRED"
954
  msgstr ""
955
 
956
- #: ../admin/partials/sassy-social-share-options-page.php:1978
957
  msgid "Append myCRED referral ID to the urls being shared"
958
  msgstr ""
959
 
960
- #: ../admin/partials/sassy-social-share-options-page.php:2011
961
  msgid "Facebook Sharing Troubleshooter"
962
  msgstr ""
963
 
964
- #: ../admin/partials/sassy-social-share-options-page.php:2016
965
  msgid ""
966
  "If Facebook sharing is not working fine, click at the following link and "
967
  "enter the problematic url (where Facebook sharing is not working properly) "
@@ -969,31 +977,31 @@ msgid ""
969
  "button."
970
  msgstr ""
971
 
972
- #: ../admin/partials/sassy-social-share-options-page.php:2033
973
  msgid ""
974
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
975
  "an online website for the plugin to function properly."
976
  msgstr ""
977
 
978
- #: ../admin/partials/sassy-social-share-options-page.php:2034
979
  msgid ""
980
  "Why is sharer not showing the correct image, title and other meta tags "
981
  "content?"
982
  msgstr ""
983
 
984
- #: ../admin/partials/sassy-social-share-options-page.php:2035
985
  msgid "Why is Facebook share count not working?"
986
  msgstr ""
987
 
988
- #: ../admin/partials/sassy-social-share-options-page.php:2037
989
  msgid "How to Customize the Url being Shared?"
990
  msgstr ""
991
 
992
- #: ../admin/partials/sassy-social-share-options-page.php:2038
993
  msgid "Why is Instagram icon redirecting to Instagram website?"
994
  msgstr ""
995
 
996
- #: ../admin/partials/sassy-social-share-options-page.php:2039
997
  msgid ""
998
  "Instagram icon is there to send website visitors to the Instagram page of "
999
  "your choice. You can save the desired Instagram handle in \"Instagram "
@@ -1001,97 +1009,97 @@ msgid ""
1001
  "sections."
1002
  msgstr ""
1003
 
1004
- #: ../admin/partials/sassy-social-share-options-page.php:2041
1005
  msgid ""
1006
  "Why are Twitter shares not appearing even after registering at Twitcount.com?"
1007
  msgstr ""
1008
 
1009
- #: ../admin/partials/sassy-social-share-options-page.php:2042
1010
  msgid ""
1011
  "It takes some time for their service to track the shares made on Twitter "
1012
  "from your website. If you still feel it's taking too long you can contact "
1013
  "their support directly from their website."
1014
  msgstr ""
1015
 
1016
- #: ../admin/partials/sassy-social-share-options-page.php:2044
1017
  msgid ""
1018
  "How to restore Social Share counts lost after moving my website to SSL/Https?"
1019
  msgstr ""
1020
 
1021
- #: ../admin/partials/sassy-social-share-options-page.php:2045
1022
  msgid "How to integrate Google Analytics with sharing?"
1023
  msgstr ""
1024
 
1025
- #: ../admin/partials/sassy-social-share-options-page.php:2046
1026
  msgid "Why the color of share icons is not being updated?"
1027
  msgstr ""
1028
 
1029
- #: ../admin/partials/sassy-social-share-options-page.php:2047
1030
  msgid ""
1031
  "How to show recent Facebook Comments from all over the website in a widget?"
1032
  msgstr ""
1033
 
1034
- #: ../admin/partials/sassy-social-share-options-page.php:2048
1035
  msgid ""
1036
  "How to recover the Facebook Comments lost after moving my website to SSL/"
1037
  "Https?"
1038
  msgstr ""
1039
 
1040
- #: ../admin/partials/sassy-social-share-options-page.php:2049
1041
  msgid "How to Place Title and Social Share Icons in the Same Row?"
1042
  msgstr ""
1043
 
1044
- #: ../admin/partials/sassy-social-share-options-page.php:2050
1045
  msgid ""
1046
  "How can I show share counts of my website rather than of individual pages/"
1047
  "posts?"
1048
  msgstr ""
1049
 
1050
- #: ../admin/partials/sassy-social-share-options-page.php:2051
1051
  msgid "How can I disable sharing on particular page/post?"
1052
  msgstr ""
1053
 
1054
- #: ../admin/partials/sassy-social-share-options-page.php:2052
1055
  msgid "How can I specify minimum sharing count for sharing networks?"
1056
  msgstr ""
1057
 
1058
- #: ../admin/partials/sassy-social-share-options-page.php:2053
1059
  msgid "How to share specific page?"
1060
  msgstr ""
1061
 
1062
- #: ../admin/partials/sassy-social-share-options-page.php:2054
1063
  msgid "How to customize the look of total share counts?"
1064
  msgstr ""
1065
 
1066
- #: ../admin/partials/sassy-social-share-options-page.php:2055
1067
  msgid "How to customize the look of individual share counts?"
1068
  msgstr ""
1069
 
1070
- #: ../admin/partials/sassy-social-share-options-page.php:2056
1071
  msgid "How to show Whatsapp icon only on mobile devices?"
1072
  msgstr ""
1073
 
1074
- #: ../admin/partials/sassy-social-share-options-page.php:2057
1075
  msgid "How to hide arrow after floating sharing bar?"
1076
  msgstr ""
1077
 
1078
- #: ../admin/partials/sassy-social-share-options-page.php:2058
1079
  msgid "Why is share count not getting updated?"
1080
  msgstr ""
1081
 
1082
- #: ../admin/partials/sassy-social-share-options-page.php:2059
1083
  msgid "Why is there so much space between like buttons?"
1084
  msgstr ""
1085
 
1086
- #: ../admin/partials/sassy-social-share-options-page.php:2060
1087
  msgid "Why are floating sharing/like buttons not appearing at homepage?"
1088
  msgstr ""
1089
 
1090
- #: ../admin/partials/sassy-social-share-options-page.php:2070
1091
  msgid "Save Changes"
1092
  msgstr ""
1093
 
1094
- #: ../admin/partials/sassy-social-share-options-page.php:2082
1095
  msgid ""
1096
  "If you can send (to hello@heateor.com) how this plugin is helping your "
1097
  "business, we would be glad to shoutout on Instagram. You can also send any "
2
  msgstr ""
3
  "Project-Id-Version: Sassy Social Share\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2019-06-06 10:09+0530\n"
6
+ "PO-Revision-Date: 2019-06-06 10:09+0530\n"
7
  "Last-Translator: Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <hello@heateor.com>\n"
9
  "Language: en_IN\n"
132
  msgstr ""
133
 
134
  #: ../admin/partials/sassy-social-share-options-page.php:16
135
+ #: ../admin/partials/sassy-social-share-options-page.php:2077
136
  #, php-format
137
  msgid ""
138
  "You can appreciate the effort put in this free plugin by rating it <a href="
161
  msgstr ""
162
 
163
  #: ../admin/partials/sassy-social-share-options-page.php:35
164
+ #: ../admin/partials/sassy-social-share-options-page.php:2001
165
+ #: ../admin/partials/sassy-social-share-options-page.php:2003
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:2034
175
  msgid "FAQ"
176
  msgstr ""
177
 
596
 
597
  #: ../admin/partials/sassy-social-share-options-page.php:1025
598
  #: ../admin/partials/sassy-social-share-options-page.php:1457
599
+ #: ../admin/partials/sassy-social-share-options-page.php:2039
600
  msgid ""
601
  "Save Facebook App Id and Secret in the \"Miscellaneous\" section for "
602
  "Facebook share count to work"
766
  msgid "Alignment of horizontal floating interface. Number can be negative too."
767
  msgstr ""
768
 
769
+ #: ../admin/partials/sassy-social-share-options-page.php:1617
770
+ msgid "Note"
771
+ msgstr ""
772
+
773
+ #: ../admin/partials/sassy-social-share-options-page.php:1617
774
+ msgid "Required only to track Facebook share count"
775
+ msgstr ""
776
+
777
+ #: ../admin/partials/sassy-social-share-options-page.php:1622
778
  msgid "Facebook App ID"
779
  msgstr ""
780
 
781
+ #: ../admin/partials/sassy-social-share-options-page.php:1632
782
  #, php-format
783
  msgid ""
784
  "Required for Facebook share count to work. Please follow the documentation "
785
  "at <a href=\"%s\" target=\"_blank\">this link</a> to get Facebook App ID"
786
  msgstr ""
787
 
788
+ #: ../admin/partials/sassy-social-share-options-page.php:1640
789
  msgid "Facebook App Secret"
790
  msgstr ""
791
 
792
+ #: ../admin/partials/sassy-social-share-options-page.php:1650
793
  #, php-format
794
  msgid ""
795
  "Required for Facebook share count to work. Please follow the documentation "
796
  "at <a href=\"%s\" target=\"_blank\">this link</a> to get Facebook App Secret"
797
  msgstr ""
798
 
799
+ #: ../admin/partials/sassy-social-share-options-page.php:1659
800
  msgid "Load Javascript files in footer"
801
  msgstr ""
802
 
803
+ #: ../admin/partials/sassy-social-share-options-page.php:1669
804
  msgid ""
805
  "If enabled (recommended), Javascript files will be included in the footer of "
806
  "your website."
807
  msgstr ""
808
 
809
+ #: ../admin/partials/sassy-social-share-options-page.php:1677
810
  msgid "Delete all the options on plugin deletion"
811
  msgstr ""
812
 
813
+ #: ../admin/partials/sassy-social-share-options-page.php:1687
814
  msgid ""
815
  "If enabled, plugin options will get deleted when plugin is deleted/"
816
  "uninstalled and you will need to reconfigure the options when you install "
817
  "the plugin next time."
818
  msgstr ""
819
 
820
+ #: ../admin/partials/sassy-social-share-options-page.php:1696
821
  msgid "Share Count Cache"
822
  msgstr ""
823
 
824
+ #: ../admin/partials/sassy-social-share-options-page.php:1702
825
  msgid "Refresh Share Count cache every"
826
  msgstr ""
827
 
828
+ #: ../admin/partials/sassy-social-share-options-page.php:1718
829
  #, php-format
830
  msgid ""
831
  "Frequent cache refreshing results in slower loading of pages with share "
833
  "target=\"_blank\">here</a>"
834
  msgstr ""
835
 
836
+ #: ../admin/partials/sassy-social-share-options-page.php:1726
837
  msgid "Clear Share Counts Cache"
838
  msgstr ""
839
 
840
+ #: ../admin/partials/sassy-social-share-options-page.php:1730
841
  msgid "Share Counts cache cleared successfully."
842
  msgstr ""
843
 
844
+ #: ../admin/partials/sassy-social-share-options-page.php:1737
845
  msgid "Use this to clear cached share counts"
846
  msgstr ""
847
 
848
+ #: ../admin/partials/sassy-social-share-options-page.php:1746
849
  msgid "Url shortener"
850
  msgstr ""
851
 
852
+ #: ../admin/partials/sassy-social-share-options-page.php:1752
853
  msgid "Use shortlinks already installed"
854
  msgstr ""
855
 
856
+ #: ../admin/partials/sassy-social-share-options-page.php:1762
857
  msgid ""
858
  "Use default short url permalinks without the need for any additional plugin"
859
  msgstr ""
860
 
861
+ #: ../admin/partials/sassy-social-share-options-page.php:1770
862
  msgid "Enable bit.ly url shortener for sharing"
863
  msgstr ""
864
 
865
+ #: ../admin/partials/sassy-social-share-options-page.php:1780
866
  msgid "Master control to enable bit.ly url shortening for sharing"
867
  msgstr ""
868
 
869
+ #: ../admin/partials/sassy-social-share-options-page.php:1788
870
  msgid "bit.ly Login"
871
  msgstr ""
872
 
873
+ #: ../admin/partials/sassy-social-share-options-page.php:1798
874
  #, php-format
875
  msgid ""
876
  "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank"
877
  "\">this link</a> to get bit.ly Login"
878
  msgstr ""
879
 
880
+ #: ../admin/partials/sassy-social-share-options-page.php:1807
881
  msgid "bit.ly API Key"
882
  msgstr ""
883
 
884
+ #: ../admin/partials/sassy-social-share-options-page.php:1817
885
  #, php-format
886
  msgid ""
887
  "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank"
888
  "\">this link</a> to get your API key"
889
  msgstr ""
890
 
891
+ #: ../admin/partials/sassy-social-share-options-page.php:1826
892
  msgid "Clear Bitly Cache"
893
  msgstr ""
894
 
895
+ #: ../admin/partials/sassy-social-share-options-page.php:1830
896
  msgid "ShortUrl cache cleared successfully."
897
  msgstr ""
898
 
899
+ #: ../admin/partials/sassy-social-share-options-page.php:1837
900
  msgid ""
901
  "Use this to delete short urls saved in database. Handy, if urls of your "
902
  "website have been changed but short urls are still being generated for old "
903
  "urls."
904
  msgstr ""
905
 
906
+ #: ../admin/partials/sassy-social-share-options-page.php:1846
907
+ #: ../admin/partials/sassy-social-share-options-page.php:1852
908
  msgid "Language"
909
  msgstr ""
910
 
911
+ #: ../admin/partials/sassy-social-share-options-page.php:1862
912
  #, php-format
913
  msgid ""
914
  "Enter the code of the language you want to use for like buttons. You can "
916
  "Leave it empty for default language(English)"
917
  msgstr ""
918
 
919
+ #: ../admin/partials/sassy-social-share-options-page.php:1871
920
  msgid "Username in sharing"
921
  msgstr ""
922
 
923
+ #: ../admin/partials/sassy-social-share-options-page.php:1877
924
  msgid "Twitter username (without @)"
925
  msgstr ""
926
 
927
+ #: ../admin/partials/sassy-social-share-options-page.php:1887
928
+ #: ../admin/partials/sassy-social-share-options-page.php:1906
929
  msgid ""
930
  "Provided username will be appended after the content being shared as \"via "
931
  "@USERNAME\". Leave empty if you do not want any username in the content "
932
  "being shared."
933
  msgstr ""
934
 
935
+ #: ../admin/partials/sassy-social-share-options-page.php:1896
936
  msgid "Buffer username (without @)"
937
  msgstr ""
938
 
939
+ #: ../admin/partials/sassy-social-share-options-page.php:1915
940
  msgid "AMP"
941
  msgstr ""
942
 
943
+ #: ../admin/partials/sassy-social-share-options-page.php:1921
944
  msgid "Enable sharing on AMP pages"
945
  msgstr ""
946
 
947
+ #: ../admin/partials/sassy-social-share-options-page.php:1931
948
  msgid "Enable this option to render sharing icons on AMP pages"
949
  msgstr ""
950
 
951
+ #: ../admin/partials/sassy-social-share-options-page.php:1940
952
+ #: ../admin/partials/sassy-social-share-options-page.php:1946
953
  msgid "Custom CSS"
954
  msgstr ""
955
 
956
+ #: ../admin/partials/sassy-social-share-options-page.php:1956
957
  msgid "You can specify any additional CSS rules (without &lt;style&gt; tag)"
958
  msgstr ""
959
 
960
+ #: ../admin/partials/sassy-social-share-options-page.php:1975
961
  msgid "myCRED"
962
  msgstr ""
963
 
964
+ #: ../admin/partials/sassy-social-share-options-page.php:1981
965
  msgid "Append myCRED referral ID to the urls being shared"
966
  msgstr ""
967
 
968
+ #: ../admin/partials/sassy-social-share-options-page.php:2014
969
  msgid "Facebook Sharing Troubleshooter"
970
  msgstr ""
971
 
972
+ #: ../admin/partials/sassy-social-share-options-page.php:2019
973
  msgid ""
974
  "If Facebook sharing is not working fine, click at the following link and "
975
  "enter the problematic url (where Facebook sharing is not working properly) "
977
  "button."
978
  msgstr ""
979
 
980
+ #: ../admin/partials/sassy-social-share-options-page.php:2036
981
  msgid ""
982
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
983
  "an online website for the plugin to function properly."
984
  msgstr ""
985
 
986
+ #: ../admin/partials/sassy-social-share-options-page.php:2037
987
  msgid ""
988
  "Why is sharer not showing the correct image, title and other meta tags "
989
  "content?"
990
  msgstr ""
991
 
992
+ #: ../admin/partials/sassy-social-share-options-page.php:2038
993
  msgid "Why is Facebook share count not working?"
994
  msgstr ""
995
 
996
+ #: ../admin/partials/sassy-social-share-options-page.php:2040
997
  msgid "How to Customize the Url being Shared?"
998
  msgstr ""
999
 
1000
+ #: ../admin/partials/sassy-social-share-options-page.php:2041
1001
  msgid "Why is Instagram icon redirecting to Instagram website?"
1002
  msgstr ""
1003
 
1004
+ #: ../admin/partials/sassy-social-share-options-page.php:2042
1005
  msgid ""
1006
  "Instagram icon is there to send website visitors to the Instagram page of "
1007
  "your choice. You can save the desired Instagram handle in \"Instagram "
1009
  "sections."
1010
  msgstr ""
1011
 
1012
+ #: ../admin/partials/sassy-social-share-options-page.php:2044
1013
  msgid ""
1014
  "Why are Twitter shares not appearing even after registering at Twitcount.com?"
1015
  msgstr ""
1016
 
1017
+ #: ../admin/partials/sassy-social-share-options-page.php:2045
1018
  msgid ""
1019
  "It takes some time for their service to track the shares made on Twitter "
1020
  "from your website. If you still feel it's taking too long you can contact "
1021
  "their support directly from their website."
1022
  msgstr ""
1023
 
1024
+ #: ../admin/partials/sassy-social-share-options-page.php:2047
1025
  msgid ""
1026
  "How to restore Social Share counts lost after moving my website to SSL/Https?"
1027
  msgstr ""
1028
 
1029
+ #: ../admin/partials/sassy-social-share-options-page.php:2048
1030
  msgid "How to integrate Google Analytics with sharing?"
1031
  msgstr ""
1032
 
1033
+ #: ../admin/partials/sassy-social-share-options-page.php:2049
1034
  msgid "Why the color of share icons is not being updated?"
1035
  msgstr ""
1036
 
1037
+ #: ../admin/partials/sassy-social-share-options-page.php:2050
1038
  msgid ""
1039
  "How to show recent Facebook Comments from all over the website in a widget?"
1040
  msgstr ""
1041
 
1042
+ #: ../admin/partials/sassy-social-share-options-page.php:2051
1043
  msgid ""
1044
  "How to recover the Facebook Comments lost after moving my website to SSL/"
1045
  "Https?"
1046
  msgstr ""
1047
 
1048
+ #: ../admin/partials/sassy-social-share-options-page.php:2052
1049
  msgid "How to Place Title and Social Share Icons in the Same Row?"
1050
  msgstr ""
1051
 
1052
+ #: ../admin/partials/sassy-social-share-options-page.php:2053
1053
  msgid ""
1054
  "How can I show share counts of my website rather than of individual pages/"
1055
  "posts?"
1056
  msgstr ""
1057
 
1058
+ #: ../admin/partials/sassy-social-share-options-page.php:2054
1059
  msgid "How can I disable sharing on particular page/post?"
1060
  msgstr ""
1061
 
1062
+ #: ../admin/partials/sassy-social-share-options-page.php:2055
1063
  msgid "How can I specify minimum sharing count for sharing networks?"
1064
  msgstr ""
1065
 
1066
+ #: ../admin/partials/sassy-social-share-options-page.php:2056
1067
  msgid "How to share specific page?"
1068
  msgstr ""
1069
 
1070
+ #: ../admin/partials/sassy-social-share-options-page.php:2057
1071
  msgid "How to customize the look of total share counts?"
1072
  msgstr ""
1073
 
1074
+ #: ../admin/partials/sassy-social-share-options-page.php:2058
1075
  msgid "How to customize the look of individual share counts?"
1076
  msgstr ""
1077
 
1078
+ #: ../admin/partials/sassy-social-share-options-page.php:2059
1079
  msgid "How to show Whatsapp icon only on mobile devices?"
1080
  msgstr ""
1081
 
1082
+ #: ../admin/partials/sassy-social-share-options-page.php:2060
1083
  msgid "How to hide arrow after floating sharing bar?"
1084
  msgstr ""
1085
 
1086
+ #: ../admin/partials/sassy-social-share-options-page.php:2061
1087
  msgid "Why is share count not getting updated?"
1088
  msgstr ""
1089
 
1090
+ #: ../admin/partials/sassy-social-share-options-page.php:2062
1091
  msgid "Why is there so much space between like buttons?"
1092
  msgstr ""
1093
 
1094
+ #: ../admin/partials/sassy-social-share-options-page.php:2063
1095
  msgid "Why are floating sharing/like buttons not appearing at homepage?"
1096
  msgstr ""
1097
 
1098
+ #: ../admin/partials/sassy-social-share-options-page.php:2073
1099
  msgid "Save Changes"
1100
  msgstr ""
1101
 
1102
+ #: ../admin/partials/sassy-social-share-options-page.php:2085
1103
  msgid ""
1104
  "If you can send (to hello@heateor.com) how this plugin is helping your "
1105
  "business, we would be glad to shoutout on Instagram. You can also send any "
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: Heateor
3
  Donate link: https://www.heateor.com/donate/?action=Sassy+Social+Share
4
  Tags: social share, social sharing, social media share, share facebook, facebook social share, wordpress social share, share buttons, social share buttons, facebook like, twitter tweet, whatsapp share, line share
5
  Requires at least: 2.5.0
6
- Tested up to: 5.2
7
- Stable tag: 3.2.24
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,10 @@ 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.24 =
127
  * [Bugfix] Facebook share count was not working in some cases
128
 
@@ -767,4 +771,8 @@ Yes, we can help you with it. Just drop an email at support[at]heateor[dot]com
767
  * [Bugfix] Performance improvement and minor bugfix
768
 
769
  = 3.2.24 =
770
- * [Bugfix] Facebook share count was not working in some cases
 
 
 
 
3
  Donate link: https://www.heateor.com/donate/?action=Sassy+Social+Share
4
  Tags: social share, social sharing, social media share, share facebook, facebook social share, wordpress social share, share buttons, social share buttons, facebook like, twitter tweet, whatsapp share, line share
5
  Requires at least: 2.5.0
6
+ Tested up to: 5.2.1
7
+ Stable tag: 3.2.25
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.25 [6 June 2019] =
127
+ * [Bugfix] Minor bugfixes
128
+ * [Bugfix] Facebook App ID and Facebook App Secret options were not appearing in Miscellaneous section if Facebook share icon was enabled via shortcode or widget
129
+
130
  = 3.2.24 =
131
  * [Bugfix] Facebook share count was not working in some cases
132
 
771
  * [Bugfix] Performance improvement and minor bugfix
772
 
773
  = 3.2.24 =
774
+ * [Bugfix] Facebook share count was not working in some cases
775
+
776
+ = 3.2.25 [6 June 2019] =
777
+ * [Bugfix] Minor bugfixes
778
+ * [Bugfix] Facebook App ID and Facebook App Secret options were not appearing in Miscellaneous section if Facebook share icon was enabled via shortcode or widget
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.24
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.24' );
25
  define( 'HEATEOR_SSS_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
26
 
27
  // plugin core class object
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.25
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.25' );
25
  define( 'HEATEOR_SSS_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
26
 
27
  // plugin core class object