Version Description
[27 November 2019] = [Improvement] Javascript is being loaded only at the webpages where social share icons are integrated [Improvement] Admin UI improvements (Pro and Premium versions now available) [Bugfix] "Load Javascript files in footer" option was coming twice at plugin options page
Download this release
Release Info
Developer | Heateor |
Plugin | WordPress Social Sharing Plugin – Sassy Social Share |
Version | 3.3.5 |
Comparing to | |
See all releases |
Code changes from version 3.3.4 to 3.3.5
- admin/partials/sassy-social-share-options-page.php +110 -94
- images/unlock/click-to-tweet-shortcode.png +0 -0
- images/unlock/custom-icon-url.png +0 -0
- images/unlock/hide-standard-share-bar.png +0 -0
- images/unlock/index.php +1 -0
- images/unlock/multiple-instances.png +0 -0
- images/unlock/responsive-icons.png +0 -0
- images/unlock/social-share-popup.png +0 -0
- includes/class-sassy-social-share-shortcodes.php +23 -0
- includes/class-sassy-social-share-widgets.php +48 -0
- languages/sassy-social-share.pot +371 -363
- public/class-sassy-social-share-public.php +21 -669
- public/js/sassy-social-share-public.js +1 -1
- readme.txt +12 -2
- sassy-social-share.php +2 -2
admin/partials/sassy-social-share-options-page.php
CHANGED
@@ -1,5 +1,4 @@
|
|
1 |
<?php
|
2 |
-
|
3 |
/**
|
4 |
* Options page
|
5 |
*
|
@@ -11,6 +10,7 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
11 |
<div id="fb-root"></div>
|
12 |
|
13 |
<div class="metabox-holder columns-2" id="post-body">
|
|
|
14 |
<div>
|
15 |
<?php
|
16 |
echo sprintf( __( 'You can appreciate the effort put in this free plugin by rating it <a href="%s" target="_blank">here</a>', 'sassy-social-share' ), 'https://wordpress.org/support/view/plugin-reviews/sassy-social-share' );
|
@@ -136,8 +136,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
136 |
|
137 |
<tr>
|
138 |
<th>
|
139 |
-
<img id="heateor_sss_icon_shape_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
140 |
<label><?php _e( "Shape", 'sassy-social-share' ); ?></label>
|
|
|
141 |
</th>
|
142 |
<td>
|
143 |
<input id="heateor_sss_icon_round" onclick="tempHorShape = 'round';heateorSssSharingHorizontalPreview()" name="heateor_sss[horizontal_sharing_shape]" type="radio" <?php echo $sharing_shape == 'round' ? 'checked = "checked"' : '';?> value="round" />
|
@@ -160,8 +160,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
160 |
<tbody id="heateor_sss_size_options" <?php echo ! isset( $options['horizontal_sharing_shape'] ) || $options['horizontal_sharing_shape'] != 'rectangle' ? '' : 'style="display: none"'; ?>>
|
161 |
<tr>
|
162 |
<th>
|
163 |
-
<img id="heateor_sss_icon_size_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
164 |
<label><?php _e("Size (in pixels)", 'sassy-social-share' ); ?></label>
|
|
|
165 |
</th>
|
166 |
<td>
|
167 |
<input style="width:50px" id="heateor_sss_icon_size" name="heateor_sss[horizontal_sharing_size]" type="text" value="<?php echo $sharing_size; ?>" />
|
@@ -186,8 +186,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
186 |
<tbody id="heateor_sss_rectangle_options" <?php echo isset( $options['horizontal_sharing_shape'] ) && $options['horizontal_sharing_shape'] == 'rectangle' ? '' : 'style="display: none"'; ?>>
|
187 |
<tr>
|
188 |
<th>
|
189 |
-
<img id="heateor_sss_icon_width_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
190 |
<label><?php _e("Width (in pixels)", 'sassy-social-share' ); ?></label>
|
|
|
191 |
</th>
|
192 |
<td>
|
193 |
<input style="width:50px" id="heateor_sss_icon_width" name="heateor_sss[horizontal_sharing_width]" type="text" value="<?php echo $sharing_width; ?>" />
|
@@ -210,8 +210,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
210 |
|
211 |
<tr>
|
212 |
<th>
|
213 |
-
<img id="heateor_sss_icon_height_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
214 |
<label><?php _e("Height (in pixels)", 'sassy-social-share' ); ?></label>
|
|
|
215 |
</th>
|
216 |
<td>
|
217 |
<input style="width:50px" id="heateor_sss_icon_height" name="heateor_sss[horizontal_sharing_height]" type="text" value="<?php echo $sharing_height; ?>" />
|
@@ -236,8 +236,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
236 |
<tbody id="heateor_sss_border_radius_options" <?php echo isset( $options['horizontal_sharing_shape'] ) && $options['horizontal_sharing_shape'] != 'round' ? '' : 'style="display: none"'; ?>>
|
237 |
<tr>
|
238 |
<th>
|
239 |
-
<img id="heateor_sss_icon_border_radius_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
240 |
<label><?php _e("Border radius (in pixels)", 'sassy-social-share' ); ?></label>
|
|
|
241 |
</th>
|
242 |
<td>
|
243 |
<input style="width:50px" id="heateor_sss_icon_border_radius" name="heateor_sss[horizontal_border_radius]" type="text" value="<?php echo $sharing_border_radius; ?>" onkeyup="heateorSssSharingBorderRadius = this.value.trim() ? this.value.trim() + 'px' : '0px';heateorSssUpdateSharingPreview(heateorSssSharingBorderRadius, 'borderRadius', '0px', 'heateor_sss_preview' )" />
|
@@ -255,8 +255,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
255 |
|
256 |
<tr>
|
257 |
<th>
|
258 |
-
<img id="heateor_sss_font_color_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
259 |
<label><?php _e("Logo Color", 'sassy-social-share' ); ?></label>
|
|
|
260 |
</th>
|
261 |
<td>
|
262 |
<script type="text/javascript">var heateorSssSharingTempColor = '<?php echo $sharing_color ? $sharing_color : "#fff" ?>';</script>
|
@@ -277,8 +277,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
277 |
|
278 |
<tr>
|
279 |
<th>
|
280 |
-
<img id="heateor_sss_bg_color_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
281 |
<label><?php _e("Background Color", 'sassy-social-share' ); ?></label>
|
|
|
282 |
</th>
|
283 |
<td>
|
284 |
<label for="heateor_sss_bg_color_default"><?php _e("Default", 'sassy-social-share' ); ?></label><input style="width: 100px" id="heateor_sss_bg_color_default" name="heateor_sss[horizontal_bg_color_default]" type="text" onkeyup="heateorSssSharingBg = this.value.trim() ? this.value.trim() : '#3C589A'; heateorSssUpdateSharingPreview(this.value.trim(), 'backgroundColor', '#3C589A', 'heateor_sss_preview' )" value="<?php echo $horizontal_bg ?>" />
|
@@ -296,8 +296,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
296 |
|
297 |
<tr>
|
298 |
<th>
|
299 |
-
<img id="heateor_sss_border_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
300 |
<label><?php _e("Border", 'sassy-social-share' ); ?></label>
|
|
|
301 |
</th>
|
302 |
<td>
|
303 |
<script type="text/javascript">var heateorSssBorderWidthHover = '<?php echo $border_width_hover = isset( $options['horizontal_border_width_hover'] ) ? $options['horizontal_border_width_hover'] : ''; ?>', heateorSssBorderColorHover = '<?php echo $border_color_hover = isset( $options['horizontal_border_color_hover'] ) ? $options['horizontal_border_color_hover'] : ''; ?>'</script>
|
@@ -323,8 +323,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
323 |
|
324 |
<tr>
|
325 |
<th>
|
326 |
-
<img id="heateor_sss_counter_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
327 |
<label><?php _e("Counter Position", 'sassy-social-share' ); ?><br/><?php _e("(applies, if counter enabled)", 'sassy-social-share' ); ?></label>
|
|
|
328 |
</th>
|
329 |
<td>
|
330 |
<input id="heateor_sss_counter_left" name="heateor_sss[horizontal_counter_position]" onclick="heateorSssCounterPreview(this.value.trim() )" type="radio" <?php echo $counter_position == 'left' ? 'checked = "checked"' : '';?> value="left" />
|
@@ -354,6 +354,14 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
354 |
</div>
|
355 |
</td>
|
356 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
357 |
|
358 |
</table>
|
359 |
</div>
|
@@ -444,8 +452,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
444 |
|
445 |
<tr>
|
446 |
<th>
|
447 |
-
<img id="heateor_sss_vertical_sharing_icon_shape_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
448 |
<label><?php _e("Shape", 'sassy-social-share' ); ?></label>
|
|
|
449 |
</th>
|
450 |
<td>
|
451 |
<input id="heateor_sss_vertical_icon_round" onclick="tempVerticalShape = 'round';heateorSssSharingVerticalPreview()" name="heateor_sss[vertical_sharing_shape]" type="radio" <?php echo $vertical_sharing_shape == 'round' ? 'checked = "checked"' : '';?> value="round" />
|
@@ -468,8 +476,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
468 |
<tbody id="heateor_sss_vertical_size_options" <?php echo ! isset( $options['vertical_sharing_shape'] ) || $options['vertical_sharing_shape'] != 'rectangle' ? '' : 'style="display: none"'; ?>>
|
469 |
<tr>
|
470 |
<th>
|
471 |
-
<img id="heateor_sss_vertical_sharing_icon_size_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
472 |
<label><?php _e("Size (in pixels)", 'sassy-social-share' ); ?></label>
|
|
|
473 |
</th>
|
474 |
<td>
|
475 |
<input style="width:50px" id="heateor_sss_vertical_sharing_icon_size" name="heateor_sss[vertical_sharing_size]" type="text" value="<?php echo $vertical_sharing_size; ?>" />
|
@@ -494,8 +502,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
494 |
<tbody id="heateor_sss_vertical_rectangle_options" <?php echo isset( $options['vertical_sharing_shape'] ) && $options['vertical_sharing_shape'] == 'rectangle' ? '' : 'style="display: none"'; ?>>
|
495 |
<tr>
|
496 |
<th>
|
497 |
-
<img id="heateor_sss_vertical_icon_width_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
498 |
<label><?php _e("Width (in pixels)", 'sassy-social-share' ); ?></label>
|
|
|
499 |
</th>
|
500 |
<td>
|
501 |
<input style="width:50px" id="heateor_sss_vertical_icon_width" name="heateor_sss[vertical_sharing_width]" type="text" value="<?php echo $vertical_sharing_width; ?>" />
|
@@ -518,8 +526,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
518 |
|
519 |
<tr>
|
520 |
<th>
|
521 |
-
<img id="heateor_sss_vertical_icon_height_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
522 |
<label><?php _e("Height (in pixels)", 'sassy-social-share' ); ?></label>
|
|
|
523 |
</th>
|
524 |
<td>
|
525 |
<input style="width:50px" id="heateor_sss_vertical_icon_height" name="heateor_sss[vertical_sharing_height]" type="text" value="<?php echo $vertical_sharing_height; ?>" />
|
@@ -544,8 +552,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
544 |
<tbody id="heateor_sss_vertical_border_radius_options" <?php echo isset( $options['vertical_sharing_shape'] ) && $options['vertical_sharing_shape'] != 'round' ? '' : 'style="display: none"'; ?>>
|
545 |
<tr>
|
546 |
<th>
|
547 |
-
<img id="heateor_sss_vertical_icon_border_radius_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
548 |
<label><?php _e("Border radius (in pixels)", 'sassy-social-share' ); ?></label>
|
|
|
549 |
</th>
|
550 |
<td>
|
551 |
<input style="width:50px" id="heateor_sss_vertical_icon_border_radius" name="heateor_sss[vertical_border_radius]" type="text" value="<?php echo $vertical_sharing_border_radius; ?>" onkeyup="heateorSssVerticalBorderRadius = this.value.trim() ? this.value.trim() + 'px' : '0px';heateorSssUpdateSharingPreview(heateorSssVerticalBorderRadius, 'borderRadius', '0px', 'heateor_sss_vertical_preview' )" />
|
@@ -563,8 +571,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
563 |
|
564 |
<tr>
|
565 |
<th>
|
566 |
-
<img id="heateor_sss_vertical_font_color_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
567 |
<label><?php _e("Logo Color", 'sassy-social-share' ); ?></label>
|
|
|
568 |
</th>
|
569 |
<td>
|
570 |
<script type="text/javascript">var heateorSssVerticalSharingTempColor = '<?php echo $vertical_sharing_color ? $vertical_sharing_color : "#fff" ?>';</script>
|
@@ -585,8 +593,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
585 |
|
586 |
<tr>
|
587 |
<th>
|
588 |
-
<img id="heateor_sss_vertical_icon_bg_color_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
589 |
<label><?php _e("Background Color", 'sassy-social-share' ); ?></label>
|
|
|
590 |
</th>
|
591 |
<td>
|
592 |
<label for="heateor_sss_vertical_icon_bg_color_default"><?php _e("Default", 'sassy-social-share' ); ?></label><input style="width: 100px" id="heateor_sss_vertical_icon_bg_color_default" name="heateor_sss[vertical_bg_color_default]" type="text" onkeyup="heateorSssVerticalSharingBg = this.value.trim() ? this.value.trim() : '#3C589A'; heateorSssUpdateSharingPreview(this.value.trim(), 'backgroundColor', '#3C589A', 'heateor_sss_vertical_preview' )" value="<?php echo $vertical_bg ?>" />
|
@@ -604,8 +612,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
604 |
|
605 |
<tr>
|
606 |
<th>
|
607 |
-
<img id="heateor_sss_vertical_border_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
608 |
<label><?php _e("Border", 'sassy-social-share' ); ?></label>
|
|
|
609 |
</th>
|
610 |
<td>
|
611 |
<label><strong><?php _e("Default", 'sassy-social-share' ); ?></strong></label>
|
@@ -630,8 +638,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
630 |
|
631 |
<tr>
|
632 |
<th>
|
633 |
-
<img id="heateor_sss_vertical_counter_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
634 |
<label><?php _e("Counter Position", 'sassy-social-share' ); ?><br/><?php _e("(applies, if counter enabled)", 'sassy-social-share' ); ?></label>
|
|
|
635 |
</th>
|
636 |
<td>
|
637 |
<input id="heateor_sss_vertical_counter_left" name="heateor_sss[vertical_counter_position]" onclick="heateorSssVerticalCounterPreview(this.value.trim() )" type="radio" <?php echo $vertical_counter_position == 'left' ? 'checked = "checked"' : '';?> value="left" />
|
@@ -678,8 +686,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
678 |
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
|
679 |
<tr>
|
680 |
<th>
|
681 |
-
<img id="heateor_sss_horizontal_enable_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
682 |
<label for="heateor_sss_horizontal_enable"><?php _e("Enable Standard sharing interface", 'sassy-social-share' ); ?></label>
|
|
|
683 |
</th>
|
684 |
<td>
|
685 |
<input id="heateor_sss_horizontal_enable" onclick="heateorSssHorizontalSharingOptionsToggle(this)" name="heateor_sss[hor_enable]" type="checkbox" <?php echo isset( $options['hor_enable'] ) ? 'checked = "checked"' : '';?> value="1" />
|
@@ -699,8 +707,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
699 |
<tbody id="heateor_sss_horizontal_sharing_options" <?php echo isset( $options['hor_enable'] ) ? '' : 'style="display: none"'; ?>>
|
700 |
<tr>
|
701 |
<th>
|
702 |
-
<img id="heateor_sss_horizontal_target_url_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
703 |
<label for="heateor_sss_horizontal_target_url"><?php _e("Target Url", 'sassy-social-share' ); ?></label>
|
|
|
704 |
</th>
|
705 |
<td id="heateor_sss_target_url_column">
|
706 |
<input id="heateor_sss_target_url_default" name="heateor_sss[horizontal_target_url]" type="radio" <?php echo !isset( $options['horizontal_target_url'] ) || $options['horizontal_target_url'] == 'default' ? 'checked = "checked"' : '';?> value="default" />
|
@@ -722,8 +730,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
722 |
|
723 |
<tr>
|
724 |
<th>
|
725 |
-
<img id="heateor_sss_title_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
726 |
<label for="heateor_sss_fblogin_title"><?php _e("Title", 'sassy-social-share' ); ?></label>
|
|
|
727 |
</th>
|
728 |
<td>
|
729 |
<input id="heateor_sss_fblogin_title" name="heateor_sss[title]" type="text" value="<?php echo isset( $options['title'] ) ? $options['title'] : '' ?>" />
|
@@ -767,8 +775,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
767 |
<tbody id="heateor_sss_instagram_options" <?php echo ! isset( $options['horizontal_re_providers'] ) || ! in_array( 'instagram', $options['horizontal_re_providers'] ) ? 'style = "display: none"' : '';?> >
|
768 |
<tr>
|
769 |
<th>
|
770 |
-
<img id="heateor_sss_instagram_username_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
771 |
<label for="heateor_sss_instagram_username"><?php _e( "Instagram username", 'sassy-social-share' ); ?></label>
|
|
|
772 |
</th>
|
773 |
<td>
|
774 |
<input id="heateor_sss_instagram_username" name="heateor_sss[instagram_username]" type="text" value="<?php echo $instagram_username ?>" />
|
@@ -787,8 +795,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
787 |
<tbody id="heateor_sss_youtube_options" <?php echo ! isset( $options['horizontal_re_providers'] ) || ! in_array( 'youtube', $options['horizontal_re_providers'] ) ? 'style = "display: none"' : '';?> >
|
788 |
<tr>
|
789 |
<th>
|
790 |
-
<img id="heateor_sss_youtube_username_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
791 |
<label for="heateor_sss_youtube_username"><?php _e( "Youtube URL", 'sassy-social-share' ); ?></label>
|
|
|
792 |
</th>
|
793 |
<td>
|
794 |
<input id="heateor_sss_youtube_username" name="heateor_sss[youtube_username]" type="text" value="<?php echo $youtube_username ?>" />
|
@@ -807,8 +815,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
807 |
<tbody id="heateor_sss_comment_options" <?php echo ! isset( $options['horizontal_re_providers'] ) || ! in_array( 'Comment', $options['horizontal_re_providers'] ) ? 'style = "display: none"' : '';?> >
|
808 |
<tr>
|
809 |
<th>
|
810 |
-
<img id="heateor_sss_comment_container_id_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
811 |
<label for="heateor_sss_comment_container_id"><?php _e( "HTML ID of container element of comment form", 'sassy-social-share' ); ?></label>
|
|
|
812 |
</th>
|
813 |
<td>
|
814 |
<input id="heateor_sss_comment_container_id" name="heateor_sss[comment_container_id]" type="text" value="<?php echo $commentform_container_id ?>" />
|
@@ -828,10 +836,16 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
828 |
$sharingNetworks = array( 'facebook', 'twitter', 'linkedin', 'print', 'email', 'reddit', 'digg', 'float_it', 'tumblr', 'vkontakte', 'pinterest', 'xing', 'whatsapp', 'instagram', 'yummly', 'buffer', 'AIM', 'Amazon_Wish_List', 'AOL_Mail', 'App.net', 'Balatarin', 'BibSonomy', 'Bitty_Browser', 'Blinklist', 'Blogger_Post', 'BlogMarks', 'Bookmarks.fr', 'Box.net', 'BuddyMarks', 'Care2_News', 'CiteULike', 'Comment', 'Copy_Link', 'Diary.Ru', 'Diaspora', 'Diigo', 'Douban', 'Draugiem', 'DZone', 'Evernote', 'Facebook_Messenger', 'Fark', 'Fintel', 'Flipboard', 'Folkd', 'GentleReader', 'Google_Bookmarks', 'Google_Classroom', 'Google_Gmail', 'Hacker_News', 'Hatena', 'Instapaper', 'Jamespot', 'Kakao', 'Kik', 'Kindle_It', 'Known', 'Line', 'LiveJournal', 'Mail.Ru', 'Mendeley', 'Meneame', 'MeWe', 'mix', 'Mixi', 'MySpace', 'Netvouz', 'Odnoklassniki', 'Outlook.com', 'Papaly', 'Pinboard', 'Plurk', 'Pocket', 'PrintFriendly', 'Protopage_Bookmarks', 'Pusha', 'Qzone', 'Rediff MyPage', 'Refind', 'Renren', 'Sina Weibo', 'SiteJot', 'Skype', 'Slashdot', 'SMS', 'StockTwits', 'Svejo', 'Symbaloo_Feeds', 'Telegram', 'Threema', 'Trello', 'Tuenti', 'Twiddla', 'TypePad_Post', 'Viadeo', 'Viber', 'Wanelo', 'Webnews', 'WordPress', 'Wykop', 'Yahoo_Mail', 'Yoolink','youtube',);
|
829 |
?>
|
830 |
|
|
|
|
|
|
|
|
|
|
|
|
|
831 |
<tr>
|
832 |
<th>
|
833 |
-
<img id="heateor_sss_rearrange_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
834 |
<label><?php _e( "Rearrange icons", 'sassy-social-share' ); ?></label>
|
|
|
835 |
</th>
|
836 |
</tr>
|
837 |
|
@@ -905,8 +919,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
905 |
|
906 |
<tr>
|
907 |
<th colspan="2">
|
908 |
-
<img id="heateor_sss_providers_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
909 |
<label><?php _e( "Select Sharing Services", 'sassy-social-share' ); ?></label>
|
|
|
910 |
</th>
|
911 |
</tr>
|
912 |
|
@@ -949,8 +963,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
949 |
|
950 |
<tr>
|
951 |
<th>
|
952 |
-
<img id="heateor_sss_hor_alignment_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
953 |
<label for="heateor_sss_hor_alignment"><?php _e("Horizontal alignment", 'sassy-social-share' ); ?></label>
|
|
|
954 |
</th>
|
955 |
<td>
|
956 |
<select id="heateor_sss_hor_alignment" name="heateor_sss[hor_sharing_alignment]">
|
@@ -971,8 +985,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
971 |
|
972 |
<tr>
|
973 |
<th>
|
974 |
-
<img id="heateor_sss_position_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
975 |
<label><?php _e("Position with respect to content", 'sassy-social-share' ); ?></label>
|
|
|
976 |
</th>
|
977 |
<td>
|
978 |
<input id="heateor_sss_top" name="heateor_sss[top]" type="checkbox" <?php echo isset( $options['top'] ) ? 'checked = "checked"' : '';?> value="1" />
|
@@ -989,11 +1003,19 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
989 |
</div>
|
990 |
</td>
|
991 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
992 |
|
993 |
<tr>
|
994 |
<th>
|
995 |
-
<img id="heateor_sss_location_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
996 |
<label><?php _e("Placement", 'sassy-social-share' ); ?></label>
|
|
|
997 |
</th>
|
998 |
<td>
|
999 |
<input id="heateor_sss_home" name="heateor_sss[home]" type="checkbox" <?php echo isset( $options['home'] ) ? 'checked = "checked"' : '';?> value="1" />
|
@@ -1070,7 +1092,7 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
1070 |
<tr>
|
1071 |
<td colspan="2">
|
1072 |
<div style="color:green">
|
1073 |
-
<?php _e( 'Save Facebook App Id and Secret in the "Miscellaneous" section
|
1074 |
</div>
|
1075 |
</td>
|
1076 |
</tr>
|
@@ -1078,8 +1100,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
1078 |
|
1079 |
<tr>
|
1080 |
<th>
|
1081 |
-
<img id="heateor_sss_count_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1082 |
<label for="heateor_sss_counts"><?php _e( "Show share counts", 'sassy-social-share' ); ?></label>
|
|
|
1083 |
</th>
|
1084 |
<td>
|
1085 |
<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()" />
|
@@ -1100,8 +1122,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
1100 |
|
1101 |
<tr>
|
1102 |
<th>
|
1103 |
-
<img id="heateor_sss_total_hor_shares_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1104 |
<label for="heateor_sss_total_hor_shares"><?php _e("Show total shares", 'sassy-social-share' ); ?></label>
|
|
|
1105 |
</th>
|
1106 |
<td>
|
1107 |
<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()" />
|
@@ -1119,8 +1141,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
1119 |
|
1120 |
<tr>
|
1121 |
<th>
|
1122 |
-
<img id="heateor_sss_hmore_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1123 |
<label for="heateor_sss_hmore"><?php _e( "Enable 'More' icon", 'sassy-social-share' ); ?></label>
|
|
|
1124 |
</th>
|
1125 |
<td>
|
1126 |
<input id="heateor_sss_hmore" name="heateor_sss[horizontal_more]" type="checkbox" <?php echo isset( $options['horizontal_more'] ) ? 'checked = "checked"' : '';?> value="1" />
|
@@ -1134,6 +1156,14 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
1134 |
</div>
|
1135 |
</td>
|
1136 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1137 |
</tbody>
|
1138 |
</table>
|
1139 |
</div>
|
@@ -1152,8 +1182,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
1152 |
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
|
1153 |
<tr>
|
1154 |
<th>
|
1155 |
-
<img id="heateor_sss_vertical_enable_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1156 |
<label for="heateor_sss_vertical_enable"><?php _e("Enable Floating sharing interface", 'sassy-social-share' ); ?></label>
|
|
|
1157 |
</th>
|
1158 |
<td>
|
1159 |
<input id="heateor_sss_vertical_enable" onclick="heateorSssVerticalSharingOptionsToggle(this)" name="heateor_sss[vertical_enable]" type="checkbox" <?php echo isset( $options['vertical_enable'] ) ? 'checked = "checked"' : '';?> value="1" />
|
@@ -1172,8 +1202,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
1172 |
<tbody id="heateor_sss_vertical_sharing_options" <?php echo isset( $options['vertical_enable'] ) ? '' : 'style="display: none"'; ?>>
|
1173 |
<tr>
|
1174 |
<th>
|
1175 |
-
<img id="heateor_sss_vertical_target_url_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1176 |
<label for="heateor_sss_vertical_target_url"><?php _e("Target Url", 'sassy-social-share' ); ?></label>
|
|
|
1177 |
</th>
|
1178 |
<td id="heateor_sss_vertical_target_url_column">
|
1179 |
<input id="heateor_sss_vertical_target_url_default" name="heateor_sss[vertical_target_url]" type="radio" <?php echo !isset( $options['vertical_target_url'] ) || $options['vertical_target_url'] == 'default' ? 'checked = "checked"' : '';?> value="default" />
|
@@ -1196,8 +1226,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
1196 |
<tbody id="heateor_sss_vertical_instagram_options" <?php echo ! in_array( 'instagram', $options['vertical_re_providers'] ) ? 'style = "display: none"' : '';?> >
|
1197 |
<tr>
|
1198 |
<th>
|
1199 |
-
<img id="heateor_sss_vertical_instagram_username_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1200 |
<label for="heateor_sss_vertical_instagram_username"><?php _e("Instagram username", 'sassy-social-share' ); ?></label>
|
|
|
1201 |
</th>
|
1202 |
<td>
|
1203 |
<input id="heateor_sss_vertical_instagram_username" name="heateor_sss[vertical_instagram_username]" type="text" value="<?php echo $instagram_username ?>" />
|
@@ -1215,8 +1245,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
1215 |
<tbody id="heateor_sss_vertical_youtube_options" <?php echo ! in_array( 'youtube', $options['vertical_re_providers'] ) ? 'style = "display: none"' : '';?> >
|
1216 |
<tr>
|
1217 |
<th>
|
1218 |
-
<img id="heateor_sss_vertical_youtube_username_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1219 |
<label for="heateor_sss_vertical_youtube_username"><?php _e( "Youtube URL", 'sassy-social-share' ); ?></label>
|
|
|
1220 |
</th>
|
1221 |
<td>
|
1222 |
|
@@ -1236,8 +1266,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
1236 |
<tbody id="heateor_sss_vertical_comment_options" <?php echo ! in_array( 'Comment', $options['vertical_re_providers'] ) ? 'style = "display: none"' : '';?> >
|
1237 |
<tr>
|
1238 |
<th>
|
1239 |
-
<img id="heateor_sss_vertical_comment_container_id_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1240 |
<label for="heateor_sss_vertical_comment_container_id"><?php _e( "HTML ID of container element of comment form", 'sassy-social-share' ); ?></label>
|
|
|
1241 |
</th>
|
1242 |
<td>
|
1243 |
<input id="heateor_sss_vertical_comment_container_id" name="heateor_sss[vertical_comment_container_id]" type="text" value="<?php echo $commentform_container_id ?>" />
|
@@ -1255,8 +1285,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
1255 |
|
1256 |
<tr>
|
1257 |
<th>
|
1258 |
-
<img id="heateor_sss_vertical_rearrange_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1259 |
<label><?php _e( "Rearrange icons", 'sassy-social-share' ); ?></label>
|
|
|
1260 |
</th>
|
1261 |
</tr>
|
1262 |
|
@@ -1328,8 +1358,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
1328 |
|
1329 |
<tr>
|
1330 |
<th colspan="2">
|
1331 |
-
<img id="heateor_sss_vertical_providers_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1332 |
<label><?php _e("Select Sharing Services", 'sassy-social-share' ); ?></label>
|
|
|
1333 |
</th>
|
1334 |
</tr>
|
1335 |
|
@@ -1372,8 +1402,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
1372 |
|
1373 |
<tr>
|
1374 |
<th>
|
1375 |
-
<img id="heateor_sss_vertical_bg_color_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1376 |
<label><?php _e("Background Color", 'sassy-social-share' ); ?></label>
|
|
|
1377 |
</th>
|
1378 |
<td>
|
1379 |
<input style="width: 100px" name="heateor_sss[vertical_bg]" type="text" value="<?php echo isset( $options['vertical_bg'] ) ? $options['vertical_bg'] : '' ?>" />
|
@@ -1390,8 +1420,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
1390 |
|
1391 |
<tr>
|
1392 |
<th>
|
1393 |
-
<img id="heateor_sss_alignment_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1394 |
<label for="heateor_sss_alignment"><?php _e("Horizontal alignment", 'sassy-social-share' ); ?></label>
|
|
|
1395 |
</th>
|
1396 |
<td>
|
1397 |
<select onchange="heateorSssToggleOffset(this.value)" id="heateor_sss_alignment" name="heateor_sss[alignment]">
|
@@ -1412,8 +1442,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
1412 |
<tbody id="heateor_sss_left_offset_rows" <?php echo ( isset( $options['alignment'] ) && $options['alignment'] == 'left' ) ? '' : 'style="display: none"' ?>>
|
1413 |
<tr>
|
1414 |
<th>
|
1415 |
-
<img id="heateor_sss_left_offset_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1416 |
<label for="heateor_sss_left_offset"><?php _e("Left offset", 'sassy-social-share' ); ?></label>
|
|
|
1417 |
</th>
|
1418 |
<td>
|
1419 |
<input style="width: 100px" id="heateor_sss_left_offset" name="heateor_sss[left_offset]" type="text" value="<?php echo isset( $options['left_offset'] ) ? $options['left_offset'] : '' ?>" />px
|
@@ -1432,8 +1462,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
1432 |
<tbody id="heateor_sss_right_offset_rows" <?php echo ( isset( $options['alignment'] ) && $options['alignment'] == 'right' ) ? '' : 'style="display: none"' ?>>
|
1433 |
<tr>
|
1434 |
<th>
|
1435 |
-
<img id="heateor_sss_right_offset_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1436 |
<label for="heateor_sss_right_offset"><?php _e("Right offset", 'sassy-social-share' ); ?></label>
|
|
|
1437 |
</th>
|
1438 |
<td>
|
1439 |
<input style="width: 100px" id="heateor_sss_right_offset" name="heateor_sss[right_offset]" type="text" value="<?php echo isset( $options['right_offset'] ) ? $options['right_offset'] : '' ?>" />px
|
@@ -1451,8 +1481,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
1451 |
|
1452 |
<tr>
|
1453 |
<th>
|
1454 |
-
<img id="heateor_sss_top_offset_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1455 |
<label for="heateor_sss_top_offset"><?php _e("Top offset", 'sassy-social-share' ); ?></label>
|
|
|
1456 |
</th>
|
1457 |
<td>
|
1458 |
<input style="width: 100px" id="heateor_sss_top_offset" name="heateor_sss[top_offset]" type="text" value="<?php echo isset( $options['top_offset'] ) ? $options['top_offset'] : '' ?>" />px
|
@@ -1469,8 +1499,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
1469 |
|
1470 |
<tr>
|
1471 |
<th>
|
1472 |
-
<img id="heateor_sss_vertical_location_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1473 |
<label><?php _e("Placement", 'sassy-social-share' ); ?></label>
|
|
|
1474 |
</th>
|
1475 |
<td>
|
1476 |
<input id="heateor_sss_vertical_home" name="heateor_sss[vertical_home]" type="checkbox" <?php echo isset( $options['vertical_home'] ) ? 'checked = "checked"' : '';?> value="1" />
|
@@ -1528,7 +1558,7 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
1528 |
<tr>
|
1529 |
<td colspan="2">
|
1530 |
<div style="color:green">
|
1531 |
-
<?php _e( 'Save Facebook App Id and Secret in the "Miscellaneous" section
|
1532 |
</div>
|
1533 |
</td>
|
1534 |
</tr>
|
@@ -1536,8 +1566,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
1536 |
|
1537 |
<tr>
|
1538 |
<th>
|
1539 |
-
<img id="heateor_sss_vertical_count_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1540 |
<label for="heateor_sss_vertical_counts"><?php _e( "Show share counts", 'sassy-social-share' ); ?></label>
|
|
|
1541 |
</th>
|
1542 |
<td>
|
1543 |
<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()" />
|
@@ -1558,8 +1588,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
1558 |
|
1559 |
<tr>
|
1560 |
<th>
|
1561 |
-
<img id="heateor_sss_total_vertical_shares_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1562 |
<label for="heateor_sss_total_vertical_shares"><?php _e( "Show total shares", 'sassy-social-share' ); ?></label>
|
|
|
1563 |
</th>
|
1564 |
<td>
|
1565 |
<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" />
|
@@ -1577,8 +1607,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
1577 |
|
1578 |
<tr>
|
1579 |
<th>
|
1580 |
-
<img id="heateor_sss_vmore_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1581 |
<label for="heateor_sss_vmore"><?php _e("Enable 'More' icon", 'sassy-social-share' ); ?></label>
|
|
|
1582 |
</th>
|
1583 |
<td>
|
1584 |
<input id="heateor_sss_vmore" name="heateor_sss[vertical_more]" type="checkbox" <?php echo isset( $options['vertical_more'] ) ? 'checked = "checked"' : '';?> value="1" />
|
@@ -1595,8 +1625,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
1595 |
|
1596 |
<tr>
|
1597 |
<th>
|
1598 |
-
<img id="heateor_sss_hslider_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1599 |
<label for="heateor_sss_hslider"><?php _e( "Hide floating slider", 'sassy-social-share' ); ?></label>
|
|
|
1600 |
</th>
|
1601 |
<td>
|
1602 |
<input id="heateor_sss_hslider" name="heateor_sss[hide_slider]" type="checkbox" <?php echo isset( $options['hide_slider'] ) ? 'checked = "checked"' : '';?> value="1" />
|
@@ -1631,8 +1661,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
1631 |
|
1632 |
<tr>
|
1633 |
<th>
|
1634 |
-
<img id="heateor_sss_mobile_sharing_bottom_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1635 |
<label for="heateor_sss_mobile_sharing_bottom"><?php _e("Horizontal floating bar responsiveness", 'sassy-social-share' ); ?></label>
|
|
|
1636 |
</th>
|
1637 |
<td>
|
1638 |
<input id="heateor_sss_mobile_sharing_bottom" name="heateor_sss[bottom_mobile_sharing]" type="checkbox" <?php echo isset( $options['bottom_mobile_sharing'] ) ? 'checked = "checked"' : '';?> value="1" /><label><?php echo sprintf( __( 'Stick vertical floating interface horizontally at bottom only when screen is narrower than %s pixels', 'sassy-social-share' ), '<input style="width:46px" name="heateor_sss[horizontal_screen_width]" type="text" value="' . ( isset( $options['horizontal_screen_width'] ) ? $options['horizontal_screen_width'] : '' ) . '" />' ) ?></label>
|
@@ -1651,8 +1681,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
1651 |
<tbody id="heateor_sss_bottom_sharing_options" <?php echo isset( $options['bottom_mobile_sharing'] ) ? '' : 'style="display: none"'; ?>>
|
1652 |
<tr>
|
1653 |
<th>
|
1654 |
-
<img id="heateor_sss_mobile_sharing_position_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1655 |
<label for="heateor_sss_mobile_sharing_position"><?php _e("Horizontal floating bar position", 'sassy-social-share' ); ?></label>
|
|
|
1656 |
</th>
|
1657 |
<td>
|
1658 |
<input type="radio" id="bottom_sharing_position_radio_nonresponsive" <?php echo $options['bottom_sharing_position_radio'] == 'nonresponsive' ? 'checked' : ''; ?> name="heateor_sss[bottom_sharing_position_radio]" value="nonresponsive" /><label for="bottom_sharing_position_radio_nonresponsive"><?php echo sprintf( __( '%s pixels from %s', 'sassy-social-share' ), '<input id="heateor_sss_mobile_sharing_position" style="width:46px" name="heateor_sss[bottom_sharing_position]" type="text" value="' . ( isset( $options['bottom_sharing_position'] ) ? $options['bottom_sharing_position'] : '' ) . '" />', '<select style="width:63px" name="heateor_sss[bottom_sharing_alignment]"><option value="right" ' . ( ! isset( $options['bottom_sharing_alignment'] ) || $options['bottom_sharing_alignment'] == 'right' ? 'selected' : '' ) . '>right</option><option value="left" ' . ( isset( $options['bottom_sharing_alignment'] ) && $options['bottom_sharing_alignment'] == 'left' ? 'selected' : '' ) . '>left</option></select>' ) ?></label><br/>
|
@@ -1692,8 +1722,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
1692 |
</tr>
|
1693 |
<tr>
|
1694 |
<th>
|
1695 |
-
<img id="heateor_sss_fb_key_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1696 |
<label for="heateor_sss_fb_key"><?php _e( "Facebook App ID", 'sassy-social-share' ); ?></label>
|
|
|
1697 |
</th>
|
1698 |
<td>
|
1699 |
<input id="heateor_sss_fb_key" name="heateor_sss[fb_key]" type="text" value="<?php echo $options['fb_key'] ?>" />
|
@@ -1703,15 +1733,15 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
1703 |
<tr class="heateor_sss_help_content" id="heateor_sss_fb_key_help_cont">
|
1704 |
<td colspan="2">
|
1705 |
<div>
|
1706 |
-
<?php echo sprintf( __( 'Required
|
1707 |
</div>
|
1708 |
</td>
|
1709 |
</tr>
|
1710 |
|
1711 |
<tr>
|
1712 |
<th>
|
1713 |
-
<img id="heateor_sss_fb_secret_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1714 |
<label for="heateor_sss_fblogin_secret"><?php _e( "Facebook App Secret", 'sassy-social-share' ); ?></label>
|
|
|
1715 |
</th>
|
1716 |
<td>
|
1717 |
<input id="heateor_sss_fblogin_secret" name="heateor_sss[fb_secret]" type="text" value="<?php echo $options['fb_secret'] ?>" />
|
@@ -1721,7 +1751,7 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
1721 |
<tr class="heateor_sss_help_content" id="heateor_sss_fb_secret_help_cont">
|
1722 |
<td colspan="2">
|
1723 |
<div>
|
1724 |
-
<?php echo sprintf( __( 'Required
|
1725 |
</div>
|
1726 |
</td>
|
1727 |
</tr>
|
@@ -1736,8 +1766,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
1736 |
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
|
1737 |
<tr>
|
1738 |
<th>
|
1739 |
-
<img id="heateor_sss_insta_bg_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1740 |
<label for="heateor_sss_insta_bg"><?php _e( "Use plain background for Instagram icon", 'sassy-social-share' ) ?></label>
|
|
|
1741 |
</th>
|
1742 |
<td>
|
1743 |
<input id="heateor_sss_insta_bg" name="heateor_sss[plain_instagram_bg]" type="checkbox" <?php echo isset( $options['plain_instagram_bg'] ) ? 'checked = "checked"' : '';?> value="1" />
|
@@ -1754,26 +1784,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
1754 |
|
1755 |
<tr>
|
1756 |
<th>
|
1757 |
-
<img id="heateor_sss_footer_script_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1758 |
<label for="heateor_sss_footer_script"><?php _e( "Load Javascript files in footer", 'sassy-social-share' ) ?></label>
|
1759 |
-
</th>
|
1760 |
-
<td>
|
1761 |
-
<input id="heateor_sss_footer_script" name="heateor_sss[footer_script]" type="checkbox" <?php echo isset( $options['footer_script'] ) ? 'checked = "checked"' : '';?> value="1" />
|
1762 |
-
</td>
|
1763 |
-
</tr>
|
1764 |
-
|
1765 |
-
<tr class="heateor_sss_help_content" id="heateor_sss_footer_script_help_cont">
|
1766 |
-
<td colspan="2">
|
1767 |
-
<div>
|
1768 |
-
<?php _e( 'If enabled (recommended), Javascript files will be included in the footer of your website.', 'sassy-social-share' ) ?>
|
1769 |
-
</div>
|
1770 |
-
</td>
|
1771 |
-
</tr>
|
1772 |
-
|
1773 |
-
<tr>
|
1774 |
-
<th>
|
1775 |
<img id="heateor_sss_footer_script_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1776 |
-
<label for="heateor_sss_footer_script"><?php _e( "Load Javascript files in footer", 'sassy-social-share' ) ?></label>
|
1777 |
</th>
|
1778 |
<td>
|
1779 |
<input id="heateor_sss_footer_script" name="heateor_sss[footer_script]" type="checkbox" <?php echo isset( $options['footer_script'] ) ? 'checked = "checked"' : '';?> value="1" />
|
@@ -1783,15 +1795,15 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
1783 |
<tr class="heateor_sss_help_content" id="heateor_sss_footer_script_help_cont">
|
1784 |
<td colspan="2">
|
1785 |
<div>
|
1786 |
-
<?php _e( 'If enabled (recommended), Javascript files will be included in the footer of your website
|
1787 |
</div>
|
1788 |
</td>
|
1789 |
</tr>
|
1790 |
|
1791 |
<tr>
|
1792 |
<th>
|
1793 |
-
<img id="heateor_sss_delete_options_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1794 |
<label for="heateor_sss_delete_options"><?php _e("Delete all the options on plugin deletion", 'sassy-social-share' ); ?></label>
|
|
|
1795 |
</th>
|
1796 |
<td>
|
1797 |
<input id="heateor_sss_delete_options" name="heateor_sss[delete_options]" type="checkbox" <?php echo isset( $options['delete_options'] ) ? 'checked = "checked"' : '';?> value="1" />
|
@@ -1815,8 +1827,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
1815 |
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
|
1816 |
<tr>
|
1817 |
<th>
|
1818 |
-
<img id="heateor_sss_share_count_cache_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1819 |
<label for="heateor_sss_share_count_cache"><?php _e( "Refresh Share Count cache every", 'sassy-social-share' ) ?></label>
|
|
|
1820 |
</th>
|
1821 |
<td>
|
1822 |
<input style="width: 50px;" id="heateor_sss_share_count_cache" name="heateor_sss[share_count_cache_refresh_count]" type="text" value="<?php echo $options['share_count_cache_refresh_count']; ?>" />
|
@@ -1839,8 +1851,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
1839 |
|
1840 |
<tr>
|
1841 |
<th style="width:215px">
|
1842 |
-
<img id="heateor_sss_clear_share_count_cache_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1843 |
<input type="button" class="button-primary" value="<?php _e( 'Clear Share Counts Cache', 'sassy-social-share' ) ?>" onclick="heateorSssClearShareCountCache()" />
|
|
|
1844 |
</th>
|
1845 |
<td>
|
1846 |
<img src="<?php echo plugins_url( '../../images/ajax_loader.gif', __FILE__ ) ?>" id="share_count_cache_loading" style="display:none" />
|
@@ -1865,8 +1877,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
1865 |
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
|
1866 |
<tr>
|
1867 |
<th>
|
1868 |
-
<img id="heateor_sss_surl_enable_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1869 |
<label for="heateor_sss_surl_enable"><?php _e("Use shortlinks already installed", 'sassy-social-share' ); ?></label>
|
|
|
1870 |
</th>
|
1871 |
<td>
|
1872 |
<input id="heateor_sss_surl_enable" name="heateor_sss[use_shortlinks]" type="checkbox" <?php echo isset( $options['use_shortlinks'] ) ? 'checked = "checked"' : '';?> value="1" />
|
@@ -1883,8 +1895,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
1883 |
|
1884 |
<tr>
|
1885 |
<th>
|
1886 |
-
<img id="heateor_sss_bitly_enable_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1887 |
<label for="heateor_sss_bitly_enable"><?php _e("Enable bit.ly url shortener for sharing", 'sassy-social-share' ); ?></label>
|
|
|
1888 |
</th>
|
1889 |
<td>
|
1890 |
<input id="heateor_sss_bitly_enable" name="heateor_sss[bitly_enable]" type="checkbox" <?php echo isset( $options['bitly_enable'] ) ? 'checked = "checked"' : '';?> value="1" />
|
@@ -1901,8 +1913,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
1901 |
|
1902 |
<tr>
|
1903 |
<th>
|
1904 |
-
<img id="heateor_sss_bitly_login_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1905 |
<label for="heateor_sss_bitly_login"><?php _e("bit.ly Login", 'sassy-social-share' ); ?></label>
|
|
|
1906 |
</th>
|
1907 |
<td>
|
1908 |
<input id="heateor_sss_bitly_login" name="heateor_sss[bitly_username]" type="text" value="<?php echo isset( $options['bitly_username'] ) ? $options['bitly_username'] : '' ?>" />
|
@@ -1920,8 +1932,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
1920 |
|
1921 |
<tr>
|
1922 |
<th>
|
1923 |
-
<img id="heateor_sss_bitly_key_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1924 |
<label for="heateor_sss_bitly_key"><?php _e("bit.ly API Key", 'sassy-social-share' ); ?></label>
|
|
|
1925 |
</th>
|
1926 |
<td>
|
1927 |
<input id="heateor_sss_bitly_key" name="heateor_sss[bitly_key]" type="text" value="<?php echo isset( $options['bitly_key'] ) ? $options['bitly_key'] : '' ?>" />
|
@@ -1939,8 +1951,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
1939 |
|
1940 |
<tr>
|
1941 |
<th>
|
1942 |
-
<img id="heateor_sss_clear_shorturl_cache_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1943 |
<input type="button" class="button-primary" value="<?php _e( 'Clear Bitly Cache', 'sassy-social-share' ) ?>" onclick="heateorSssClearShorturlCache()" />
|
|
|
1944 |
</th>
|
1945 |
<td>
|
1946 |
<img src="<?php echo plugins_url( '../../images/ajax_loader.gif', __FILE__ ) ?>" id="shorturl_cache_loading" style="display:none" />
|
@@ -1965,8 +1977,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
1965 |
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
|
1966 |
<tr>
|
1967 |
<th>
|
1968 |
-
<img id="heateor_sss_sc_language_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1969 |
<label for="heateor_sss_sc_language"><?php _e("Language", 'sassy-social-share' ); ?></label>
|
|
|
1970 |
</th>
|
1971 |
<td>
|
1972 |
<input id="heateor_sss_sc_language" name="heateor_sss[language]" type="text" value="<?php echo $options['language'] ? $options['language'] : '' ?>" />
|
@@ -1990,8 +2002,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
1990 |
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
|
1991 |
<tr>
|
1992 |
<th>
|
1993 |
-
<img id="heateor_sss_twitter_username_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1994 |
<label for="heateor_sss_twitter_username"><?php _e("Twitter username (without @)", 'sassy-social-share' ); ?></label>
|
|
|
1995 |
</th>
|
1996 |
<td>
|
1997 |
<input id="heateor_sss_twitter_username" name="heateor_sss[twitter_username]" type="text" value="<?php echo isset( $options['twitter_username'] ) ? $options['twitter_username'] : '' ?>" />
|
@@ -2009,8 +2021,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
2009 |
|
2010 |
<tr>
|
2011 |
<th>
|
2012 |
-
<img id="heateor_sss_buffer_username_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
2013 |
<label for="heateor_sss_buffer_username"><?php _e("Buffer username (without @)", 'sassy-social-share' ); ?></label>
|
|
|
2014 |
</th>
|
2015 |
<td>
|
2016 |
<input id="heateor_sss_buffer_username" name="heateor_sss[buffer_username]" type="text" value="<?php echo isset( $options['buffer_username'] ) ? $options['buffer_username'] : '' ?>" />
|
@@ -2034,8 +2046,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
2034 |
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
|
2035 |
<tr>
|
2036 |
<th>
|
2037 |
-
<img id="heateor_sss_amp_enable_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
2038 |
<label for="heateor_sss_amp_enable"><?php _e("Enable sharing on AMP pages", 'sassy-social-share' ); ?></label>
|
|
|
2039 |
</th>
|
2040 |
<td>
|
2041 |
<input id="heateor_sss_amp_enable" name="heateor_sss[amp_enable]" type="checkbox" <?php echo isset( $options['amp_enable'] ) ? 'checked = "checked"' : '';?> value="1" />
|
@@ -2059,8 +2071,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
2059 |
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
|
2060 |
<tr>
|
2061 |
<th>
|
2062 |
-
<img id="heateor_sss_custom_css_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
2063 |
<label for="heateor_sss_custom_css"><?php _e("Custom CSS", 'sassy-social-share' ); ?></label>
|
|
|
2064 |
</th>
|
2065 |
<td>
|
2066 |
<textarea rows="7" cols="63" id="heateor_sss_custom_css" name="heateor_sss[custom_css]"><?php echo isset( $options['custom_css'] ) ? $options['custom_css'] : '' ?></textarea>
|
@@ -2077,6 +2089,10 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
2077 |
</table>
|
2078 |
</div>
|
2079 |
</div>
|
|
|
|
|
|
|
|
|
2080 |
|
2081 |
</div>
|
2082 |
<?php include 'sassy-social-share-about.php'; ?>
|
@@ -2094,8 +2110,8 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
2094 |
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
|
2095 |
<tr>
|
2096 |
<th>
|
2097 |
-
<img id="heateor_sss_mycred_referral_id_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
2098 |
<label for="heateor_sss_mycred_referral_id"><?php _e( "Append myCRED referral ID to the urls being shared", 'sassy-social-share' ); ?></label>
|
|
|
2099 |
</th>
|
2100 |
<td>
|
2101 |
<input id="heateor_sss_mycred_referral_id" name="heateor_sss[mycred_referral]" type="checkbox" <?php echo isset( $options['mycred_referral'] ) ? 'checked = "checked"' : '';?> value="1" />
|
@@ -2119,6 +2135,7 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
2119 |
<div class="inside" style="padding-left:7px">
|
2120 |
<p><a style="text-decoration:none" href="http://support.heateor.com/sassy-social-share-shortcode-and-widget" target="_blank"><?php _e( 'Social Share Shortcode & Widget', 'sassy-social-share' ) ?></a></p>
|
2121 |
<p><a style="text-decoration:none" href="http://support.heateor.com/sassy-follow-icons-shortcode" target="_blank"><?php _e( 'Follow Icons Shortcode & Widget', 'sassy-social-share' ) ?></a></p>
|
|
|
2122 |
</div>
|
2123 |
</div>
|
2124 |
</div>
|
@@ -2154,7 +2171,7 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
2154 |
<p><?php _e( '<strong>Note:</strong> Plugin will not work on local server. You should have an online website for the plugin to function properly.', 'sassy-social-share' ); ?></p>
|
2155 |
<p><a href="http://support.heateor.com/why-is-sharer-not-showing-the-correct-image-title-and-other-meta-tags-content" target="_blank"><?php _e( 'Why is sharer not showing the correct image, title and other meta tags content?', 'sassy-social-share' ) ?></a></p>
|
2156 |
<a href="javascript:void(0)"><?php _e( 'Why is Facebook share count not working?', 'sassy-social-share' ); ?></a>
|
2157 |
-
<div><?php _e( 'Save Facebook App Id and Secret in the "Miscellaneous" section
|
2158 |
<p><a href="http://support.heateor.com/how-to-customize-the-url-being-shared" target="_blank"><?php _e( 'How to Customize the Url being Shared?', 'sassy-social-share' ) ?></a></p>
|
2159 |
<a href="javascript:void(0)"><?php _e( 'Why is Instagram icon redirecting to Instagram website?', 'sassy-social-share' ); ?></a>
|
2160 |
<div><?php _e( 'Instagram icon is there to send website visitors to the Instagram page of your choice. You can save the desired Instagram handle in "Instagram Username" option in "Standard Interface" and "Floating Interface" sections.', 'sassy-social-share' ); ?></div>
|
@@ -2195,7 +2212,6 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
2195 |
echo sprintf( __( 'You can appreciate the effort put in this free plugin by rating it <a href="%s" target="_blank">here</a>', 'sassy-social-share' ), 'https://wordpress.org/support/view/plugin-reviews/sassy-social-share' );
|
2196 |
?>
|
2197 |
</p>
|
2198 |
-
<a href="https://easy.roihunter.com/?referralCode=KWna_YiwQ_Iic4_y1u2" target="_blank"><img style="width:800px;margin-top:7px;" src="<?php echo plugins_url('../../images/roihunter.png', __FILE__) ?>" /></a>
|
2199 |
</form>
|
2200 |
|
2201 |
<div class="stuffbox">
|
1 |
<?php
|
|
|
2 |
/**
|
3 |
* Options page
|
4 |
*
|
10 |
<div id="fb-root"></div>
|
11 |
|
12 |
<div class="metabox-holder columns-2" id="post-body">
|
13 |
+
<h1>Sassy Social Share</h1>
|
14 |
<div>
|
15 |
<?php
|
16 |
echo sprintf( __( 'You can appreciate the effort put in this free plugin by rating it <a href="%s" target="_blank">here</a>', 'sassy-social-share' ), 'https://wordpress.org/support/view/plugin-reviews/sassy-social-share' );
|
136 |
|
137 |
<tr>
|
138 |
<th>
|
|
|
139 |
<label><?php _e( "Shape", 'sassy-social-share' ); ?></label>
|
140 |
+
<img id="heateor_sss_icon_shape_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
141 |
</th>
|
142 |
<td>
|
143 |
<input id="heateor_sss_icon_round" onclick="tempHorShape = 'round';heateorSssSharingHorizontalPreview()" name="heateor_sss[horizontal_sharing_shape]" type="radio" <?php echo $sharing_shape == 'round' ? 'checked = "checked"' : '';?> value="round" />
|
160 |
<tbody id="heateor_sss_size_options" <?php echo ! isset( $options['horizontal_sharing_shape'] ) || $options['horizontal_sharing_shape'] != 'rectangle' ? '' : 'style="display: none"'; ?>>
|
161 |
<tr>
|
162 |
<th>
|
|
|
163 |
<label><?php _e("Size (in pixels)", 'sassy-social-share' ); ?></label>
|
164 |
+
<img id="heateor_sss_icon_size_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
165 |
</th>
|
166 |
<td>
|
167 |
<input style="width:50px" id="heateor_sss_icon_size" name="heateor_sss[horizontal_sharing_size]" type="text" value="<?php echo $sharing_size; ?>" />
|
186 |
<tbody id="heateor_sss_rectangle_options" <?php echo isset( $options['horizontal_sharing_shape'] ) && $options['horizontal_sharing_shape'] == 'rectangle' ? '' : 'style="display: none"'; ?>>
|
187 |
<tr>
|
188 |
<th>
|
|
|
189 |
<label><?php _e("Width (in pixels)", 'sassy-social-share' ); ?></label>
|
190 |
+
<img id="heateor_sss_icon_width_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
191 |
</th>
|
192 |
<td>
|
193 |
<input style="width:50px" id="heateor_sss_icon_width" name="heateor_sss[horizontal_sharing_width]" type="text" value="<?php echo $sharing_width; ?>" />
|
210 |
|
211 |
<tr>
|
212 |
<th>
|
|
|
213 |
<label><?php _e("Height (in pixels)", 'sassy-social-share' ); ?></label>
|
214 |
+
<img id="heateor_sss_icon_height_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
215 |
</th>
|
216 |
<td>
|
217 |
<input style="width:50px" id="heateor_sss_icon_height" name="heateor_sss[horizontal_sharing_height]" type="text" value="<?php echo $sharing_height; ?>" />
|
236 |
<tbody id="heateor_sss_border_radius_options" <?php echo isset( $options['horizontal_sharing_shape'] ) && $options['horizontal_sharing_shape'] != 'round' ? '' : 'style="display: none"'; ?>>
|
237 |
<tr>
|
238 |
<th>
|
|
|
239 |
<label><?php _e("Border radius (in pixels)", 'sassy-social-share' ); ?></label>
|
240 |
+
<img id="heateor_sss_icon_border_radius_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
241 |
</th>
|
242 |
<td>
|
243 |
<input style="width:50px" id="heateor_sss_icon_border_radius" name="heateor_sss[horizontal_border_radius]" type="text" value="<?php echo $sharing_border_radius; ?>" onkeyup="heateorSssSharingBorderRadius = this.value.trim() ? this.value.trim() + 'px' : '0px';heateorSssUpdateSharingPreview(heateorSssSharingBorderRadius, 'borderRadius', '0px', 'heateor_sss_preview' )" />
|
255 |
|
256 |
<tr>
|
257 |
<th>
|
|
|
258 |
<label><?php _e("Logo Color", 'sassy-social-share' ); ?></label>
|
259 |
+
<img id="heateor_sss_font_color_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
260 |
</th>
|
261 |
<td>
|
262 |
<script type="text/javascript">var heateorSssSharingTempColor = '<?php echo $sharing_color ? $sharing_color : "#fff" ?>';</script>
|
277 |
|
278 |
<tr>
|
279 |
<th>
|
|
|
280 |
<label><?php _e("Background Color", 'sassy-social-share' ); ?></label>
|
281 |
+
<img id="heateor_sss_bg_color_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
282 |
</th>
|
283 |
<td>
|
284 |
<label for="heateor_sss_bg_color_default"><?php _e("Default", 'sassy-social-share' ); ?></label><input style="width: 100px" id="heateor_sss_bg_color_default" name="heateor_sss[horizontal_bg_color_default]" type="text" onkeyup="heateorSssSharingBg = this.value.trim() ? this.value.trim() : '#3C589A'; heateorSssUpdateSharingPreview(this.value.trim(), 'backgroundColor', '#3C589A', 'heateor_sss_preview' )" value="<?php echo $horizontal_bg ?>" />
|
296 |
|
297 |
<tr>
|
298 |
<th>
|
|
|
299 |
<label><?php _e("Border", 'sassy-social-share' ); ?></label>
|
300 |
+
<img id="heateor_sss_border_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
301 |
</th>
|
302 |
<td>
|
303 |
<script type="text/javascript">var heateorSssBorderWidthHover = '<?php echo $border_width_hover = isset( $options['horizontal_border_width_hover'] ) ? $options['horizontal_border_width_hover'] : ''; ?>', heateorSssBorderColorHover = '<?php echo $border_color_hover = isset( $options['horizontal_border_color_hover'] ) ? $options['horizontal_border_color_hover'] : ''; ?>'</script>
|
323 |
|
324 |
<tr>
|
325 |
<th>
|
|
|
326 |
<label><?php _e("Counter Position", 'sassy-social-share' ); ?><br/><?php _e("(applies, if counter enabled)", 'sassy-social-share' ); ?></label>
|
327 |
+
<img id="heateor_sss_counter_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
328 |
</th>
|
329 |
<td>
|
330 |
<input id="heateor_sss_counter_left" name="heateor_sss[horizontal_counter_position]" onclick="heateorSssCounterPreview(this.value.trim() )" type="radio" <?php echo $counter_position == 'left' ? 'checked = "checked"' : '';?> value="left" />
|
354 |
</div>
|
355 |
</td>
|
356 |
</tr>
|
357 |
+
|
358 |
+
<tr>
|
359 |
+
<td colspan="2">
|
360 |
+
<div>
|
361 |
+
<a href="https://www.heateor.com/comparison-between-sassy-social-share-pro-and-premium/" target="_blank"><img src="<?php echo plugins_url( '../../images/unlock/responsive-icons.png', __FILE__ ) ?>" /></a>
|
362 |
+
</div>
|
363 |
+
</td>
|
364 |
+
</tr>
|
365 |
|
366 |
</table>
|
367 |
</div>
|
452 |
|
453 |
<tr>
|
454 |
<th>
|
|
|
455 |
<label><?php _e("Shape", 'sassy-social-share' ); ?></label>
|
456 |
+
<img id="heateor_sss_vertical_sharing_icon_shape_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
457 |
</th>
|
458 |
<td>
|
459 |
<input id="heateor_sss_vertical_icon_round" onclick="tempVerticalShape = 'round';heateorSssSharingVerticalPreview()" name="heateor_sss[vertical_sharing_shape]" type="radio" <?php echo $vertical_sharing_shape == 'round' ? 'checked = "checked"' : '';?> value="round" />
|
476 |
<tbody id="heateor_sss_vertical_size_options" <?php echo ! isset( $options['vertical_sharing_shape'] ) || $options['vertical_sharing_shape'] != 'rectangle' ? '' : 'style="display: none"'; ?>>
|
477 |
<tr>
|
478 |
<th>
|
|
|
479 |
<label><?php _e("Size (in pixels)", 'sassy-social-share' ); ?></label>
|
480 |
+
<img id="heateor_sss_vertical_sharing_icon_size_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
481 |
</th>
|
482 |
<td>
|
483 |
<input style="width:50px" id="heateor_sss_vertical_sharing_icon_size" name="heateor_sss[vertical_sharing_size]" type="text" value="<?php echo $vertical_sharing_size; ?>" />
|
502 |
<tbody id="heateor_sss_vertical_rectangle_options" <?php echo isset( $options['vertical_sharing_shape'] ) && $options['vertical_sharing_shape'] == 'rectangle' ? '' : 'style="display: none"'; ?>>
|
503 |
<tr>
|
504 |
<th>
|
|
|
505 |
<label><?php _e("Width (in pixels)", 'sassy-social-share' ); ?></label>
|
506 |
+
<img id="heateor_sss_vertical_icon_width_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
507 |
</th>
|
508 |
<td>
|
509 |
<input style="width:50px" id="heateor_sss_vertical_icon_width" name="heateor_sss[vertical_sharing_width]" type="text" value="<?php echo $vertical_sharing_width; ?>" />
|
526 |
|
527 |
<tr>
|
528 |
<th>
|
|
|
529 |
<label><?php _e("Height (in pixels)", 'sassy-social-share' ); ?></label>
|
530 |
+
<img id="heateor_sss_vertical_icon_height_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
531 |
</th>
|
532 |
<td>
|
533 |
<input style="width:50px" id="heateor_sss_vertical_icon_height" name="heateor_sss[vertical_sharing_height]" type="text" value="<?php echo $vertical_sharing_height; ?>" />
|
552 |
<tbody id="heateor_sss_vertical_border_radius_options" <?php echo isset( $options['vertical_sharing_shape'] ) && $options['vertical_sharing_shape'] != 'round' ? '' : 'style="display: none"'; ?>>
|
553 |
<tr>
|
554 |
<th>
|
|
|
555 |
<label><?php _e("Border radius (in pixels)", 'sassy-social-share' ); ?></label>
|
556 |
+
<img id="heateor_sss_vertical_icon_border_radius_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
557 |
</th>
|
558 |
<td>
|
559 |
<input style="width:50px" id="heateor_sss_vertical_icon_border_radius" name="heateor_sss[vertical_border_radius]" type="text" value="<?php echo $vertical_sharing_border_radius; ?>" onkeyup="heateorSssVerticalBorderRadius = this.value.trim() ? this.value.trim() + 'px' : '0px';heateorSssUpdateSharingPreview(heateorSssVerticalBorderRadius, 'borderRadius', '0px', 'heateor_sss_vertical_preview' )" />
|
571 |
|
572 |
<tr>
|
573 |
<th>
|
|
|
574 |
<label><?php _e("Logo Color", 'sassy-social-share' ); ?></label>
|
575 |
+
<img id="heateor_sss_vertical_font_color_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
576 |
</th>
|
577 |
<td>
|
578 |
<script type="text/javascript">var heateorSssVerticalSharingTempColor = '<?php echo $vertical_sharing_color ? $vertical_sharing_color : "#fff" ?>';</script>
|
593 |
|
594 |
<tr>
|
595 |
<th>
|
|
|
596 |
<label><?php _e("Background Color", 'sassy-social-share' ); ?></label>
|
597 |
+
<img id="heateor_sss_vertical_icon_bg_color_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
598 |
</th>
|
599 |
<td>
|
600 |
<label for="heateor_sss_vertical_icon_bg_color_default"><?php _e("Default", 'sassy-social-share' ); ?></label><input style="width: 100px" id="heateor_sss_vertical_icon_bg_color_default" name="heateor_sss[vertical_bg_color_default]" type="text" onkeyup="heateorSssVerticalSharingBg = this.value.trim() ? this.value.trim() : '#3C589A'; heateorSssUpdateSharingPreview(this.value.trim(), 'backgroundColor', '#3C589A', 'heateor_sss_vertical_preview' )" value="<?php echo $vertical_bg ?>" />
|
612 |
|
613 |
<tr>
|
614 |
<th>
|
|
|
615 |
<label><?php _e("Border", 'sassy-social-share' ); ?></label>
|
616 |
+
<img id="heateor_sss_vertical_border_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
617 |
</th>
|
618 |
<td>
|
619 |
<label><strong><?php _e("Default", 'sassy-social-share' ); ?></strong></label>
|
638 |
|
639 |
<tr>
|
640 |
<th>
|
|
|
641 |
<label><?php _e("Counter Position", 'sassy-social-share' ); ?><br/><?php _e("(applies, if counter enabled)", 'sassy-social-share' ); ?></label>
|
642 |
+
<img id="heateor_sss_vertical_counter_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
643 |
</th>
|
644 |
<td>
|
645 |
<input id="heateor_sss_vertical_counter_left" name="heateor_sss[vertical_counter_position]" onclick="heateorSssVerticalCounterPreview(this.value.trim() )" type="radio" <?php echo $vertical_counter_position == 'left' ? 'checked = "checked"' : '';?> value="left" />
|
686 |
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
|
687 |
<tr>
|
688 |
<th>
|
|
|
689 |
<label for="heateor_sss_horizontal_enable"><?php _e("Enable Standard sharing interface", 'sassy-social-share' ); ?></label>
|
690 |
+
<img id="heateor_sss_horizontal_enable_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
691 |
</th>
|
692 |
<td>
|
693 |
<input id="heateor_sss_horizontal_enable" onclick="heateorSssHorizontalSharingOptionsToggle(this)" name="heateor_sss[hor_enable]" type="checkbox" <?php echo isset( $options['hor_enable'] ) ? 'checked = "checked"' : '';?> value="1" />
|
707 |
<tbody id="heateor_sss_horizontal_sharing_options" <?php echo isset( $options['hor_enable'] ) ? '' : 'style="display: none"'; ?>>
|
708 |
<tr>
|
709 |
<th>
|
|
|
710 |
<label for="heateor_sss_horizontal_target_url"><?php _e("Target Url", 'sassy-social-share' ); ?></label>
|
711 |
+
<img id="heateor_sss_horizontal_target_url_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
712 |
</th>
|
713 |
<td id="heateor_sss_target_url_column">
|
714 |
<input id="heateor_sss_target_url_default" name="heateor_sss[horizontal_target_url]" type="radio" <?php echo !isset( $options['horizontal_target_url'] ) || $options['horizontal_target_url'] == 'default' ? 'checked = "checked"' : '';?> value="default" />
|
730 |
|
731 |
<tr>
|
732 |
<th>
|
|
|
733 |
<label for="heateor_sss_fblogin_title"><?php _e("Title", 'sassy-social-share' ); ?></label>
|
734 |
+
<img id="heateor_sss_title_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
735 |
</th>
|
736 |
<td>
|
737 |
<input id="heateor_sss_fblogin_title" name="heateor_sss[title]" type="text" value="<?php echo isset( $options['title'] ) ? $options['title'] : '' ?>" />
|
775 |
<tbody id="heateor_sss_instagram_options" <?php echo ! isset( $options['horizontal_re_providers'] ) || ! in_array( 'instagram', $options['horizontal_re_providers'] ) ? 'style = "display: none"' : '';?> >
|
776 |
<tr>
|
777 |
<th>
|
|
|
778 |
<label for="heateor_sss_instagram_username"><?php _e( "Instagram username", 'sassy-social-share' ); ?></label>
|
779 |
+
<img id="heateor_sss_instagram_username_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
780 |
</th>
|
781 |
<td>
|
782 |
<input id="heateor_sss_instagram_username" name="heateor_sss[instagram_username]" type="text" value="<?php echo $instagram_username ?>" />
|
795 |
<tbody id="heateor_sss_youtube_options" <?php echo ! isset( $options['horizontal_re_providers'] ) || ! in_array( 'youtube', $options['horizontal_re_providers'] ) ? 'style = "display: none"' : '';?> >
|
796 |
<tr>
|
797 |
<th>
|
|
|
798 |
<label for="heateor_sss_youtube_username"><?php _e( "Youtube URL", 'sassy-social-share' ); ?></label>
|
799 |
+
<img id="heateor_sss_youtube_username_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
800 |
</th>
|
801 |
<td>
|
802 |
<input id="heateor_sss_youtube_username" name="heateor_sss[youtube_username]" type="text" value="<?php echo $youtube_username ?>" />
|
815 |
<tbody id="heateor_sss_comment_options" <?php echo ! isset( $options['horizontal_re_providers'] ) || ! in_array( 'Comment', $options['horizontal_re_providers'] ) ? 'style = "display: none"' : '';?> >
|
816 |
<tr>
|
817 |
<th>
|
|
|
818 |
<label for="heateor_sss_comment_container_id"><?php _e( "HTML ID of container element of comment form", 'sassy-social-share' ); ?></label>
|
819 |
+
<img id="heateor_sss_comment_container_id_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
820 |
</th>
|
821 |
<td>
|
822 |
<input id="heateor_sss_comment_container_id" name="heateor_sss[comment_container_id]" type="text" value="<?php echo $commentform_container_id ?>" />
|
836 |
$sharingNetworks = array( 'facebook', 'twitter', 'linkedin', 'print', 'email', 'reddit', 'digg', 'float_it', 'tumblr', 'vkontakte', 'pinterest', 'xing', 'whatsapp', 'instagram', 'yummly', 'buffer', 'AIM', 'Amazon_Wish_List', 'AOL_Mail', 'App.net', 'Balatarin', 'BibSonomy', 'Bitty_Browser', 'Blinklist', 'Blogger_Post', 'BlogMarks', 'Bookmarks.fr', 'Box.net', 'BuddyMarks', 'Care2_News', 'CiteULike', 'Comment', 'Copy_Link', 'Diary.Ru', 'Diaspora', 'Diigo', 'Douban', 'Draugiem', 'DZone', 'Evernote', 'Facebook_Messenger', 'Fark', 'Fintel', 'Flipboard', 'Folkd', 'GentleReader', 'Google_Bookmarks', 'Google_Classroom', 'Google_Gmail', 'Hacker_News', 'Hatena', 'Instapaper', 'Jamespot', 'Kakao', 'Kik', 'Kindle_It', 'Known', 'Line', 'LiveJournal', 'Mail.Ru', 'Mendeley', 'Meneame', 'MeWe', 'mix', 'Mixi', 'MySpace', 'Netvouz', 'Odnoklassniki', 'Outlook.com', 'Papaly', 'Pinboard', 'Plurk', 'Pocket', 'PrintFriendly', 'Protopage_Bookmarks', 'Pusha', 'Qzone', 'Rediff MyPage', 'Refind', 'Renren', 'Sina Weibo', 'SiteJot', 'Skype', 'Slashdot', 'SMS', 'StockTwits', 'Svejo', 'Symbaloo_Feeds', 'Telegram', 'Threema', 'Trello', 'Tuenti', 'Twiddla', 'TypePad_Post', 'Viadeo', 'Viber', 'Wanelo', 'Webnews', 'WordPress', 'Wykop', 'Yahoo_Mail', 'Yoolink','youtube',);
|
837 |
?>
|
838 |
|
839 |
+
<tr>
|
840 |
+
<td colspan="2">
|
841 |
+
<a href="https://www.heateor.com/comparison-between-sassy-social-share-pro-and-premium/" target="_blank"><img src="<?php echo plugins_url( '../../images/unlock/multiple-instances.png', __FILE__ ) ?>" /></a>
|
842 |
+
</td>
|
843 |
+
</tr>
|
844 |
+
|
845 |
<tr>
|
846 |
<th>
|
|
|
847 |
<label><?php _e( "Rearrange icons", 'sassy-social-share' ); ?></label>
|
848 |
+
<img id="heateor_sss_rearrange_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
849 |
</th>
|
850 |
</tr>
|
851 |
|
919 |
|
920 |
<tr>
|
921 |
<th colspan="2">
|
|
|
922 |
<label><?php _e( "Select Sharing Services", 'sassy-social-share' ); ?></label>
|
923 |
+
<img id="heateor_sss_providers_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
924 |
</th>
|
925 |
</tr>
|
926 |
|
963 |
|
964 |
<tr>
|
965 |
<th>
|
|
|
966 |
<label for="heateor_sss_hor_alignment"><?php _e("Horizontal alignment", 'sassy-social-share' ); ?></label>
|
967 |
+
<img id="heateor_sss_hor_alignment_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
968 |
</th>
|
969 |
<td>
|
970 |
<select id="heateor_sss_hor_alignment" name="heateor_sss[hor_sharing_alignment]">
|
985 |
|
986 |
<tr>
|
987 |
<th>
|
|
|
988 |
<label><?php _e("Position with respect to content", 'sassy-social-share' ); ?></label>
|
989 |
+
<img id="heateor_sss_position_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
990 |
</th>
|
991 |
<td>
|
992 |
<input id="heateor_sss_top" name="heateor_sss[top]" type="checkbox" <?php echo isset( $options['top'] ) ? 'checked = "checked"' : '';?> value="1" />
|
1003 |
</div>
|
1004 |
</td>
|
1005 |
</tr>
|
1006 |
+
|
1007 |
+
<tr>
|
1008 |
+
<td colspan="2">
|
1009 |
+
<div>
|
1010 |
+
<a href="https://www.heateor.com/comparison-between-sassy-social-share-pro-and-premium/" target="_blank"><img src="<?php echo plugins_url( '../../images/unlock/social-share-popup.png', __FILE__ ) ?>" /></a>
|
1011 |
+
</div>
|
1012 |
+
</td>
|
1013 |
+
</tr>
|
1014 |
|
1015 |
<tr>
|
1016 |
<th>
|
|
|
1017 |
<label><?php _e("Placement", 'sassy-social-share' ); ?></label>
|
1018 |
+
<img id="heateor_sss_location_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1019 |
</th>
|
1020 |
<td>
|
1021 |
<input id="heateor_sss_home" name="heateor_sss[home]" type="checkbox" <?php echo isset( $options['home'] ) ? 'checked = "checked"' : '';?> value="1" />
|
1092 |
<tr>
|
1093 |
<td colspan="2">
|
1094 |
<div style="color:green">
|
1095 |
+
<?php _e( 'Save Facebook App Id and Secret in the "Miscellaneous" section to track Facebook shares', 'sassy-social-share' ) ?>
|
1096 |
</div>
|
1097 |
</td>
|
1098 |
</tr>
|
1100 |
|
1101 |
<tr>
|
1102 |
<th>
|
|
|
1103 |
<label for="heateor_sss_counts"><?php _e( "Show share counts", 'sassy-social-share' ); ?></label>
|
1104 |
+
<img id="heateor_sss_count_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1105 |
</th>
|
1106 |
<td>
|
1107 |
<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()" />
|
1122 |
|
1123 |
<tr>
|
1124 |
<th>
|
|
|
1125 |
<label for="heateor_sss_total_hor_shares"><?php _e("Show total shares", 'sassy-social-share' ); ?></label>
|
1126 |
+
<img id="heateor_sss_total_hor_shares_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1127 |
</th>
|
1128 |
<td>
|
1129 |
<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()" />
|
1141 |
|
1142 |
<tr>
|
1143 |
<th>
|
|
|
1144 |
<label for="heateor_sss_hmore"><?php _e( "Enable 'More' icon", 'sassy-social-share' ); ?></label>
|
1145 |
+
<img id="heateor_sss_hmore_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1146 |
</th>
|
1147 |
<td>
|
1148 |
<input id="heateor_sss_hmore" name="heateor_sss[horizontal_more]" type="checkbox" <?php echo isset( $options['horizontal_more'] ) ? 'checked = "checked"' : '';?> value="1" />
|
1156 |
</div>
|
1157 |
</td>
|
1158 |
</tr>
|
1159 |
+
|
1160 |
+
<tr>
|
1161 |
+
<td colspan="2">
|
1162 |
+
<div>
|
1163 |
+
<a href="https://www.heateor.com/comparison-between-sassy-social-share-pro-and-premium/" target="_blank"><img src="<?php echo plugins_url( '../../images/unlock/hide-standard-share-bar.png', __FILE__ ) ?>" /></a>
|
1164 |
+
</div>
|
1165 |
+
</td>
|
1166 |
+
</tr>
|
1167 |
</tbody>
|
1168 |
</table>
|
1169 |
</div>
|
1182 |
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
|
1183 |
<tr>
|
1184 |
<th>
|
|
|
1185 |
<label for="heateor_sss_vertical_enable"><?php _e("Enable Floating sharing interface", 'sassy-social-share' ); ?></label>
|
1186 |
+
<img id="heateor_sss_vertical_enable_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1187 |
</th>
|
1188 |
<td>
|
1189 |
<input id="heateor_sss_vertical_enable" onclick="heateorSssVerticalSharingOptionsToggle(this)" name="heateor_sss[vertical_enable]" type="checkbox" <?php echo isset( $options['vertical_enable'] ) ? 'checked = "checked"' : '';?> value="1" />
|
1202 |
<tbody id="heateor_sss_vertical_sharing_options" <?php echo isset( $options['vertical_enable'] ) ? '' : 'style="display: none"'; ?>>
|
1203 |
<tr>
|
1204 |
<th>
|
|
|
1205 |
<label for="heateor_sss_vertical_target_url"><?php _e("Target Url", 'sassy-social-share' ); ?></label>
|
1206 |
+
<img id="heateor_sss_vertical_target_url_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1207 |
</th>
|
1208 |
<td id="heateor_sss_vertical_target_url_column">
|
1209 |
<input id="heateor_sss_vertical_target_url_default" name="heateor_sss[vertical_target_url]" type="radio" <?php echo !isset( $options['vertical_target_url'] ) || $options['vertical_target_url'] == 'default' ? 'checked = "checked"' : '';?> value="default" />
|
1226 |
<tbody id="heateor_sss_vertical_instagram_options" <?php echo ! in_array( 'instagram', $options['vertical_re_providers'] ) ? 'style = "display: none"' : '';?> >
|
1227 |
<tr>
|
1228 |
<th>
|
|
|
1229 |
<label for="heateor_sss_vertical_instagram_username"><?php _e("Instagram username", 'sassy-social-share' ); ?></label>
|
1230 |
+
<img id="heateor_sss_vertical_instagram_username_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1231 |
</th>
|
1232 |
<td>
|
1233 |
<input id="heateor_sss_vertical_instagram_username" name="heateor_sss[vertical_instagram_username]" type="text" value="<?php echo $instagram_username ?>" />
|
1245 |
<tbody id="heateor_sss_vertical_youtube_options" <?php echo ! in_array( 'youtube', $options['vertical_re_providers'] ) ? 'style = "display: none"' : '';?> >
|
1246 |
<tr>
|
1247 |
<th>
|
|
|
1248 |
<label for="heateor_sss_vertical_youtube_username"><?php _e( "Youtube URL", 'sassy-social-share' ); ?></label>
|
1249 |
+
<img id="heateor_sss_vertical_youtube_username_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1250 |
</th>
|
1251 |
<td>
|
1252 |
|
1266 |
<tbody id="heateor_sss_vertical_comment_options" <?php echo ! in_array( 'Comment', $options['vertical_re_providers'] ) ? 'style = "display: none"' : '';?> >
|
1267 |
<tr>
|
1268 |
<th>
|
|
|
1269 |
<label for="heateor_sss_vertical_comment_container_id"><?php _e( "HTML ID of container element of comment form", 'sassy-social-share' ); ?></label>
|
1270 |
+
<img id="heateor_sss_vertical_comment_container_id_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1271 |
</th>
|
1272 |
<td>
|
1273 |
<input id="heateor_sss_vertical_comment_container_id" name="heateor_sss[vertical_comment_container_id]" type="text" value="<?php echo $commentform_container_id ?>" />
|
1285 |
|
1286 |
<tr>
|
1287 |
<th>
|
|
|
1288 |
<label><?php _e( "Rearrange icons", 'sassy-social-share' ); ?></label>
|
1289 |
+
<img id="heateor_sss_vertical_rearrange_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1290 |
</th>
|
1291 |
</tr>
|
1292 |
|
1358 |
|
1359 |
<tr>
|
1360 |
<th colspan="2">
|
|
|
1361 |
<label><?php _e("Select Sharing Services", 'sassy-social-share' ); ?></label>
|
1362 |
+
<img id="heateor_sss_vertical_providers_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1363 |
</th>
|
1364 |
</tr>
|
1365 |
|
1402 |
|
1403 |
<tr>
|
1404 |
<th>
|
|
|
1405 |
<label><?php _e("Background Color", 'sassy-social-share' ); ?></label>
|
1406 |
+
<img id="heateor_sss_vertical_bg_color_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1407 |
</th>
|
1408 |
<td>
|
1409 |
<input style="width: 100px" name="heateor_sss[vertical_bg]" type="text" value="<?php echo isset( $options['vertical_bg'] ) ? $options['vertical_bg'] : '' ?>" />
|
1420 |
|
1421 |
<tr>
|
1422 |
<th>
|
|
|
1423 |
<label for="heateor_sss_alignment"><?php _e("Horizontal alignment", 'sassy-social-share' ); ?></label>
|
1424 |
+
<img id="heateor_sss_alignment_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1425 |
</th>
|
1426 |
<td>
|
1427 |
<select onchange="heateorSssToggleOffset(this.value)" id="heateor_sss_alignment" name="heateor_sss[alignment]">
|
1442 |
<tbody id="heateor_sss_left_offset_rows" <?php echo ( isset( $options['alignment'] ) && $options['alignment'] == 'left' ) ? '' : 'style="display: none"' ?>>
|
1443 |
<tr>
|
1444 |
<th>
|
|
|
1445 |
<label for="heateor_sss_left_offset"><?php _e("Left offset", 'sassy-social-share' ); ?></label>
|
1446 |
+
<img id="heateor_sss_left_offset_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1447 |
</th>
|
1448 |
<td>
|
1449 |
<input style="width: 100px" id="heateor_sss_left_offset" name="heateor_sss[left_offset]" type="text" value="<?php echo isset( $options['left_offset'] ) ? $options['left_offset'] : '' ?>" />px
|
1462 |
<tbody id="heateor_sss_right_offset_rows" <?php echo ( isset( $options['alignment'] ) && $options['alignment'] == 'right' ) ? '' : 'style="display: none"' ?>>
|
1463 |
<tr>
|
1464 |
<th>
|
|
|
1465 |
<label for="heateor_sss_right_offset"><?php _e("Right offset", 'sassy-social-share' ); ?></label>
|
1466 |
+
<img id="heateor_sss_right_offset_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1467 |
</th>
|
1468 |
<td>
|
1469 |
<input style="width: 100px" id="heateor_sss_right_offset" name="heateor_sss[right_offset]" type="text" value="<?php echo isset( $options['right_offset'] ) ? $options['right_offset'] : '' ?>" />px
|
1481 |
|
1482 |
<tr>
|
1483 |
<th>
|
|
|
1484 |
<label for="heateor_sss_top_offset"><?php _e("Top offset", 'sassy-social-share' ); ?></label>
|
1485 |
+
<img id="heateor_sss_top_offset_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1486 |
</th>
|
1487 |
<td>
|
1488 |
<input style="width: 100px" id="heateor_sss_top_offset" name="heateor_sss[top_offset]" type="text" value="<?php echo isset( $options['top_offset'] ) ? $options['top_offset'] : '' ?>" />px
|
1499 |
|
1500 |
<tr>
|
1501 |
<th>
|
|
|
1502 |
<label><?php _e("Placement", 'sassy-social-share' ); ?></label>
|
1503 |
+
<img id="heateor_sss_vertical_location_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1504 |
</th>
|
1505 |
<td>
|
1506 |
<input id="heateor_sss_vertical_home" name="heateor_sss[vertical_home]" type="checkbox" <?php echo isset( $options['vertical_home'] ) ? 'checked = "checked"' : '';?> value="1" />
|
1558 |
<tr>
|
1559 |
<td colspan="2">
|
1560 |
<div style="color:green">
|
1561 |
+
<?php _e( 'Save Facebook App Id and Secret in the "Miscellaneous" section to track Facebook shares', 'sassy-social-share' ) ?>
|
1562 |
</div>
|
1563 |
</td>
|
1564 |
</tr>
|
1566 |
|
1567 |
<tr>
|
1568 |
<th>
|
|
|
1569 |
<label for="heateor_sss_vertical_counts"><?php _e( "Show share counts", 'sassy-social-share' ); ?></label>
|
1570 |
+
<img id="heateor_sss_vertical_count_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1571 |
</th>
|
1572 |
<td>
|
1573 |
<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()" />
|
1588 |
|
1589 |
<tr>
|
1590 |
<th>
|
|
|
1591 |
<label for="heateor_sss_total_vertical_shares"><?php _e( "Show total shares", 'sassy-social-share' ); ?></label>
|
1592 |
+
<img id="heateor_sss_total_vertical_shares_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1593 |
</th>
|
1594 |
<td>
|
1595 |
<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" />
|
1607 |
|
1608 |
<tr>
|
1609 |
<th>
|
|
|
1610 |
<label for="heateor_sss_vmore"><?php _e("Enable 'More' icon", 'sassy-social-share' ); ?></label>
|
1611 |
+
<img id="heateor_sss_vmore_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1612 |
</th>
|
1613 |
<td>
|
1614 |
<input id="heateor_sss_vmore" name="heateor_sss[vertical_more]" type="checkbox" <?php echo isset( $options['vertical_more'] ) ? 'checked = "checked"' : '';?> value="1" />
|
1625 |
|
1626 |
<tr>
|
1627 |
<th>
|
|
|
1628 |
<label for="heateor_sss_hslider"><?php _e( "Hide floating slider", 'sassy-social-share' ); ?></label>
|
1629 |
+
<img id="heateor_sss_hslider_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1630 |
</th>
|
1631 |
<td>
|
1632 |
<input id="heateor_sss_hslider" name="heateor_sss[hide_slider]" type="checkbox" <?php echo isset( $options['hide_slider'] ) ? 'checked = "checked"' : '';?> value="1" />
|
1661 |
|
1662 |
<tr>
|
1663 |
<th>
|
|
|
1664 |
<label for="heateor_sss_mobile_sharing_bottom"><?php _e("Horizontal floating bar responsiveness", 'sassy-social-share' ); ?></label>
|
1665 |
+
<img id="heateor_sss_mobile_sharing_bottom_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1666 |
</th>
|
1667 |
<td>
|
1668 |
<input id="heateor_sss_mobile_sharing_bottom" name="heateor_sss[bottom_mobile_sharing]" type="checkbox" <?php echo isset( $options['bottom_mobile_sharing'] ) ? 'checked = "checked"' : '';?> value="1" /><label><?php echo sprintf( __( 'Stick vertical floating interface horizontally at bottom only when screen is narrower than %s pixels', 'sassy-social-share' ), '<input style="width:46px" name="heateor_sss[horizontal_screen_width]" type="text" value="' . ( isset( $options['horizontal_screen_width'] ) ? $options['horizontal_screen_width'] : '' ) . '" />' ) ?></label>
|
1681 |
<tbody id="heateor_sss_bottom_sharing_options" <?php echo isset( $options['bottom_mobile_sharing'] ) ? '' : 'style="display: none"'; ?>>
|
1682 |
<tr>
|
1683 |
<th>
|
|
|
1684 |
<label for="heateor_sss_mobile_sharing_position"><?php _e("Horizontal floating bar position", 'sassy-social-share' ); ?></label>
|
1685 |
+
<img id="heateor_sss_mobile_sharing_position_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1686 |
</th>
|
1687 |
<td>
|
1688 |
<input type="radio" id="bottom_sharing_position_radio_nonresponsive" <?php echo $options['bottom_sharing_position_radio'] == 'nonresponsive' ? 'checked' : ''; ?> name="heateor_sss[bottom_sharing_position_radio]" value="nonresponsive" /><label for="bottom_sharing_position_radio_nonresponsive"><?php echo sprintf( __( '%s pixels from %s', 'sassy-social-share' ), '<input id="heateor_sss_mobile_sharing_position" style="width:46px" name="heateor_sss[bottom_sharing_position]" type="text" value="' . ( isset( $options['bottom_sharing_position'] ) ? $options['bottom_sharing_position'] : '' ) . '" />', '<select style="width:63px" name="heateor_sss[bottom_sharing_alignment]"><option value="right" ' . ( ! isset( $options['bottom_sharing_alignment'] ) || $options['bottom_sharing_alignment'] == 'right' ? 'selected' : '' ) . '>right</option><option value="left" ' . ( isset( $options['bottom_sharing_alignment'] ) && $options['bottom_sharing_alignment'] == 'left' ? 'selected' : '' ) . '>left</option></select>' ) ?></label><br/>
|
1722 |
</tr>
|
1723 |
<tr>
|
1724 |
<th>
|
|
|
1725 |
<label for="heateor_sss_fb_key"><?php _e( "Facebook App ID", 'sassy-social-share' ); ?></label>
|
1726 |
+
<img id="heateor_sss_fb_key_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1727 |
</th>
|
1728 |
<td>
|
1729 |
<input id="heateor_sss_fb_key" name="heateor_sss[fb_key]" type="text" value="<?php echo $options['fb_key'] ?>" />
|
1733 |
<tr class="heateor_sss_help_content" id="heateor_sss_fb_key_help_cont">
|
1734 |
<td colspan="2">
|
1735 |
<div>
|
1736 |
+
<?php echo sprintf( __( 'Required to track Facebook shares. 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/' ) ?>
|
1737 |
</div>
|
1738 |
</td>
|
1739 |
</tr>
|
1740 |
|
1741 |
<tr>
|
1742 |
<th>
|
|
|
1743 |
<label for="heateor_sss_fblogin_secret"><?php _e( "Facebook App Secret", 'sassy-social-share' ); ?></label>
|
1744 |
+
<img id="heateor_sss_fb_secret_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1745 |
</th>
|
1746 |
<td>
|
1747 |
<input id="heateor_sss_fblogin_secret" name="heateor_sss[fb_secret]" type="text" value="<?php echo $options['fb_secret'] ?>" />
|
1751 |
<tr class="heateor_sss_help_content" id="heateor_sss_fb_secret_help_cont">
|
1752 |
<td colspan="2">
|
1753 |
<div>
|
1754 |
+
<?php echo sprintf( __( 'Required to track Facebook shares. 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/' ) ?>
|
1755 |
</div>
|
1756 |
</td>
|
1757 |
</tr>
|
1766 |
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
|
1767 |
<tr>
|
1768 |
<th>
|
|
|
1769 |
<label for="heateor_sss_insta_bg"><?php _e( "Use plain background for Instagram icon", 'sassy-social-share' ) ?></label>
|
1770 |
+
<img id="heateor_sss_insta_bg_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1771 |
</th>
|
1772 |
<td>
|
1773 |
<input id="heateor_sss_insta_bg" name="heateor_sss[plain_instagram_bg]" type="checkbox" <?php echo isset( $options['plain_instagram_bg'] ) ? 'checked = "checked"' : '';?> value="1" />
|
1784 |
|
1785 |
<tr>
|
1786 |
<th>
|
|
|
1787 |
<label for="heateor_sss_footer_script"><?php _e( "Load Javascript files in footer", 'sassy-social-share' ) ?></label>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1788 |
<img id="heateor_sss_footer_script_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
|
|
1789 |
</th>
|
1790 |
<td>
|
1791 |
<input id="heateor_sss_footer_script" name="heateor_sss[footer_script]" type="checkbox" <?php echo isset( $options['footer_script'] ) ? 'checked = "checked"' : '';?> value="1" />
|
1795 |
<tr class="heateor_sss_help_content" id="heateor_sss_footer_script_help_cont">
|
1796 |
<td colspan="2">
|
1797 |
<div>
|
1798 |
+
<?php _e( 'If enabled (recommended), Javascript files will be included in the footer of your website', 'sassy-social-share' ) ?>
|
1799 |
</div>
|
1800 |
</td>
|
1801 |
</tr>
|
1802 |
|
1803 |
<tr>
|
1804 |
<th>
|
|
|
1805 |
<label for="heateor_sss_delete_options"><?php _e("Delete all the options on plugin deletion", 'sassy-social-share' ); ?></label>
|
1806 |
+
<img id="heateor_sss_delete_options_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1807 |
</th>
|
1808 |
<td>
|
1809 |
<input id="heateor_sss_delete_options" name="heateor_sss[delete_options]" type="checkbox" <?php echo isset( $options['delete_options'] ) ? 'checked = "checked"' : '';?> value="1" />
|
1827 |
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
|
1828 |
<tr>
|
1829 |
<th>
|
|
|
1830 |
<label for="heateor_sss_share_count_cache"><?php _e( "Refresh Share Count cache every", 'sassy-social-share' ) ?></label>
|
1831 |
+
<img id="heateor_sss_share_count_cache_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1832 |
</th>
|
1833 |
<td>
|
1834 |
<input style="width: 50px;" id="heateor_sss_share_count_cache" name="heateor_sss[share_count_cache_refresh_count]" type="text" value="<?php echo $options['share_count_cache_refresh_count']; ?>" />
|
1851 |
|
1852 |
<tr>
|
1853 |
<th style="width:215px">
|
|
|
1854 |
<input type="button" class="button-primary" value="<?php _e( 'Clear Share Counts Cache', 'sassy-social-share' ) ?>" onclick="heateorSssClearShareCountCache()" />
|
1855 |
+
<img id="heateor_sss_clear_share_count_cache_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1856 |
</th>
|
1857 |
<td>
|
1858 |
<img src="<?php echo plugins_url( '../../images/ajax_loader.gif', __FILE__ ) ?>" id="share_count_cache_loading" style="display:none" />
|
1877 |
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
|
1878 |
<tr>
|
1879 |
<th>
|
|
|
1880 |
<label for="heateor_sss_surl_enable"><?php _e("Use shortlinks already installed", 'sassy-social-share' ); ?></label>
|
1881 |
+
<img id="heateor_sss_surl_enable_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1882 |
</th>
|
1883 |
<td>
|
1884 |
<input id="heateor_sss_surl_enable" name="heateor_sss[use_shortlinks]" type="checkbox" <?php echo isset( $options['use_shortlinks'] ) ? 'checked = "checked"' : '';?> value="1" />
|
1895 |
|
1896 |
<tr>
|
1897 |
<th>
|
|
|
1898 |
<label for="heateor_sss_bitly_enable"><?php _e("Enable bit.ly url shortener for sharing", 'sassy-social-share' ); ?></label>
|
1899 |
+
<img id="heateor_sss_bitly_enable_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1900 |
</th>
|
1901 |
<td>
|
1902 |
<input id="heateor_sss_bitly_enable" name="heateor_sss[bitly_enable]" type="checkbox" <?php echo isset( $options['bitly_enable'] ) ? 'checked = "checked"' : '';?> value="1" />
|
1913 |
|
1914 |
<tr>
|
1915 |
<th>
|
|
|
1916 |
<label for="heateor_sss_bitly_login"><?php _e("bit.ly Login", 'sassy-social-share' ); ?></label>
|
1917 |
+
<img id="heateor_sss_bitly_login_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1918 |
</th>
|
1919 |
<td>
|
1920 |
<input id="heateor_sss_bitly_login" name="heateor_sss[bitly_username]" type="text" value="<?php echo isset( $options['bitly_username'] ) ? $options['bitly_username'] : '' ?>" />
|
1932 |
|
1933 |
<tr>
|
1934 |
<th>
|
|
|
1935 |
<label for="heateor_sss_bitly_key"><?php _e("bit.ly API Key", 'sassy-social-share' ); ?></label>
|
1936 |
+
<img id="heateor_sss_bitly_key_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1937 |
</th>
|
1938 |
<td>
|
1939 |
<input id="heateor_sss_bitly_key" name="heateor_sss[bitly_key]" type="text" value="<?php echo isset( $options['bitly_key'] ) ? $options['bitly_key'] : '' ?>" />
|
1951 |
|
1952 |
<tr>
|
1953 |
<th>
|
|
|
1954 |
<input type="button" class="button-primary" value="<?php _e( 'Clear Bitly Cache', 'sassy-social-share' ) ?>" onclick="heateorSssClearShorturlCache()" />
|
1955 |
+
<img id="heateor_sss_clear_shorturl_cache_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1956 |
</th>
|
1957 |
<td>
|
1958 |
<img src="<?php echo plugins_url( '../../images/ajax_loader.gif', __FILE__ ) ?>" id="shorturl_cache_loading" style="display:none" />
|
1977 |
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
|
1978 |
<tr>
|
1979 |
<th>
|
|
|
1980 |
<label for="heateor_sss_sc_language"><?php _e("Language", 'sassy-social-share' ); ?></label>
|
1981 |
+
<img id="heateor_sss_sc_language_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1982 |
</th>
|
1983 |
<td>
|
1984 |
<input id="heateor_sss_sc_language" name="heateor_sss[language]" type="text" value="<?php echo $options['language'] ? $options['language'] : '' ?>" />
|
2002 |
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
|
2003 |
<tr>
|
2004 |
<th>
|
|
|
2005 |
<label for="heateor_sss_twitter_username"><?php _e("Twitter username (without @)", 'sassy-social-share' ); ?></label>
|
2006 |
+
<img id="heateor_sss_twitter_username_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
2007 |
</th>
|
2008 |
<td>
|
2009 |
<input id="heateor_sss_twitter_username" name="heateor_sss[twitter_username]" type="text" value="<?php echo isset( $options['twitter_username'] ) ? $options['twitter_username'] : '' ?>" />
|
2021 |
|
2022 |
<tr>
|
2023 |
<th>
|
|
|
2024 |
<label for="heateor_sss_buffer_username"><?php _e("Buffer username (without @)", 'sassy-social-share' ); ?></label>
|
2025 |
+
<img id="heateor_sss_buffer_username_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
2026 |
</th>
|
2027 |
<td>
|
2028 |
<input id="heateor_sss_buffer_username" name="heateor_sss[buffer_username]" type="text" value="<?php echo isset( $options['buffer_username'] ) ? $options['buffer_username'] : '' ?>" />
|
2046 |
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
|
2047 |
<tr>
|
2048 |
<th>
|
|
|
2049 |
<label for="heateor_sss_amp_enable"><?php _e("Enable sharing on AMP pages", 'sassy-social-share' ); ?></label>
|
2050 |
+
<img id="heateor_sss_amp_enable_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
2051 |
</th>
|
2052 |
<td>
|
2053 |
<input id="heateor_sss_amp_enable" name="heateor_sss[amp_enable]" type="checkbox" <?php echo isset( $options['amp_enable'] ) ? 'checked = "checked"' : '';?> value="1" />
|
2071 |
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
|
2072 |
<tr>
|
2073 |
<th>
|
|
|
2074 |
<label for="heateor_sss_custom_css"><?php _e("Custom CSS", 'sassy-social-share' ); ?></label>
|
2075 |
+
<img id="heateor_sss_custom_css_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
2076 |
</th>
|
2077 |
<td>
|
2078 |
<textarea rows="7" cols="63" id="heateor_sss_custom_css" name="heateor_sss[custom_css]"><?php echo isset( $options['custom_css'] ) ? $options['custom_css'] : '' ?></textarea>
|
2089 |
</table>
|
2090 |
</div>
|
2091 |
</div>
|
2092 |
+
|
2093 |
+
<div>
|
2094 |
+
<a href="https://www.heateor.com/comparison-between-sassy-social-share-pro-and-premium/" target="_blank"><img src="<?php echo plugins_url( '../../images/unlock/custom-icon-url.png', __FILE__ ) ?>" /></a>
|
2095 |
+
</div>
|
2096 |
|
2097 |
</div>
|
2098 |
<?php include 'sassy-social-share-about.php'; ?>
|
2110 |
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
|
2111 |
<tr>
|
2112 |
<th>
|
|
|
2113 |
<label for="heateor_sss_mycred_referral_id"><?php _e( "Append myCRED referral ID to the urls being shared", 'sassy-social-share' ); ?></label>
|
2114 |
+
<img id="heateor_sss_mycred_referral_id_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
2115 |
</th>
|
2116 |
<td>
|
2117 |
<input id="heateor_sss_mycred_referral_id" name="heateor_sss[mycred_referral]" type="checkbox" <?php echo isset( $options['mycred_referral'] ) ? 'checked = "checked"' : '';?> value="1" />
|
2135 |
<div class="inside" style="padding-left:7px">
|
2136 |
<p><a style="text-decoration:none" href="http://support.heateor.com/sassy-social-share-shortcode-and-widget" target="_blank"><?php _e( 'Social Share Shortcode & Widget', 'sassy-social-share' ) ?></a></p>
|
2137 |
<p><a style="text-decoration:none" href="http://support.heateor.com/sassy-follow-icons-shortcode" target="_blank"><?php _e( 'Follow Icons Shortcode & Widget', 'sassy-social-share' ) ?></a></p>
|
2138 |
+
<p><a href="https://www.heateor.com/comparison-between-sassy-social-share-pro-and-premium/" target="_blank"><img src="<?php echo plugins_url( '../../images/unlock/click-to-tweet-shortcode.png', __FILE__ ) ?>" /></a></p>
|
2139 |
</div>
|
2140 |
</div>
|
2141 |
</div>
|
2171 |
<p><?php _e( '<strong>Note:</strong> Plugin will not work on local server. You should have an online website for the plugin to function properly.', 'sassy-social-share' ); ?></p>
|
2172 |
<p><a href="http://support.heateor.com/why-is-sharer-not-showing-the-correct-image-title-and-other-meta-tags-content" target="_blank"><?php _e( 'Why is sharer not showing the correct image, title and other meta tags content?', 'sassy-social-share' ) ?></a></p>
|
2173 |
<a href="javascript:void(0)"><?php _e( 'Why is Facebook share count not working?', 'sassy-social-share' ); ?></a>
|
2174 |
+
<div><?php _e( 'Save Facebook App Id and Secret in the "Miscellaneous" section to track Facebook shares', 'sassy-social-share' ); ?></div>
|
2175 |
<p><a href="http://support.heateor.com/how-to-customize-the-url-being-shared" target="_blank"><?php _e( 'How to Customize the Url being Shared?', 'sassy-social-share' ) ?></a></p>
|
2176 |
<a href="javascript:void(0)"><?php _e( 'Why is Instagram icon redirecting to Instagram website?', 'sassy-social-share' ); ?></a>
|
2177 |
<div><?php _e( 'Instagram icon is there to send website visitors to the Instagram page of your choice. You can save the desired Instagram handle in "Instagram Username" option in "Standard Interface" and "Floating Interface" sections.', 'sassy-social-share' ); ?></div>
|
2212 |
echo sprintf( __( 'You can appreciate the effort put in this free plugin by rating it <a href="%s" target="_blank">here</a>', 'sassy-social-share' ), 'https://wordpress.org/support/view/plugin-reviews/sassy-social-share' );
|
2213 |
?>
|
2214 |
</p>
|
|
|
2215 |
</form>
|
2216 |
|
2217 |
<div class="stuffbox">
|
images/unlock/click-to-tweet-shortcode.png
ADDED
Binary file
|
images/unlock/custom-icon-url.png
ADDED
Binary file
|
images/unlock/hide-standard-share-bar.png
ADDED
Binary file
|
images/unlock/index.php
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
<?php // Silence is golden
|
images/unlock/multiple-instances.png
ADDED
Binary file
|
images/unlock/responsive-icons.png
ADDED
Binary file
|
images/unlock/social-share-popup.png
ADDED
Binary file
|
includes/class-sassy-social-share-shortcodes.php
CHANGED
@@ -179,6 +179,29 @@ class Sassy_Social_Share_Shortcodes {
|
|
179 |
$this->public_class_object->share_count_transient_id = $this->public_class_object->get_share_count_transient_id( $target_url );
|
180 |
$cached_share_count = $this->public_class_object->get_cached_share_count( $this->public_class_object->share_count_transient_id );
|
181 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
182 |
$html = '<div class="heateor_sss_sharing_container heateor_sss_' . ( $type == 'standard' ? 'horizontal' : 'vertical' ) . '_sharing' . ( $type == 'floating' && isset( $this->options['hide_mobile_sharing'] ) ? ' heateor_sss_hide_sharing' : '' ) . ( $type == 'floating' && isset( $this->options['bottom_mobile_sharing'] ) ? ' heateor_sss_bottom_sharing' : '' ) . '" ss-offset="' . $alignment_offset . '" ' . ( $this->public_class_object->is_amp_page() ? "" : "heateor-sss-data-href='" . ( isset( $share_count_url ) && $share_count_url ? $share_count_url : $target_url ) . "'" ) . ( ( $cached_share_count === false || $this->public_class_object->is_amp_page() ) ? "" : 'heateor-sss-no-counts="1" ' );
|
183 |
$vertical_offsets = '';
|
184 |
if ( $type == 'floating' ) {
|
179 |
$this->public_class_object->share_count_transient_id = $this->public_class_object->get_share_count_transient_id( $target_url );
|
180 |
$cached_share_count = $this->public_class_object->get_cached_share_count( $this->public_class_object->share_count_transient_id );
|
181 |
|
182 |
+
if ( ! wp_script_is( 'heateor_sss_sharing_js' ) ) {
|
183 |
+
$in_footer = isset( $this->options['footer_script'] ) ? true : false;
|
184 |
+
$inline_script = 'function heateorSssLoadEvent(e) {var t=window.onload;if (typeof window.onload!="function") {window.onload=e}else{window.onload=function() {t();e()}}};';
|
185 |
+
$inline_script .= 'var heateorSssSharingAjaxUrl = \''. get_admin_url() .'admin-ajax.php\', heateorSssCloseIconPath = \''. plugins_url( '../images/close.png', __FILE__ ) .'\', heateorSssPluginIconPath = \''. plugins_url( '../images/logo.png', __FILE__ ) .'\', heateorSssHorizontalSharingCountEnable = '. ( isset( $this->options['hor_enable'] ) && ( isset( $this->options['horizontal_counts'] ) || isset( $this->options['horizontal_total_shares'] ) ) ? 1 : 0 ) .', heateorSssVerticalSharingCountEnable = '. ( isset( $this->options['vertical_enable'] ) && ( isset( $this->options['vertical_counts'] ) || isset( $this->options['vertical_total_shares'] ) ) ? 1 : 0 ) .', heateorSssSharingOffset = '. ( isset( $this->options['alignment'] ) && $this->options['alignment'] != '' && isset( $this->options[$this->options['alignment'].'_offset'] ) && $this->options[$this->options['alignment'].'_offset'] != '' ? $this->options[$this->options['alignment'].'_offset'] : 0 ) . '; var heateorSssMobileStickySharingEnabled = ' . ( isset( $this->options['vertical_enable'] ) && isset( $this->options['bottom_mobile_sharing'] ) && $this->options['horizontal_screen_width'] != '' ? 1 : 0 ) . ';';
|
186 |
+
$inline_script .= 'var heateorSssCopyLinkMessage = "' . htmlspecialchars( __( 'Link copied.', 'sassy-social-share' ), ENT_QUOTES ) . '";';
|
187 |
+
if ( isset( $this->options['horizontal_counts'] ) && isset( $this->options['horizontal_counter_position'] ) ) {
|
188 |
+
$inline_script .= in_array( $this->options['horizontal_counter_position'], array( 'inner_left', 'inner_right' ) ) ? 'var heateorSssReduceHorizontalSvgWidth = true;' : '';
|
189 |
+
$inline_script .= in_array( $this->options['horizontal_counter_position'], array( 'inner_top', 'inner_bottom' ) ) ? 'var heateorSssReduceHorizontalSvgHeight = true;' : '';
|
190 |
+
}
|
191 |
+
if ( isset( $this->options['vertical_counts'] ) ) {
|
192 |
+
$inline_script .= isset( $this->options['vertical_counter_position'] ) && in_array( $this->options['vertical_counter_position'], array( 'inner_left', 'inner_right' ) ) ? 'var heateorSssReduceVerticalSvgWidth = true;' : '';
|
193 |
+
$inline_script .= ! isset( $this->options['vertical_counter_position'] ) || in_array( $this->options['vertical_counter_position'], array( 'inner_top', 'inner_bottom' ) ) ? 'var heateorSssReduceVerticalSvgHeight = true;' : '';
|
194 |
+
}
|
195 |
+
$inline_script .= 'var heateorSssUrlCountFetched = [], heateorSssSharesText = \''. htmlspecialchars( __( 'Shares', 'sassy-social-share' ), ENT_QUOTES ) . '\', heateorSssShareText = \'' . htmlspecialchars( __( 'Share', 'sassy-social-share' ), ENT_QUOTES ) . '\';';
|
196 |
+
$inline_script .= 'function heateorSssPopup(e) {window.open(e,"popUpWindow","height=400,width=600,left=400,top=100,resizable,scrollbars,toolbar=0,personalbar=0,menubar=no,location=no,directories=no,status")}';
|
197 |
+
if ( $this->public_class_object->facebook_like_recommend_enabled() || $this->public_class_object->facebook_share_enabled() ) {
|
198 |
+
$inline_script .= 'function heateorSssInitiateFB() {FB.init({appId:"",channelUrl:"",status:!0,cookie:!0,xfbml:!0,version:"v3.0"})}window.fbAsyncInit=function() {heateorSssInitiateFB(),' . ( defined( 'HEATEOR_SOCIAL_SHARE_MYCRED_INTEGRATION_VERSION' ) && $this->public_class_object->facebook_like_recommend_enabled() ? 1 : 0 ) . '&&(FB.Event.subscribe("edge.create",function(e) {heateorSsmiMycredPoints("Facebook_like_recommend","",e?e:"")}),FB.Event.subscribe("edge.remove",function(e) {heateorSsmiMycredPoints("Facebook_like_recommend","",e?e:"","Minus point(s) for undoing Facebook like-recommend")}) ),'. ( defined( 'HEATEOR_SHARING_GOOGLE_ANALYTICS_VERSION' ) ? 1 : 0 ) .'&&(FB.Event.subscribe("edge.create",function(e) {heateorSsgaSocialPluginsTracking("Facebook","Like",e?e:"")}),FB.Event.subscribe("edge.remove",function(e) {heateorSsgaSocialPluginsTracking("Facebook","Unlike",e?e:"")}) )},function(e) {var n,i="facebook-jssdk",o=e.getElementsByTagName("script")[0];e.getElementById(i)||(n=e.createElement("script"),n.id=i,n.async=!0,n.src="//connect.facebook.net/'. ( $this->options['language'] ? $this->options['language'] : 'en_US' ) .'/sdk.js",o.parentNode.insertBefore(n,o) )}(document);';
|
199 |
+
}
|
200 |
+
$inline_script .= ';var heateorSssWhatsappShareAPI = "' . $this->public_class_object->whatsapp_share_api() . '";';
|
201 |
+
wp_enqueue_script( 'heateor_sss_sharing_js', plugins_url( '../public/js/sassy-social-share-public.js', __FILE__ ), array( 'jquery' ), $this->public_class_object->version, $in_footer );
|
202 |
+
wp_add_inline_script( 'heateor_sss_sharing_js', $inline_script, $position = 'before' );
|
203 |
+
}
|
204 |
+
|
205 |
$html = '<div class="heateor_sss_sharing_container heateor_sss_' . ( $type == 'standard' ? 'horizontal' : 'vertical' ) . '_sharing' . ( $type == 'floating' && isset( $this->options['hide_mobile_sharing'] ) ? ' heateor_sss_hide_sharing' : '' ) . ( $type == 'floating' && isset( $this->options['bottom_mobile_sharing'] ) ? ' heateor_sss_bottom_sharing' : '' ) . '" ss-offset="' . $alignment_offset . '" ' . ( $this->public_class_object->is_amp_page() ? "" : "heateor-sss-data-href='" . ( isset( $share_count_url ) && $share_count_url ? $share_count_url : $target_url ) . "'" ) . ( ( $cached_share_count === false || $this->public_class_object->is_amp_page() ) ? "" : 'heateor-sss-no-counts="1" ' );
|
206 |
$vertical_offsets = '';
|
207 |
if ( $type == 'floating' ) {
|
includes/class-sassy-social-share-widgets.php
CHANGED
@@ -66,6 +66,30 @@ class Sassy_Social_Share_Standard_Widget extends WP_Widget {
|
|
66 |
if ( $instance['hide_for_logged_in'] == 1 && is_user_logged_in() ) return;
|
67 |
|
68 |
global $post;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
69 |
if ( NULL === $post ) {
|
70 |
$post_id = 0;
|
71 |
} else {
|
@@ -277,6 +301,30 @@ class Sassy_Social_Share_Floating_Widget extends WP_Widget {
|
|
277 |
if ( $instance['hide_for_logged_in'] == 1 && is_user_logged_in() ) return;
|
278 |
|
279 |
global $post;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
280 |
$post_id = $post -> ID;
|
281 |
if ( isset( $instance['target_url'] ) ) {
|
282 |
if ( $instance['target_url'] == 'default' ) {
|
66 |
if ( $instance['hide_for_logged_in'] == 1 && is_user_logged_in() ) return;
|
67 |
|
68 |
global $post;
|
69 |
+
|
70 |
+
if ( ! wp_script_is( 'heateor_sss_sharing_js' ) ) {
|
71 |
+
$in_footer = isset( $this->options['footer_script'] ) ? true : false;
|
72 |
+
$inline_script = 'function heateorSssLoadEvent(e) {var t=window.onload;if (typeof window.onload!="function") {window.onload=e}else{window.onload=function() {t();e()}}};';
|
73 |
+
$inline_script .= 'var heateorSssSharingAjaxUrl = \''. get_admin_url() .'admin-ajax.php\', heateorSssCloseIconPath = \''. plugins_url( '../images/close.png', __FILE__ ) .'\', heateorSssPluginIconPath = \''. plugins_url( '../images/logo.png', __FILE__ ) .'\', heateorSssHorizontalSharingCountEnable = '. ( isset( $this->options['hor_enable'] ) && ( isset( $this->options['horizontal_counts'] ) || isset( $this->options['horizontal_total_shares'] ) ) ? 1 : 0 ) .', heateorSssVerticalSharingCountEnable = '. ( isset( $this->options['vertical_enable'] ) && ( isset( $this->options['vertical_counts'] ) || isset( $this->options['vertical_total_shares'] ) ) ? 1 : 0 ) .', heateorSssSharingOffset = '. ( isset( $this->options['alignment'] ) && $this->options['alignment'] != '' && isset( $this->options[$this->options['alignment'].'_offset'] ) && $this->options[$this->options['alignment'].'_offset'] != '' ? $this->options[$this->options['alignment'].'_offset'] : 0 ) . '; var heateorSssMobileStickySharingEnabled = ' . ( isset( $this->options['vertical_enable'] ) && isset( $this->options['bottom_mobile_sharing'] ) && $this->options['horizontal_screen_width'] != '' ? 1 : 0 ) . ';';
|
74 |
+
$inline_script .= 'var heateorSssCopyLinkMessage = "' . htmlspecialchars( __( 'Link copied.', 'sassy-social-share' ), ENT_QUOTES ) . '";';
|
75 |
+
if ( isset( $this->options['horizontal_counts'] ) && isset( $this->options['horizontal_counter_position'] ) ) {
|
76 |
+
$inline_script .= in_array( $this->options['horizontal_counter_position'], array( 'inner_left', 'inner_right' ) ) ? 'var heateorSssReduceHorizontalSvgWidth = true;' : '';
|
77 |
+
$inline_script .= in_array( $this->options['horizontal_counter_position'], array( 'inner_top', 'inner_bottom' ) ) ? 'var heateorSssReduceHorizontalSvgHeight = true;' : '';
|
78 |
+
}
|
79 |
+
if ( isset( $this->options['vertical_counts'] ) ) {
|
80 |
+
$inline_script .= isset( $this->options['vertical_counter_position'] ) && in_array( $this->options['vertical_counter_position'], array( 'inner_left', 'inner_right' ) ) ? 'var heateorSssReduceVerticalSvgWidth = true;' : '';
|
81 |
+
$inline_script .= ! isset( $this->options['vertical_counter_position'] ) || in_array( $this->options['vertical_counter_position'], array( 'inner_top', 'inner_bottom' ) ) ? 'var heateorSssReduceVerticalSvgHeight = true;' : '';
|
82 |
+
}
|
83 |
+
$inline_script .= 'var heateorSssUrlCountFetched = [], heateorSssSharesText = \''. htmlspecialchars(__('Shares', 'sassy-social-share'), ENT_QUOTES) .'\', heateorSssShareText = \''. htmlspecialchars(__('Share', 'sassy-social-share'), ENT_QUOTES) .'\';';
|
84 |
+
$inline_script .= 'function heateorSssPopup(e) {window.open(e,"popUpWindow","height=400,width=600,left=400,top=100,resizable,scrollbars,toolbar=0,personalbar=0,menubar=no,location=no,directories=no,status")}';
|
85 |
+
if ( $this->public_class_object->facebook_like_recommend_enabled() || $this->public_class_object->facebook_share_enabled() ) {
|
86 |
+
$inline_script .= 'function heateorSssInitiateFB() {FB.init({appId:"",channelUrl:"",status:!0,cookie:!0,xfbml:!0,version:"v3.0"})}window.fbAsyncInit=function() {heateorSssInitiateFB(),' . ( defined( 'HEATEOR_SOCIAL_SHARE_MYCRED_INTEGRATION_VERSION' ) && $this->public_class_object->facebook_like_recommend_enabled() ? 1 : 0 ) . '&&(FB.Event.subscribe("edge.create",function(e) {heateorSsmiMycredPoints("Facebook_like_recommend","",e?e:"")}),FB.Event.subscribe("edge.remove",function(e) {heateorSsmiMycredPoints("Facebook_like_recommend","",e?e:"","Minus point(s) for undoing Facebook like-recommend")}) ),'. ( defined( 'HEATEOR_SHARING_GOOGLE_ANALYTICS_VERSION' ) ? 1 : 0 ) .'&&(FB.Event.subscribe("edge.create",function(e) {heateorSsgaSocialPluginsTracking("Facebook","Like",e?e:"")}),FB.Event.subscribe("edge.remove",function(e) {heateorSsgaSocialPluginsTracking("Facebook","Unlike",e?e:"")}) )},function(e) {var n,i="facebook-jssdk",o=e.getElementsByTagName("script")[0];e.getElementById(i)||(n=e.createElement("script"),n.id=i,n.async=!0,n.src="//connect.facebook.net/'. ( $this->options['language'] ? $this->options['language'] : 'en_US' ) .'/sdk.js",o.parentNode.insertBefore(n,o) )}(document);';
|
87 |
+
}
|
88 |
+
$inline_script .= ';var heateorSssWhatsappShareAPI = "' . $this->public_class_object->whatsapp_share_api() . '";';
|
89 |
+
wp_enqueue_script( 'heateor_sss_sharing_js', plugins_url( '../public/js/sassy-social-share-public.js', __FILE__ ), array( 'jquery' ), $this->public_class_object->version, $in_footer );
|
90 |
+
wp_add_inline_script( 'heateor_sss_sharing_js', $inline_script, $position = 'before' );
|
91 |
+
}
|
92 |
+
|
93 |
if ( NULL === $post ) {
|
94 |
$post_id = 0;
|
95 |
} else {
|
301 |
if ( $instance['hide_for_logged_in'] == 1 && is_user_logged_in() ) return;
|
302 |
|
303 |
global $post;
|
304 |
+
|
305 |
+
if ( ! wp_script_is( 'heateor_sss_sharing_js' ) ) {
|
306 |
+
$in_footer = isset( $this->options['footer_script'] ) ? true : false;
|
307 |
+
$inline_script = 'function heateorSssLoadEvent(e) {var t=window.onload;if (typeof window.onload!="function") {window.onload=e}else{window.onload=function() {t();e()}}};';
|
308 |
+
$inline_script .= 'var heateorSssSharingAjaxUrl = \''. get_admin_url() .'admin-ajax.php\', heateorSssCloseIconPath = \''. plugins_url( '../images/close.png', __FILE__ ) .'\', heateorSssPluginIconPath = \''. plugins_url( '../images/logo.png', __FILE__ ) .'\', heateorSssHorizontalSharingCountEnable = '. ( isset( $this->options['hor_enable'] ) && ( isset( $this->options['horizontal_counts'] ) || isset( $this->options['horizontal_total_shares'] ) ) ? 1 : 0 ) .', heateorSssVerticalSharingCountEnable = '. ( isset( $this->options['vertical_enable'] ) && ( isset( $this->options['vertical_counts'] ) || isset( $this->options['vertical_total_shares'] ) ) ? 1 : 0 ) .', heateorSssSharingOffset = '. ( isset( $this->options['alignment'] ) && $this->options['alignment'] != '' && isset( $this->options[$this->options['alignment'].'_offset'] ) && $this->options[$this->options['alignment'].'_offset'] != '' ? $this->options[$this->options['alignment'].'_offset'] : 0 ) . '; var heateorSssMobileStickySharingEnabled = ' . ( isset( $this->options['vertical_enable'] ) && isset( $this->options['bottom_mobile_sharing'] ) && $this->options['horizontal_screen_width'] != '' ? 1 : 0 ) . ';';
|
309 |
+
$inline_script .= 'var heateorSssCopyLinkMessage = "' . htmlspecialchars( __( 'Link copied.', 'sassy-social-share' ), ENT_QUOTES ) . '";';
|
310 |
+
if ( isset( $this->options['horizontal_counts'] ) && isset( $this->options['horizontal_counter_position'] ) ) {
|
311 |
+
$inline_script .= in_array( $this->options['horizontal_counter_position'], array( 'inner_left', 'inner_right' ) ) ? 'var heateorSssReduceHorizontalSvgWidth = true;' : '';
|
312 |
+
$inline_script .= in_array( $this->options['horizontal_counter_position'], array( 'inner_top', 'inner_bottom' ) ) ? 'var heateorSssReduceHorizontalSvgHeight = true;' : '';
|
313 |
+
}
|
314 |
+
if ( isset( $this->options['vertical_counts'] ) ) {
|
315 |
+
$inline_script .= isset( $this->options['vertical_counter_position'] ) && in_array( $this->options['vertical_counter_position'], array( 'inner_left', 'inner_right' ) ) ? 'var heateorSssReduceVerticalSvgWidth = true;' : '';
|
316 |
+
$inline_script .= ! isset( $this->options['vertical_counter_position'] ) || in_array( $this->options['vertical_counter_position'], array( 'inner_top', 'inner_bottom' ) ) ? 'var heateorSssReduceVerticalSvgHeight = true;' : '';
|
317 |
+
}
|
318 |
+
$inline_script .= 'var heateorSssUrlCountFetched = [], heateorSssSharesText = \''. htmlspecialchars(__('Shares', 'sassy-social-share'), ENT_QUOTES) .'\', heateorSssShareText = \''. htmlspecialchars(__('Share', 'sassy-social-share'), ENT_QUOTES) .'\';';
|
319 |
+
$inline_script .= 'function heateorSssPopup(e) {window.open(e,"popUpWindow","height=400,width=600,left=400,top=100,resizable,scrollbars,toolbar=0,personalbar=0,menubar=no,location=no,directories=no,status")}';
|
320 |
+
if ( $this->public_class_object->facebook_like_recommend_enabled() || $this->public_class_object->facebook_share_enabled() ) {
|
321 |
+
$inline_script .= 'function heateorSssInitiateFB() {FB.init({appId:"",channelUrl:"",status:!0,cookie:!0,xfbml:!0,version:"v3.0"})}window.fbAsyncInit=function() {heateorSssInitiateFB(),' . ( defined( 'HEATEOR_SOCIAL_SHARE_MYCRED_INTEGRATION_VERSION' ) && $this->public_class_object->facebook_like_recommend_enabled() ? 1 : 0 ) . '&&(FB.Event.subscribe("edge.create",function(e) {heateorSsmiMycredPoints("Facebook_like_recommend","",e?e:"")}),FB.Event.subscribe("edge.remove",function(e) {heateorSsmiMycredPoints("Facebook_like_recommend","",e?e:"","Minus point(s) for undoing Facebook like-recommend")}) ),'. ( defined( 'HEATEOR_SHARING_GOOGLE_ANALYTICS_VERSION' ) ? 1 : 0 ) .'&&(FB.Event.subscribe("edge.create",function(e) {heateorSsgaSocialPluginsTracking("Facebook","Like",e?e:"")}),FB.Event.subscribe("edge.remove",function(e) {heateorSsgaSocialPluginsTracking("Facebook","Unlike",e?e:"")}) )},function(e) {var n,i="facebook-jssdk",o=e.getElementsByTagName("script")[0];e.getElementById(i)||(n=e.createElement("script"),n.id=i,n.async=!0,n.src="//connect.facebook.net/'. ( $this->options['language'] ? $this->options['language'] : 'en_US' ) .'/sdk.js",o.parentNode.insertBefore(n,o) )}(document);';
|
322 |
+
}
|
323 |
+
$inline_script .= ';var heateorSssWhatsappShareAPI = "' . $this->public_class_object->whatsapp_share_api() . '";';
|
324 |
+
wp_enqueue_script( 'heateor_sss_sharing_js', plugins_url( '../public/js/sassy-social-share-public.js', __FILE__ ), array( 'jquery' ), $this->public_class_object->version, $in_footer );
|
325 |
+
wp_add_inline_script( 'heateor_sss_sharing_js', $inline_script, $position = 'before' );
|
326 |
+
}
|
327 |
+
|
328 |
$post_id = $post -> ID;
|
329 |
if ( isset( $instance['target_url'] ) ) {
|
330 |
if ( $instance['target_url'] == 'default' ) {
|
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-
|
6 |
-
"PO-Revision-Date: 2019-
|
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:
|
136 |
#, php-format
|
137 |
msgid ""
|
138 |
"You can appreciate the effort put in this free plugin by rating it <a href="
|
@@ -152,7 +152,7 @@ msgid "Floating Interface"
|
|
152 |
msgstr ""
|
153 |
|
154 |
#: ../admin/partials/sassy-social-share-options-page.php:27
|
155 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
156 |
msgid "Miscellaneous"
|
157 |
msgstr ""
|
158 |
|
@@ -161,7 +161,7 @@ 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:
|
165 |
msgid "Shortcode & Widget"
|
166 |
msgstr ""
|
167 |
|
@@ -170,7 +170,7 @@ msgid "Troubleshooter"
|
|
170 |
msgstr ""
|
171 |
|
172 |
#: ../admin/partials/sassy-social-share-options-page.php:37
|
173 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
174 |
msgid "FAQ"
|
175 |
msgstr ""
|
176 |
|
@@ -179,126 +179,126 @@ msgid "Standard interface theme"
|
|
179 |
msgstr ""
|
180 |
|
181 |
#: ../admin/partials/sassy-social-share-options-page.php:50
|
182 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
183 |
msgid "Icon Preview"
|
184 |
msgstr ""
|
185 |
|
186 |
#: ../admin/partials/sassy-social-share-options-page.php:133
|
187 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
188 |
msgid ""
|
189 |
"Do not forget to save the configuration after making changes by clicking the "
|
190 |
"save button below"
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
194 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
195 |
msgid "Shape"
|
196 |
msgstr ""
|
197 |
|
198 |
#: ../admin/partials/sassy-social-share-options-page.php:144
|
199 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
200 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
201 |
msgid "Round"
|
202 |
msgstr ""
|
203 |
|
204 |
#: ../admin/partials/sassy-social-share-options-page.php:146
|
205 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
206 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
207 |
msgid "Square"
|
208 |
msgstr ""
|
209 |
|
210 |
#: ../admin/partials/sassy-social-share-options-page.php:148
|
211 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
212 |
msgid "Rectangle"
|
213 |
msgstr ""
|
214 |
|
215 |
#: ../admin/partials/sassy-social-share-options-page.php:155
|
216 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
217 |
msgid "Shape of the sharing icons"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
221 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
222 |
msgid "Size (in pixels)"
|
223 |
msgstr ""
|
224 |
|
225 |
#: ../admin/partials/sassy-social-share-options-page.php:180
|
226 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
227 |
msgid "Size of the sharing icons"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
231 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
232 |
msgid "Width (in pixels)"
|
233 |
msgstr ""
|
234 |
|
235 |
#: ../admin/partials/sassy-social-share-options-page.php:206
|
236 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
237 |
msgid "Width of the sharing icons"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
241 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
242 |
msgid "Height (in pixels)"
|
243 |
msgstr ""
|
244 |
|
245 |
#: ../admin/partials/sassy-social-share-options-page.php:230
|
246 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
247 |
msgid "Height of the sharing icons"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
251 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
252 |
msgid "Border radius (in pixels)"
|
253 |
msgstr ""
|
254 |
|
255 |
#: ../admin/partials/sassy-social-share-options-page.php:250
|
256 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
257 |
msgid ""
|
258 |
"Specify a value for rounded corners. More the value, more rounded will the "
|
259 |
"corners be. Leave empty for sharp corners."
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
263 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
264 |
msgid "Logo Color"
|
265 |
msgstr ""
|
266 |
|
267 |
#: ../admin/partials/sassy-social-share-options-page.php:263
|
268 |
#: ../admin/partials/sassy-social-share-options-page.php:284
|
269 |
#: ../admin/partials/sassy-social-share-options-page.php:304
|
270 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
271 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
272 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
273 |
msgid "Default"
|
274 |
msgstr ""
|
275 |
|
276 |
#: ../admin/partials/sassy-social-share-options-page.php:265
|
277 |
#: ../admin/partials/sassy-social-share-options-page.php:285
|
278 |
#: ../admin/partials/sassy-social-share-options-page.php:309
|
279 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
280 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
281 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
282 |
msgid "On Hover"
|
283 |
msgstr ""
|
284 |
|
285 |
#: ../admin/partials/sassy-social-share-options-page.php:273
|
286 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
287 |
msgid ""
|
288 |
"Specify the color or hex code (example #cc78e0) for the logo of icon. Leave "
|
289 |
"empty for default. You can get the hex code of the required color from <a "
|
290 |
"href=\"http://www.colorpicker.com/\" target=\"_blank\">this link</a>"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
294 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
295 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
296 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
297 |
msgid "Background Color"
|
298 |
msgstr ""
|
299 |
|
300 |
#: ../admin/partials/sassy-social-share-options-page.php:292
|
301 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
302 |
msgid ""
|
303 |
"Specify the color or hex code (example #cc78e0) for icon background. Save "
|
304 |
"\"transparent\" for transparent background. Leave empty for default. You can "
|
@@ -306,333 +306,333 @@ msgid ""
|
|
306 |
"com/\" target=\"_blank\">this link</a>"
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
310 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
311 |
msgid "Border"
|
312 |
msgstr ""
|
313 |
|
314 |
#: ../admin/partials/sassy-social-share-options-page.php:306
|
315 |
#: ../admin/partials/sassy-social-share-options-page.php:311
|
316 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
317 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
318 |
msgid "Border Width"
|
319 |
msgstr ""
|
320 |
|
321 |
#: ../admin/partials/sassy-social-share-options-page.php:307
|
322 |
#: ../admin/partials/sassy-social-share-options-page.php:312
|
323 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
324 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
325 |
msgid "Border Color"
|
326 |
msgstr ""
|
327 |
|
328 |
#: ../admin/partials/sassy-social-share-options-page.php:319
|
329 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
330 |
msgid "Icon border"
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
334 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
335 |
msgid "Counter Position"
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
339 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
340 |
msgid "(applies, if counter enabled)"
|
341 |
msgstr ""
|
342 |
|
343 |
#: ../admin/partials/sassy-social-share-options-page.php:331
|
344 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
345 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
346 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
347 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
348 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
349 |
msgid "Left"
|
350 |
msgstr ""
|
351 |
|
352 |
#: ../admin/partials/sassy-social-share-options-page.php:333
|
353 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
354 |
msgid "Top"
|
355 |
msgstr ""
|
356 |
|
357 |
#: ../admin/partials/sassy-social-share-options-page.php:335
|
358 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
359 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
360 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
361 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
362 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
363 |
msgid "Right"
|
364 |
msgstr ""
|
365 |
|
366 |
#: ../admin/partials/sassy-social-share-options-page.php:337
|
367 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
368 |
msgid "Bottom"
|
369 |
msgstr ""
|
370 |
|
371 |
#: ../admin/partials/sassy-social-share-options-page.php:339
|
372 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
373 |
msgid "Inner Left"
|
374 |
msgstr ""
|
375 |
|
376 |
#: ../admin/partials/sassy-social-share-options-page.php:341
|
377 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
378 |
msgid "Inner Top"
|
379 |
msgstr ""
|
380 |
|
381 |
#: ../admin/partials/sassy-social-share-options-page.php:343
|
382 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
383 |
msgid "Inner Right"
|
384 |
msgstr ""
|
385 |
|
386 |
#: ../admin/partials/sassy-social-share-options-page.php:345
|
387 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
388 |
msgid "Inner Bottom"
|
389 |
msgstr ""
|
390 |
|
391 |
#: ../admin/partials/sassy-social-share-options-page.php:353
|
392 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
393 |
msgid "Position of share counter"
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
397 |
msgid "Floating interface theme"
|
398 |
msgstr ""
|
399 |
|
400 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
401 |
msgid "Standard Sharing Interface Options"
|
402 |
msgstr ""
|
403 |
|
404 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
405 |
msgid "Enable Standard sharing interface"
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
409 |
msgid "Master control to enable standard sharing"
|
410 |
msgstr ""
|
411 |
|
412 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
413 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
414 |
msgid "Target Url"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
418 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
419 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
420 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
421 |
msgid "Url of the webpage where icons are located (default)"
|
422 |
msgstr ""
|
423 |
|
424 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
425 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
426 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
427 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
428 |
msgid "Url of the homepage of your website"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
432 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
433 |
msgid "Custom url"
|
434 |
msgstr ""
|
435 |
|
436 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
437 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
438 |
msgid "Url to share"
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
442 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
443 |
msgid "Title"
|
444 |
msgstr ""
|
445 |
|
446 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
447 |
msgid "The text to display above the sharing interface"
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
451 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
452 |
msgid "Instagram username"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
456 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
457 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
458 |
msgid ""
|
459 |
"Username of the Instagram account you want to redirect users to, on clicking "
|
460 |
"the icon"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
464 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
465 |
msgid "Youtube URL"
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
469 |
msgid ""
|
470 |
"Username of the Youtube account you want to redirect users to, on clicking "
|
471 |
"the icon"
|
472 |
msgstr ""
|
473 |
|
474 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
475 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
476 |
msgid "HTML ID of container element of comment form"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
480 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
481 |
msgid ""
|
482 |
"HTML ID of the element you want to focus on the webpage, on click of Comment "
|
483 |
"icon."
|
484 |
msgstr ""
|
485 |
|
486 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
487 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
488 |
msgid "Rearrange icons"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
492 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
493 |
msgid "Drag the icons to rearrange in desired order"
|
494 |
msgstr ""
|
495 |
|
496 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
497 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
498 |
msgid "Select Sharing Services"
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
502 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
503 |
msgid "Select sharing services to show in social share bar"
|
504 |
msgstr ""
|
505 |
|
506 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
507 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
508 |
msgid "Search social network"
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
512 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
513 |
msgid "Horizontal alignment"
|
514 |
msgstr ""
|
515 |
|
516 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
517 |
msgid "Center"
|
518 |
msgstr ""
|
519 |
|
520 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
521 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
522 |
msgid "Horizontal alignment of the sharing interface"
|
523 |
msgstr ""
|
524 |
|
525 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
526 |
msgid "Position with respect to content"
|
527 |
msgstr ""
|
528 |
|
529 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
530 |
msgid "Top of the content"
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
534 |
msgid "Bottom of the content"
|
535 |
msgstr ""
|
536 |
|
537 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
538 |
msgid "Specify position of the sharing interface with respect to the content"
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
542 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
543 |
msgid "Placement"
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
547 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
548 |
msgid "Homepage"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
552 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
553 |
msgid "Posts"
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
557 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
558 |
msgid "Pages"
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
562 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
563 |
msgid "Excerpts and Posts page"
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
567 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
568 |
msgid "Category Archives"
|
569 |
msgstr ""
|
570 |
|
571 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
572 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
573 |
msgid "Archive Pages (Category, Tag, Author or Date based pages)"
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
577 |
msgid "BuddyPress activity"
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
581 |
msgid "BuddyPress group (only at top of content)"
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
585 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
586 |
msgid "BBPress forum"
|
587 |
msgstr ""
|
588 |
|
589 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
590 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
591 |
msgid "BBPress topic"
|
592 |
msgstr ""
|
593 |
|
594 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
595 |
msgid "BBPress reply"
|
596 |
msgstr ""
|
597 |
|
598 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
599 |
msgid "After individual product at WooCommerce Shop page"
|
600 |
msgstr ""
|
601 |
|
602 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
603 |
msgid "WooCommerce Product Page"
|
604 |
msgstr ""
|
605 |
|
606 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
607 |
msgid "WooCommerce Thankyou Page"
|
608 |
msgstr ""
|
609 |
|
610 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
611 |
msgid "Specify the pages where you want to enable Sharing interface"
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
615 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
616 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
617 |
msgid ""
|
618 |
-
"Save Facebook App Id and Secret in the \"Miscellaneous\" section
|
619 |
-
"Facebook
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
623 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
624 |
msgid "Show share counts"
|
625 |
msgstr ""
|
626 |
|
627 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
628 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
629 |
msgid ""
|
630 |
"Share counts are supported for Facebook, Twitter, Linkedin, Buffer, Reddit, "
|
631 |
"Pinterest, Odnoklassniki, Fintel and Vkontakte"
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
635 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
636 |
#, php-format
|
637 |
msgid ""
|
638 |
"To show Twitter share count, you have to click \"Give me my Twitter counts "
|
@@ -641,46 +641,46 @@ msgid ""
|
|
641 |
"their website."
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
645 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
646 |
msgid "If enabled, share counts are displayed above sharing icons."
|
647 |
msgstr ""
|
648 |
|
649 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
650 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
651 |
msgid "Show total shares"
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
655 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
656 |
msgid "If enabled, total shares will be displayed with sharing icons"
|
657 |
msgstr ""
|
658 |
|
659 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
660 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
661 |
msgid "Enable 'More' icon"
|
662 |
msgstr ""
|
663 |
|
664 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
665 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
666 |
msgid ""
|
667 |
"If enabled, \"More\" icon will be displayed after selected sharing icons "
|
668 |
"which shows additional sharing networks in popup"
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
672 |
msgid "Floating Sharing Interface Options"
|
673 |
msgstr ""
|
674 |
|
675 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
676 |
msgid "Enable Floating sharing interface"
|
677 |
msgstr ""
|
678 |
|
679 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
680 |
msgid "Master control to enable floating sharing widget"
|
681 |
msgstr ""
|
682 |
|
683 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
684 |
msgid ""
|
685 |
"Specify the color or hex code (example #cc78e0) for the background of "
|
686 |
"vertical sharing bar. Leave empty for transparent. You can get the hex code "
|
@@ -688,181 +688,180 @@ msgid ""
|
|
688 |
"\"_blank\">this link</a>"
|
689 |
msgstr ""
|
690 |
|
691 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
692 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
693 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
|
|
694 |
msgid "Left offset"
|
695 |
msgstr ""
|
696 |
|
697 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
698 |
msgid ""
|
699 |
"Specify a number. Increase in number will shift sharing interface towards "
|
700 |
"right and decrease will shift it towards left. Number can be negative too."
|
701 |
msgstr ""
|
702 |
|
703 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
704 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
705 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
706 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
707 |
msgid "Right offset"
|
708 |
msgstr ""
|
709 |
|
710 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
711 |
msgid ""
|
712 |
"Specify a number. Increase in number will shift sharing interface towards "
|
713 |
"left and decrease will shift it towards right. Number can be negative too."
|
714 |
msgstr ""
|
715 |
|
716 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
717 |
msgid "Top offset"
|
718 |
msgstr ""
|
719 |
|
720 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
721 |
msgid ""
|
722 |
"Specify a number. Increase in number will shift sharing interface towards "
|
723 |
"bottom and decrease will shift it towards top."
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
727 |
msgid "BuddyPress group"
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
731 |
msgid "Specify the pages where you want to enable vertical Sharing interface"
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
735 |
msgid "Hide floating slider"
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
739 |
msgid "Hides the slider arrow present below the floating share bar"
|
740 |
msgstr ""
|
741 |
|
742 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
743 |
msgid "Vertical floating bar responsiveness"
|
744 |
msgstr ""
|
745 |
|
746 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
747 |
#, php-format
|
748 |
msgid "Display vertical interface only when screen is wider than %s pixels"
|
749 |
msgstr ""
|
750 |
|
751 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
752 |
msgid ""
|
753 |
"Display vertical interface only when screen is wider than the width "
|
754 |
"specified."
|
755 |
msgstr ""
|
756 |
|
757 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
758 |
msgid "Horizontal floating bar responsiveness"
|
759 |
msgstr ""
|
760 |
|
761 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
762 |
#, php-format
|
763 |
msgid ""
|
764 |
"Stick vertical floating interface horizontally at bottom only when screen is "
|
765 |
"narrower than %s pixels"
|
766 |
msgstr ""
|
767 |
|
768 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
769 |
msgid ""
|
770 |
"Stick vertical floating interface horizontally at bottom only when screen is "
|
771 |
"narrower than the width specified"
|
772 |
msgstr ""
|
773 |
|
774 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
775 |
msgid "Horizontal floating bar position"
|
776 |
msgstr ""
|
777 |
|
778 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
779 |
#, php-format
|
780 |
msgid "%s pixels from %s"
|
781 |
msgstr ""
|
782 |
|
783 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
784 |
msgid "Auto-adjust according to screen width (responsive)"
|
785 |
msgstr ""
|
786 |
|
787 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
788 |
msgid "Alignment of horizontal floating interface. Number can be negative too."
|
789 |
msgstr ""
|
790 |
|
791 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
792 |
msgid "Facebook Share Count"
|
793 |
msgstr ""
|
794 |
|
795 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
796 |
msgid "Note"
|
797 |
msgstr ""
|
798 |
|
799 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
800 |
msgid "Required only to track Facebook share count"
|
801 |
msgstr ""
|
802 |
|
803 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
804 |
msgid "Facebook App ID"
|
805 |
msgstr ""
|
806 |
|
807 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
808 |
#, php-format
|
809 |
msgid ""
|
810 |
-
"Required
|
811 |
-
"
|
812 |
msgstr ""
|
813 |
|
814 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
815 |
msgid "Facebook App Secret"
|
816 |
msgstr ""
|
817 |
|
818 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
819 |
#, php-format
|
820 |
msgid ""
|
821 |
-
"Required
|
822 |
-
"
|
823 |
msgstr ""
|
824 |
|
825 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
826 |
msgid "Use plain background for Instagram icon"
|
827 |
msgstr ""
|
828 |
|
829 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
830 |
msgid ""
|
831 |
"Uses plain background for Instagram icon instead of multicolored background"
|
832 |
msgstr ""
|
833 |
|
834 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
835 |
-
#: ../admin/partials/sassy-social-share-options-page.php:1776
|
836 |
msgid "Load Javascript files in footer"
|
837 |
msgstr ""
|
838 |
|
839 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
840 |
-
#: ../admin/partials/sassy-social-share-options-page.php:1786
|
841 |
msgid ""
|
842 |
"If enabled (recommended), Javascript files will be included in the footer of "
|
843 |
-
"your website
|
844 |
msgstr ""
|
845 |
|
846 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
847 |
msgid "Delete all the options on plugin deletion"
|
848 |
msgstr ""
|
849 |
|
850 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
851 |
msgid ""
|
852 |
"If enabled, plugin options will get deleted when plugin is deleted/"
|
853 |
"uninstalled and you will need to reconfigure the options when you install "
|
854 |
"the plugin next time."
|
855 |
msgstr ""
|
856 |
|
857 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
858 |
msgid "Share Count Cache"
|
859 |
msgstr ""
|
860 |
|
861 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
862 |
msgid "Refresh Share Count cache every"
|
863 |
msgstr ""
|
864 |
|
865 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
866 |
#, php-format
|
867 |
msgid ""
|
868 |
"Frequent cache refreshing results in slower loading of pages with share "
|
@@ -870,82 +869,82 @@ msgid ""
|
|
870 |
"target=\"_blank\">here</a>"
|
871 |
msgstr ""
|
872 |
|
873 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
874 |
msgid "Clear Share Counts Cache"
|
875 |
msgstr ""
|
876 |
|
877 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
878 |
msgid "Share Counts cache cleared successfully."
|
879 |
msgstr ""
|
880 |
|
881 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
882 |
msgid "Use this to clear cached share counts"
|
883 |
msgstr ""
|
884 |
|
885 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
886 |
msgid "Url shortener"
|
887 |
msgstr ""
|
888 |
|
889 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
890 |
msgid "Use shortlinks already installed"
|
891 |
msgstr ""
|
892 |
|
893 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
894 |
msgid ""
|
895 |
"Use default short url permalinks without the need for any additional plugin"
|
896 |
msgstr ""
|
897 |
|
898 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
899 |
msgid "Enable bit.ly url shortener for sharing"
|
900 |
msgstr ""
|
901 |
|
902 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
903 |
msgid "Master control to enable bit.ly url shortening for sharing"
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
907 |
msgid "bit.ly Login"
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
911 |
#, php-format
|
912 |
msgid ""
|
913 |
"Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank"
|
914 |
"\">this link</a> to get bit.ly Login"
|
915 |
msgstr ""
|
916 |
|
917 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
918 |
msgid "bit.ly API Key"
|
919 |
msgstr ""
|
920 |
|
921 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
922 |
#, php-format
|
923 |
msgid ""
|
924 |
"Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank"
|
925 |
"\">this link</a> to get your API key"
|
926 |
msgstr ""
|
927 |
|
928 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
929 |
msgid "Clear Bitly Cache"
|
930 |
msgstr ""
|
931 |
|
932 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
933 |
msgid "ShortUrl cache cleared successfully."
|
934 |
msgstr ""
|
935 |
|
936 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
937 |
msgid ""
|
938 |
"Use this to delete short urls saved in database. Handy, if urls of your "
|
939 |
"website have been changed but short urls are still being generated for old "
|
940 |
"urls."
|
941 |
msgstr ""
|
942 |
|
943 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
944 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
945 |
msgid "Language"
|
946 |
msgstr ""
|
947 |
|
948 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
949 |
#, php-format
|
950 |
msgid ""
|
951 |
"Enter the code of the language you want to use for like buttons. You can "
|
@@ -953,68 +952,68 @@ msgid ""
|
|
953 |
"Leave it empty for default language(English)"
|
954 |
msgstr ""
|
955 |
|
956 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
957 |
msgid "Username in sharing"
|
958 |
msgstr ""
|
959 |
|
960 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
961 |
msgid "Twitter username (without @)"
|
962 |
msgstr ""
|
963 |
|
964 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
965 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
966 |
msgid ""
|
967 |
"Provided username will be appended after the content being shared as \"via "
|
968 |
"@USERNAME\". Leave empty if you do not want any username in the content "
|
969 |
"being shared."
|
970 |
msgstr ""
|
971 |
|
972 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
973 |
msgid "Buffer username (without @)"
|
974 |
msgstr ""
|
975 |
|
976 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
977 |
msgid "AMP"
|
978 |
msgstr ""
|
979 |
|
980 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
981 |
msgid "Enable sharing on AMP pages"
|
982 |
msgstr ""
|
983 |
|
984 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
985 |
msgid "Enable this option to render sharing icons on AMP pages"
|
986 |
msgstr ""
|
987 |
|
988 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
989 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
990 |
msgid "Custom CSS"
|
991 |
msgstr ""
|
992 |
|
993 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
994 |
msgid "You can specify any additional CSS rules (without <style> tag)"
|
995 |
msgstr ""
|
996 |
|
997 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
998 |
msgid "myCRED"
|
999 |
msgstr ""
|
1000 |
|
1001 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
1002 |
msgid "Append myCRED referral ID to the urls being shared"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
1006 |
msgid "Social Share Shortcode & Widget"
|
1007 |
msgstr ""
|
1008 |
|
1009 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
1010 |
msgid "Follow Icons Shortcode & Widget"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
1014 |
msgid "Facebook Sharing Troubleshooter"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
1018 |
msgid ""
|
1019 |
"If Facebook sharing is not working fine, click at the following link and "
|
1020 |
"enter the problematic url (where Facebook sharing is not working properly) "
|
@@ -1022,31 +1021,31 @@ msgid ""
|
|
1022 |
"button."
|
1023 |
msgstr ""
|
1024 |
|
1025 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
1026 |
msgid ""
|
1027 |
"<strong>Note:</strong> Plugin will not work on local server. You should have "
|
1028 |
"an online website for the plugin to function properly."
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
1032 |
msgid ""
|
1033 |
"Why is sharer not showing the correct image, title and other meta tags "
|
1034 |
"content?"
|
1035 |
msgstr ""
|
1036 |
|
1037 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
1038 |
msgid "Why is Facebook share count not working?"
|
1039 |
msgstr ""
|
1040 |
|
1041 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
1042 |
msgid "How to Customize the Url being Shared?"
|
1043 |
msgstr ""
|
1044 |
|
1045 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
1046 |
msgid "Why is Instagram icon redirecting to Instagram website?"
|
1047 |
msgstr ""
|
1048 |
|
1049 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
1050 |
msgid ""
|
1051 |
"Instagram icon is there to send website visitors to the Instagram page of "
|
1052 |
"your choice. You can save the desired Instagram handle in \"Instagram "
|
@@ -1054,97 +1053,97 @@ msgid ""
|
|
1054 |
"sections."
|
1055 |
msgstr ""
|
1056 |
|
1057 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
1058 |
msgid ""
|
1059 |
"Why are Twitter shares not appearing even after registering at Twitcount.com?"
|
1060 |
msgstr ""
|
1061 |
|
1062 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
1063 |
msgid ""
|
1064 |
"It takes some time for their service to track the shares made on Twitter "
|
1065 |
"from your website. If you still feel it's taking too long you can contact "
|
1066 |
"their support directly from their website."
|
1067 |
msgstr ""
|
1068 |
|
1069 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
1070 |
msgid ""
|
1071 |
"How to restore Social Share counts lost after moving my website to SSL/Https?"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
1075 |
msgid "How to integrate Google Analytics with sharing?"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
1079 |
msgid "Why the color of share icons is not being updated?"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
1083 |
msgid ""
|
1084 |
"How to show recent Facebook Comments from all over the website in a widget?"
|
1085 |
msgstr ""
|
1086 |
|
1087 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
1088 |
msgid ""
|
1089 |
"How to recover the Facebook Comments lost after moving my website to SSL/"
|
1090 |
"Https?"
|
1091 |
msgstr ""
|
1092 |
|
1093 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
1094 |
msgid "How to Place Title and Social Share Icons in the Same Row?"
|
1095 |
msgstr ""
|
1096 |
|
1097 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
1098 |
msgid ""
|
1099 |
"How can I show share counts of my website rather than of individual pages/"
|
1100 |
"posts?"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
1104 |
msgid "How can I disable sharing on particular page/post?"
|
1105 |
msgstr ""
|
1106 |
|
1107 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
1108 |
msgid "How can I specify minimum sharing count for sharing networks?"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
1112 |
msgid "How to share specific page?"
|
1113 |
msgstr ""
|
1114 |
|
1115 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
1116 |
msgid "How to customize the look of total share counts?"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
1120 |
msgid "How to customize the look of individual share counts?"
|
1121 |
msgstr ""
|
1122 |
|
1123 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
1124 |
msgid "How to show Whatsapp icon only on mobile devices?"
|
1125 |
msgstr ""
|
1126 |
|
1127 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
1128 |
msgid "How to hide arrow after floating sharing bar?"
|
1129 |
msgstr ""
|
1130 |
|
1131 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
1132 |
msgid "Why is share count not getting updated?"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
1136 |
msgid "Why is there so much space between like buttons?"
|
1137 |
msgstr ""
|
1138 |
|
1139 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
1140 |
msgid "Why are floating sharing/like buttons not appearing at homepage?"
|
1141 |
msgstr ""
|
1142 |
|
1143 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
1144 |
msgid "Save Changes"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
1148 |
msgid ""
|
1149 |
"If you can send (to hello@heateor.com) how this plugin is helping your "
|
1150 |
"business, we would be glad to shoutout on Instagram. You can also send any "
|
@@ -1232,257 +1231,266 @@ msgid ""
|
|
1232 |
"Social networks like Facebook, Twitter, Tumblr, Whatsapp and many more"
|
1233 |
msgstr ""
|
1234 |
|
1235 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1236 |
msgid ""
|
1237 |
"Make sure \"Standard Sharing Interface\" is enabled in \"Standard Interface"
|
1238 |
"\" section at \"Sassy Social Share\" page."
|
1239 |
msgstr ""
|
1240 |
|
1241 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1242 |
msgid "Title:"
|
1243 |
msgstr ""
|
1244 |
|
1245 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1246 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1247 |
msgid "Show individual share counts:"
|
1248 |
msgstr ""
|
1249 |
|
1250 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1251 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1252 |
msgid "Show total shares:"
|
1253 |
msgstr ""
|
1254 |
|
1255 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1256 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1257 |
msgid "Target Url:"
|
1258 |
msgstr ""
|
1259 |
|
1260 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1261 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1262 |
msgid "Select"
|
1263 |
msgstr ""
|
1264 |
|
1265 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1266 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1267 |
msgid "Custom Url"
|
1268 |
msgstr ""
|
1269 |
|
1270 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1271 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1272 |
msgid "Before widget content:"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1276 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1277 |
msgid "After widget content:"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1281 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1282 |
msgid "Hide for logged in users:"
|
1283 |
msgstr ""
|
1284 |
|
1285 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1286 |
msgid ""
|
1287 |
"Floating sharing widget. Let your website users share content on popular "
|
1288 |
"Social networks like Facebook, Twitter, Tumblr, Whatsapp and many more"
|
1289 |
msgstr ""
|
1290 |
|
1291 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1292 |
msgid ""
|
1293 |
"Make sure \"Floating Interface\" is enabled in \"Floating Interface\" "
|
1294 |
"section at \"Sassy Social Share\" page."
|
1295 |
msgstr ""
|
1296 |
|
1297 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1298 |
msgid "Alignment"
|
1299 |
msgstr ""
|
1300 |
|
1301 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1302 |
msgid "Left Offset"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1306 |
msgid "Right Offset"
|
1307 |
msgstr ""
|
1308 |
|
1309 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1310 |
msgid "Top Offset"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1314 |
msgid "Sassy Social Share - Follow Icons"
|
1315 |
msgstr ""
|
1316 |
|
1317 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1318 |
msgid "These icons link to your Social Media accounts"
|
1319 |
msgstr ""
|
1320 |
|
1321 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1322 |
msgid "Type:"
|
1323 |
msgstr ""
|
1324 |
|
1325 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1326 |
msgid "Standard"
|
1327 |
msgstr ""
|
1328 |
|
1329 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1330 |
msgid "Floating"
|
1331 |
msgstr ""
|
1332 |
|
1333 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1334 |
msgid "Top offset:"
|
1335 |
msgstr ""
|
1336 |
|
1337 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1338 |
msgid "Alignment:"
|
1339 |
msgstr ""
|
1340 |
|
1341 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1342 |
msgid "Size of icons"
|
1343 |
msgstr ""
|
1344 |
|
1345 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1346 |
msgid "Icon Shape"
|
1347 |
msgstr ""
|
1348 |
|
1349 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1350 |
msgid "Apply icon color and background color from Theme Selection section:"
|
1351 |
msgstr ""
|
1352 |
|
1353 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1354 |
msgid "No"
|
1355 |
msgstr ""
|
1356 |
|
1357 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1358 |
msgid "Yes, Standard Interface Theme"
|
1359 |
msgstr ""
|
1360 |
|
1361 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1362 |
msgid "Yes, Floating Interface Theme"
|
1363 |
msgstr ""
|
1364 |
|
1365 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1366 |
msgid "Facebook URL:"
|
1367 |
msgstr ""
|
1368 |
|
1369 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1370 |
msgid "Twitter URL:"
|
1371 |
msgstr ""
|
1372 |
|
1373 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1374 |
msgid "Instagram URL:"
|
1375 |
msgstr ""
|
1376 |
|
1377 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1378 |
msgid "Pinterest URL:"
|
1379 |
msgstr ""
|
1380 |
|
1381 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1382 |
msgid "Behance URL:"
|
1383 |
msgstr ""
|
1384 |
|
1385 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1386 |
msgid "Flickr URL:"
|
1387 |
msgstr ""
|
1388 |
|
1389 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1390 |
msgid "Foursquare URL:"
|
1391 |
msgstr ""
|
1392 |
|
1393 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1394 |
msgid "Github URL:"
|
1395 |
msgstr ""
|
1396 |
|
1397 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1398 |
msgid "LinkedIn URL:"
|
1399 |
msgstr ""
|
1400 |
|
1401 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1402 |
msgid "LinkedIn Company URL:"
|
1403 |
msgstr ""
|
1404 |
|
1405 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1406 |
msgid "Medium URL:"
|
1407 |
msgstr ""
|
1408 |
|
1409 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1410 |
msgid "MeWe URL:"
|
1411 |
msgstr ""
|
1412 |
|
1413 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1414 |
msgid "Odnoklassniki URL:"
|
1415 |
msgstr ""
|
1416 |
|
1417 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1418 |
msgid "Snapchat URL:"
|
1419 |
msgstr ""
|
1420 |
|
1421 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1422 |
msgid "Telegram URL:"
|
1423 |
msgstr ""
|
1424 |
|
1425 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1426 |
msgid "Tumblr URL:"
|
1427 |
msgstr ""
|
1428 |
|
1429 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1430 |
msgid "Vimeo URL:"
|
1431 |
msgstr ""
|
1432 |
|
1433 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1434 |
msgid "Vkontakte URL:"
|
1435 |
msgstr ""
|
1436 |
|
1437 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1438 |
msgid "Whatsapp URL:"
|
1439 |
msgstr ""
|
1440 |
|
1441 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1442 |
msgid "Xing URL:"
|
1443 |
msgstr ""
|
1444 |
|
1445 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1446 |
msgid "Youtube URL:"
|
1447 |
msgstr ""
|
1448 |
|
1449 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1450 |
msgid "Youtube Channel URL:"
|
1451 |
msgstr ""
|
1452 |
|
1453 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
1454 |
msgid "RSS Feed URL:"
|
1455 |
msgstr ""
|
1456 |
|
1457 |
-
#: ../public/class-sassy-social-share-public.php:
|
1458 |
-
msgid "Link copied."
|
1459 |
-
msgstr ""
|
1460 |
-
|
1461 |
-
#: ../public/class-sassy-social-share-public.php:119
|
1462 |
-
#: ../public/class-sassy-social-share-public.php:1183
|
1463 |
-
msgid "Shares"
|
1464 |
-
msgstr ""
|
1465 |
-
|
1466 |
-
#: ../public/class-sassy-social-share-public.php:119
|
1467 |
-
#: ../public/class-sassy-social-share-public.php:1183
|
1468 |
-
msgid "Share"
|
1469 |
-
msgstr ""
|
1470 |
-
|
1471 |
-
#: ../public/class-sassy-social-share-public.php:961
|
1472 |
msgid "Search for"
|
1473 |
msgstr ""
|
1474 |
|
1475 |
-
#: ../public/class-sassy-social-share-public.php:
|
1476 |
-
#: ../public/class-sassy-social-share-public.php:
|
1477 |
-
#: ../public/class-sassy-social-share-public.php:
|
1478 |
msgid "Archives"
|
1479 |
msgstr ""
|
1480 |
|
1481 |
-
#: ../public/class-sassy-social-share-public.php:
|
1482 |
-
#: ../public/class-sassy-social-share-public.php:
|
1483 |
msgid "Invalid request"
|
1484 |
msgstr ""
|
1485 |
|
1486 |
-
#: ../public/class-sassy-social-share-public.php:
|
1487 |
msgid "Providers not selected"
|
1488 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Sassy Social Share\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-11-27 08:31+0530\n"
|
6 |
+
"PO-Revision-Date: 2019-11-27 08:31+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:2211
|
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:1764
|
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:2134
|
165 |
msgid "Shortcode & Widget"
|
166 |
msgstr ""
|
167 |
|
170 |
msgstr ""
|
171 |
|
172 |
#: ../admin/partials/sassy-social-share-options-page.php:37
|
173 |
+
#: ../admin/partials/sassy-social-share-options-page.php:2168
|
174 |
msgid "FAQ"
|
175 |
msgstr ""
|
176 |
|
179 |
msgstr ""
|
180 |
|
181 |
#: ../admin/partials/sassy-social-share-options-page.php:50
|
182 |
+
#: ../admin/partials/sassy-social-share-options-page.php:376
|
183 |
msgid "Icon Preview"
|
184 |
msgstr ""
|
185 |
|
186 |
#: ../admin/partials/sassy-social-share-options-page.php:133
|
187 |
+
#: ../admin/partials/sassy-social-share-options-page.php:449
|
188 |
msgid ""
|
189 |
"Do not forget to save the configuration after making changes by clicking the "
|
190 |
"save button below"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: ../admin/partials/sassy-social-share-options-page.php:139
|
194 |
+
#: ../admin/partials/sassy-social-share-options-page.php:455
|
195 |
msgid "Shape"
|
196 |
msgstr ""
|
197 |
|
198 |
#: ../admin/partials/sassy-social-share-options-page.php:144
|
199 |
+
#: ../admin/partials/sassy-social-share-options-page.php:460
|
200 |
+
#: ../includes/class-sassy-social-share-widgets.php:780
|
201 |
msgid "Round"
|
202 |
msgstr ""
|
203 |
|
204 |
#: ../admin/partials/sassy-social-share-options-page.php:146
|
205 |
+
#: ../admin/partials/sassy-social-share-options-page.php:462
|
206 |
+
#: ../includes/class-sassy-social-share-widgets.php:781
|
207 |
msgid "Square"
|
208 |
msgstr ""
|
209 |
|
210 |
#: ../admin/partials/sassy-social-share-options-page.php:148
|
211 |
+
#: ../admin/partials/sassy-social-share-options-page.php:464
|
212 |
msgid "Rectangle"
|
213 |
msgstr ""
|
214 |
|
215 |
#: ../admin/partials/sassy-social-share-options-page.php:155
|
216 |
+
#: ../admin/partials/sassy-social-share-options-page.php:471
|
217 |
msgid "Shape of the sharing icons"
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: ../admin/partials/sassy-social-share-options-page.php:163
|
221 |
+
#: ../admin/partials/sassy-social-share-options-page.php:479
|
222 |
msgid "Size (in pixels)"
|
223 |
msgstr ""
|
224 |
|
225 |
#: ../admin/partials/sassy-social-share-options-page.php:180
|
226 |
+
#: ../admin/partials/sassy-social-share-options-page.php:496
|
227 |
msgid "Size of the sharing icons"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: ../admin/partials/sassy-social-share-options-page.php:189
|
231 |
+
#: ../admin/partials/sassy-social-share-options-page.php:505
|
232 |
msgid "Width (in pixels)"
|
233 |
msgstr ""
|
234 |
|
235 |
#: ../admin/partials/sassy-social-share-options-page.php:206
|
236 |
+
#: ../admin/partials/sassy-social-share-options-page.php:522
|
237 |
msgid "Width of the sharing icons"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: ../admin/partials/sassy-social-share-options-page.php:213
|
241 |
+
#: ../admin/partials/sassy-social-share-options-page.php:529
|
242 |
msgid "Height (in pixels)"
|
243 |
msgstr ""
|
244 |
|
245 |
#: ../admin/partials/sassy-social-share-options-page.php:230
|
246 |
+
#: ../admin/partials/sassy-social-share-options-page.php:546
|
247 |
msgid "Height of the sharing icons"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: ../admin/partials/sassy-social-share-options-page.php:239
|
251 |
+
#: ../admin/partials/sassy-social-share-options-page.php:555
|
252 |
msgid "Border radius (in pixels)"
|
253 |
msgstr ""
|
254 |
|
255 |
#: ../admin/partials/sassy-social-share-options-page.php:250
|
256 |
+
#: ../admin/partials/sassy-social-share-options-page.php:566
|
257 |
msgid ""
|
258 |
"Specify a value for rounded corners. More the value, more rounded will the "
|
259 |
"corners be. Leave empty for sharp corners."
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: ../admin/partials/sassy-social-share-options-page.php:258
|
263 |
+
#: ../admin/partials/sassy-social-share-options-page.php:574
|
264 |
msgid "Logo Color"
|
265 |
msgstr ""
|
266 |
|
267 |
#: ../admin/partials/sassy-social-share-options-page.php:263
|
268 |
#: ../admin/partials/sassy-social-share-options-page.php:284
|
269 |
#: ../admin/partials/sassy-social-share-options-page.php:304
|
270 |
+
#: ../admin/partials/sassy-social-share-options-page.php:579
|
271 |
+
#: ../admin/partials/sassy-social-share-options-page.php:600
|
272 |
+
#: ../admin/partials/sassy-social-share-options-page.php:619
|
273 |
msgid "Default"
|
274 |
msgstr ""
|
275 |
|
276 |
#: ../admin/partials/sassy-social-share-options-page.php:265
|
277 |
#: ../admin/partials/sassy-social-share-options-page.php:285
|
278 |
#: ../admin/partials/sassy-social-share-options-page.php:309
|
279 |
+
#: ../admin/partials/sassy-social-share-options-page.php:581
|
280 |
+
#: ../admin/partials/sassy-social-share-options-page.php:601
|
281 |
+
#: ../admin/partials/sassy-social-share-options-page.php:624
|
282 |
msgid "On Hover"
|
283 |
msgstr ""
|
284 |
|
285 |
#: ../admin/partials/sassy-social-share-options-page.php:273
|
286 |
+
#: ../admin/partials/sassy-social-share-options-page.php:589
|
287 |
msgid ""
|
288 |
"Specify the color or hex code (example #cc78e0) for the logo of icon. Leave "
|
289 |
"empty for default. You can get the hex code of the required color from <a "
|
290 |
"href=\"http://www.colorpicker.com/\" target=\"_blank\">this link</a>"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: ../admin/partials/sassy-social-share-options-page.php:280
|
294 |
+
#: ../admin/partials/sassy-social-share-options-page.php:596
|
295 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1405
|
296 |
+
#: ../includes/class-sassy-social-share-widgets.php:481
|
297 |
msgid "Background Color"
|
298 |
msgstr ""
|
299 |
|
300 |
#: ../admin/partials/sassy-social-share-options-page.php:292
|
301 |
+
#: ../admin/partials/sassy-social-share-options-page.php:608
|
302 |
msgid ""
|
303 |
"Specify the color or hex code (example #cc78e0) for icon background. Save "
|
304 |
"\"transparent\" for transparent background. Leave empty for default. You can "
|
306 |
"com/\" target=\"_blank\">this link</a>"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: ../admin/partials/sassy-social-share-options-page.php:299
|
310 |
+
#: ../admin/partials/sassy-social-share-options-page.php:615
|
311 |
msgid "Border"
|
312 |
msgstr ""
|
313 |
|
314 |
#: ../admin/partials/sassy-social-share-options-page.php:306
|
315 |
#: ../admin/partials/sassy-social-share-options-page.php:311
|
316 |
+
#: ../admin/partials/sassy-social-share-options-page.php:621
|
317 |
+
#: ../admin/partials/sassy-social-share-options-page.php:626
|
318 |
msgid "Border Width"
|
319 |
msgstr ""
|
320 |
|
321 |
#: ../admin/partials/sassy-social-share-options-page.php:307
|
322 |
#: ../admin/partials/sassy-social-share-options-page.php:312
|
323 |
+
#: ../admin/partials/sassy-social-share-options-page.php:622
|
324 |
+
#: ../admin/partials/sassy-social-share-options-page.php:627
|
325 |
msgid "Border Color"
|
326 |
msgstr ""
|
327 |
|
328 |
#: ../admin/partials/sassy-social-share-options-page.php:319
|
329 |
+
#: ../admin/partials/sassy-social-share-options-page.php:634
|
330 |
msgid "Icon border"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: ../admin/partials/sassy-social-share-options-page.php:326
|
334 |
+
#: ../admin/partials/sassy-social-share-options-page.php:641
|
335 |
msgid "Counter Position"
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: ../admin/partials/sassy-social-share-options-page.php:326
|
339 |
+
#: ../admin/partials/sassy-social-share-options-page.php:641
|
340 |
msgid "(applies, if counter enabled)"
|
341 |
msgstr ""
|
342 |
|
343 |
#: ../admin/partials/sassy-social-share-options-page.php:331
|
344 |
+
#: ../admin/partials/sassy-social-share-options-page.php:646
|
345 |
+
#: ../admin/partials/sassy-social-share-options-page.php:971
|
346 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1428
|
347 |
+
#: ../includes/class-sassy-social-share-widgets.php:467
|
348 |
+
#: ../includes/class-sassy-social-share-widgets.php:757
|
349 |
msgid "Left"
|
350 |
msgstr ""
|
351 |
|
352 |
#: ../admin/partials/sassy-social-share-options-page.php:333
|
353 |
+
#: ../admin/partials/sassy-social-share-options-page.php:648
|
354 |
msgid "Top"
|
355 |
msgstr ""
|
356 |
|
357 |
#: ../admin/partials/sassy-social-share-options-page.php:335
|
358 |
+
#: ../admin/partials/sassy-social-share-options-page.php:650
|
359 |
+
#: ../admin/partials/sassy-social-share-options-page.php:973
|
360 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1429
|
361 |
+
#: ../includes/class-sassy-social-share-widgets.php:468
|
362 |
+
#: ../includes/class-sassy-social-share-widgets.php:764
|
363 |
msgid "Right"
|
364 |
msgstr ""
|
365 |
|
366 |
#: ../admin/partials/sassy-social-share-options-page.php:337
|
367 |
+
#: ../admin/partials/sassy-social-share-options-page.php:652
|
368 |
msgid "Bottom"
|
369 |
msgstr ""
|
370 |
|
371 |
#: ../admin/partials/sassy-social-share-options-page.php:339
|
372 |
+
#: ../admin/partials/sassy-social-share-options-page.php:654
|
373 |
msgid "Inner Left"
|
374 |
msgstr ""
|
375 |
|
376 |
#: ../admin/partials/sassy-social-share-options-page.php:341
|
377 |
+
#: ../admin/partials/sassy-social-share-options-page.php:656
|
378 |
msgid "Inner Top"
|
379 |
msgstr ""
|
380 |
|
381 |
#: ../admin/partials/sassy-social-share-options-page.php:343
|
382 |
+
#: ../admin/partials/sassy-social-share-options-page.php:658
|
383 |
msgid "Inner Right"
|
384 |
msgstr ""
|
385 |
|
386 |
#: ../admin/partials/sassy-social-share-options-page.php:345
|
387 |
+
#: ../admin/partials/sassy-social-share-options-page.php:660
|
388 |
msgid "Inner Bottom"
|
389 |
msgstr ""
|
390 |
|
391 |
#: ../admin/partials/sassy-social-share-options-page.php:353
|
392 |
+
#: ../admin/partials/sassy-social-share-options-page.php:668
|
393 |
msgid "Position of share counter"
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: ../admin/partials/sassy-social-share-options-page.php:371
|
397 |
msgid "Floating interface theme"
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: ../admin/partials/sassy-social-share-options-page.php:684
|
401 |
msgid "Standard Sharing Interface Options"
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: ../admin/partials/sassy-social-share-options-page.php:689
|
405 |
msgid "Enable Standard sharing interface"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: ../admin/partials/sassy-social-share-options-page.php:700
|
409 |
msgid "Master control to enable standard sharing"
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: ../admin/partials/sassy-social-share-options-page.php:710
|
413 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1205
|
414 |
msgid "Target Url"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: ../admin/partials/sassy-social-share-options-page.php:715
|
418 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1210
|
419 |
+
#: ../includes/class-sassy-social-share-widgets.php:227
|
420 |
+
#: ../includes/class-sassy-social-share-widgets.php:460
|
421 |
msgid "Url of the webpage where icons are located (default)"
|
422 |
msgstr ""
|
423 |
|
424 |
+
#: ../admin/partials/sassy-social-share-options-page.php:717
|
425 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1212
|
426 |
+
#: ../includes/class-sassy-social-share-widgets.php:228
|
427 |
+
#: ../includes/class-sassy-social-share-widgets.php:461
|
428 |
msgid "Url of the homepage of your website"
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: ../admin/partials/sassy-social-share-options-page.php:719
|
432 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1214
|
433 |
msgid "Custom url"
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: ../admin/partials/sassy-social-share-options-page.php:726
|
437 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1221
|
438 |
msgid "Url to share"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: ../admin/partials/sassy-social-share-options-page.php:733
|
442 |
+
#: ../includes/class-sassy-social-share-widgets.php:733
|
443 |
msgid "Title"
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: ../admin/partials/sassy-social-share-options-page.php:744
|
447 |
msgid "The text to display above the sharing interface"
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: ../admin/partials/sassy-social-share-options-page.php:778
|
451 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1229
|
452 |
msgid "Instagram username"
|
453 |
msgstr ""
|
454 |
|
455 |
+
#: ../admin/partials/sassy-social-share-options-page.php:789
|
456 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1240
|
457 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1261
|
458 |
msgid ""
|
459 |
"Username of the Instagram account you want to redirect users to, on clicking "
|
460 |
"the icon"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: ../admin/partials/sassy-social-share-options-page.php:798
|
464 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1248
|
465 |
msgid "Youtube URL"
|
466 |
msgstr ""
|
467 |
|
468 |
+
#: ../admin/partials/sassy-social-share-options-page.php:809
|
469 |
msgid ""
|
470 |
"Username of the Youtube account you want to redirect users to, on clicking "
|
471 |
"the icon"
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: ../admin/partials/sassy-social-share-options-page.php:818
|
475 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1269
|
476 |
msgid "HTML ID of container element of comment form"
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: ../admin/partials/sassy-social-share-options-page.php:829
|
480 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1280
|
481 |
msgid ""
|
482 |
"HTML ID of the element you want to focus on the webpage, on click of Comment "
|
483 |
"icon."
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: ../admin/partials/sassy-social-share-options-page.php:847
|
487 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1288
|
488 |
msgid "Rearrange icons"
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: ../admin/partials/sassy-social-share-options-page.php:915
|
492 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1354
|
493 |
msgid "Drag the icons to rearrange in desired order"
|
494 |
msgstr ""
|
495 |
|
496 |
+
#: ../admin/partials/sassy-social-share-options-page.php:922
|
497 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1361
|
498 |
msgid "Select Sharing Services"
|
499 |
msgstr ""
|
500 |
|
501 |
+
#: ../admin/partials/sassy-social-share-options-page.php:930
|
502 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1369
|
503 |
msgid "Select sharing services to show in social share bar"
|
504 |
msgstr ""
|
505 |
|
506 |
+
#: ../admin/partials/sassy-social-share-options-page.php:948
|
507 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1387
|
508 |
msgid "Search social network"
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: ../admin/partials/sassy-social-share-options-page.php:966
|
512 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1423
|
513 |
msgid "Horizontal alignment"
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: ../admin/partials/sassy-social-share-options-page.php:972
|
517 |
msgid "Center"
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: ../admin/partials/sassy-social-share-options-page.php:981
|
521 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1437
|
522 |
msgid "Horizontal alignment of the sharing interface"
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: ../admin/partials/sassy-social-share-options-page.php:988
|
526 |
msgid "Position with respect to content"
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: ../admin/partials/sassy-social-share-options-page.php:993
|
530 |
msgid "Top of the content"
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: ../admin/partials/sassy-social-share-options-page.php:995
|
534 |
msgid "Bottom of the content"
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1002
|
538 |
msgid "Specify position of the sharing interface with respect to the content"
|
539 |
msgstr ""
|
540 |
|
541 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1017
|
542 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1502
|
543 |
msgid "Placement"
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1022
|
547 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1507
|
548 |
msgid "Homepage"
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1024
|
552 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1509
|
553 |
msgid "Posts"
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1026
|
557 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1511
|
558 |
msgid "Pages"
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1028
|
562 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1513
|
563 |
msgid "Excerpts and Posts page"
|
564 |
msgstr ""
|
565 |
|
566 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1030
|
567 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1515
|
568 |
msgid "Category Archives"
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1032
|
572 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1517
|
573 |
msgid "Archive Pages (Category, Tag, Author or Date based pages)"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1048
|
577 |
msgid "BuddyPress activity"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1050
|
581 |
msgid "BuddyPress group (only at top of content)"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1056
|
585 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1539
|
586 |
msgid "BBPress forum"
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1059
|
590 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1542
|
591 |
msgid "BBPress topic"
|
592 |
msgstr ""
|
593 |
|
594 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1062
|
595 |
msgid "BBPress reply"
|
596 |
msgstr ""
|
597 |
|
598 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1069
|
599 |
msgid "After individual product at WooCommerce Shop page"
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1072
|
603 |
msgid "WooCommerce Product Page"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1075
|
607 |
msgid "WooCommerce Thankyou Page"
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1086
|
611 |
msgid "Specify the pages where you want to enable Sharing interface"
|
612 |
msgstr ""
|
613 |
|
614 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1095
|
615 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1561
|
616 |
+
#: ../admin/partials/sassy-social-share-options-page.php:2173
|
617 |
msgid ""
|
618 |
+
"Save Facebook App Id and Secret in the \"Miscellaneous\" section to track "
|
619 |
+
"Facebook shares"
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1103
|
623 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1569
|
624 |
msgid "Show share counts"
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1109
|
628 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1575
|
629 |
msgid ""
|
630 |
"Share counts are supported for Facebook, Twitter, Linkedin, Buffer, Reddit, "
|
631 |
"Pinterest, Odnoklassniki, Fintel and Vkontakte"
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1110
|
635 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1576
|
636 |
#, php-format
|
637 |
msgid ""
|
638 |
"To show Twitter share count, you have to click \"Give me my Twitter counts "
|
641 |
"their website."
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1117
|
645 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1583
|
646 |
msgid "If enabled, share counts are displayed above sharing icons."
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1125
|
650 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1591
|
651 |
msgid "Show total shares"
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1136
|
655 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1602
|
656 |
msgid "If enabled, total shares will be displayed with sharing icons"
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1144
|
660 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1610
|
661 |
msgid "Enable 'More' icon"
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1155
|
665 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1621
|
666 |
msgid ""
|
667 |
"If enabled, \"More\" icon will be displayed after selected sharing icons "
|
668 |
"which shows additional sharing networks in popup"
|
669 |
msgstr ""
|
670 |
|
671 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1180
|
672 |
msgid "Floating Sharing Interface Options"
|
673 |
msgstr ""
|
674 |
|
675 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1185
|
676 |
msgid "Enable Floating sharing interface"
|
677 |
msgstr ""
|
678 |
|
679 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1196
|
680 |
msgid "Master control to enable floating sharing widget"
|
681 |
msgstr ""
|
682 |
|
683 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1416
|
684 |
msgid ""
|
685 |
"Specify the color or hex code (example #cc78e0) for the background of "
|
686 |
"vertical sharing bar. Leave empty for transparent. You can get the hex code "
|
688 |
"\"_blank\">this link</a>"
|
689 |
msgstr ""
|
690 |
|
691 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1445
|
692 |
+
#: ../includes/class-sassy-social-share-widgets.php:770
|
693 |
+
#: ../includes/class-sassy-social-share-widgets.php:793
|
694 |
+
#: ../includes/class-sassy-social-share-widgets.php:795
|
695 |
msgid "Left offset"
|
696 |
msgstr ""
|
697 |
|
698 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1456
|
699 |
msgid ""
|
700 |
"Specify a number. Increase in number will shift sharing interface towards "
|
701 |
"right and decrease will shift it towards left. Number can be negative too."
|
702 |
msgstr ""
|
703 |
|
704 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1465
|
705 |
+
#: ../includes/class-sassy-social-share-widgets.php:770
|
706 |
+
#: ../includes/class-sassy-social-share-widgets.php:793
|
707 |
+
#: ../includes/class-sassy-social-share-widgets.php:795
|
708 |
msgid "Right offset"
|
709 |
msgstr ""
|
710 |
|
711 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1476
|
712 |
msgid ""
|
713 |
"Specify a number. Increase in number will shift sharing interface towards "
|
714 |
"left and decrease will shift it towards right. Number can be negative too."
|
715 |
msgstr ""
|
716 |
|
717 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1484
|
718 |
msgid "Top offset"
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1495
|
722 |
msgid ""
|
723 |
"Specify a number. Increase in number will shift sharing interface towards "
|
724 |
"bottom and decrease will shift it towards top."
|
725 |
msgstr ""
|
726 |
|
727 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1531
|
728 |
msgid "BuddyPress group"
|
729 |
msgstr ""
|
730 |
|
731 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1552
|
732 |
msgid "Specify the pages where you want to enable vertical Sharing interface"
|
733 |
msgstr ""
|
734 |
|
735 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1628
|
736 |
msgid "Hide floating slider"
|
737 |
msgstr ""
|
738 |
|
739 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1639
|
740 |
msgid "Hides the slider arrow present below the floating share bar"
|
741 |
msgstr ""
|
742 |
|
743 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1647
|
744 |
msgid "Vertical floating bar responsiveness"
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1650
|
748 |
#, php-format
|
749 |
msgid "Display vertical interface only when screen is wider than %s pixels"
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1657
|
753 |
msgid ""
|
754 |
"Display vertical interface only when screen is wider than the width "
|
755 |
"specified."
|
756 |
msgstr ""
|
757 |
|
758 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1664
|
759 |
msgid "Horizontal floating bar responsiveness"
|
760 |
msgstr ""
|
761 |
|
762 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1668
|
763 |
#, php-format
|
764 |
msgid ""
|
765 |
"Stick vertical floating interface horizontally at bottom only when screen is "
|
766 |
"narrower than %s pixels"
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1675
|
770 |
msgid ""
|
771 |
"Stick vertical floating interface horizontally at bottom only when screen is "
|
772 |
"narrower than the width specified"
|
773 |
msgstr ""
|
774 |
|
775 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1684
|
776 |
msgid "Horizontal floating bar position"
|
777 |
msgstr ""
|
778 |
|
779 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1688
|
780 |
#, php-format
|
781 |
msgid "%s pixels from %s"
|
782 |
msgstr ""
|
783 |
|
784 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1689
|
785 |
msgid "Auto-adjust according to screen width (responsive)"
|
786 |
msgstr ""
|
787 |
|
788 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1696
|
789 |
msgid "Alignment of horizontal floating interface. Number can be negative too."
|
790 |
msgstr ""
|
791 |
|
792 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1716
|
793 |
msgid "Facebook Share Count"
|
794 |
msgstr ""
|
795 |
|
796 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1721
|
797 |
msgid "Note"
|
798 |
msgstr ""
|
799 |
|
800 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1721
|
801 |
msgid "Required only to track Facebook share count"
|
802 |
msgstr ""
|
803 |
|
804 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1725
|
805 |
msgid "Facebook App ID"
|
806 |
msgstr ""
|
807 |
|
808 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1736
|
809 |
#, php-format
|
810 |
msgid ""
|
811 |
+
"Required to track Facebook shares. Please follow the documentation at <a "
|
812 |
+
"href=\"%s\" target=\"_blank\">this link</a> to get Facebook App ID"
|
813 |
msgstr ""
|
814 |
|
815 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1743
|
816 |
msgid "Facebook App Secret"
|
817 |
msgstr ""
|
818 |
|
819 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1754
|
820 |
#, php-format
|
821 |
msgid ""
|
822 |
+
"Required to track Facebook shares. Please follow the documentation at <a "
|
823 |
+
"href=\"%s\" target=\"_blank\">this link</a> to get Facebook App Secret"
|
824 |
msgstr ""
|
825 |
|
826 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1769
|
827 |
msgid "Use plain background for Instagram icon"
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1780
|
831 |
msgid ""
|
832 |
"Uses plain background for Instagram icon instead of multicolored background"
|
833 |
msgstr ""
|
834 |
|
835 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1787
|
|
|
836 |
msgid "Load Javascript files in footer"
|
837 |
msgstr ""
|
838 |
|
839 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1798
|
|
|
840 |
msgid ""
|
841 |
"If enabled (recommended), Javascript files will be included in the footer of "
|
842 |
+
"your website"
|
843 |
msgstr ""
|
844 |
|
845 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1805
|
846 |
msgid "Delete all the options on plugin deletion"
|
847 |
msgstr ""
|
848 |
|
849 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1816
|
850 |
msgid ""
|
851 |
"If enabled, plugin options will get deleted when plugin is deleted/"
|
852 |
"uninstalled and you will need to reconfigure the options when you install "
|
853 |
"the plugin next time."
|
854 |
msgstr ""
|
855 |
|
856 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1825
|
857 |
msgid "Share Count Cache"
|
858 |
msgstr ""
|
859 |
|
860 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1830
|
861 |
msgid "Refresh Share Count cache every"
|
862 |
msgstr ""
|
863 |
|
864 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1847
|
865 |
#, php-format
|
866 |
msgid ""
|
867 |
"Frequent cache refreshing results in slower loading of pages with share "
|
869 |
"target=\"_blank\">here</a>"
|
870 |
msgstr ""
|
871 |
|
872 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1854
|
873 |
msgid "Clear Share Counts Cache"
|
874 |
msgstr ""
|
875 |
|
876 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1859
|
877 |
msgid "Share Counts cache cleared successfully."
|
878 |
msgstr ""
|
879 |
|
880 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1866
|
881 |
msgid "Use this to clear cached share counts"
|
882 |
msgstr ""
|
883 |
|
884 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1875
|
885 |
msgid "Url shortener"
|
886 |
msgstr ""
|
887 |
|
888 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1880
|
889 |
msgid "Use shortlinks already installed"
|
890 |
msgstr ""
|
891 |
|
892 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1891
|
893 |
msgid ""
|
894 |
"Use default short url permalinks without the need for any additional plugin"
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1898
|
898 |
msgid "Enable bit.ly url shortener for sharing"
|
899 |
msgstr ""
|
900 |
|
901 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1909
|
902 |
msgid "Master control to enable bit.ly url shortening for sharing"
|
903 |
msgstr ""
|
904 |
|
905 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1916
|
906 |
msgid "bit.ly Login"
|
907 |
msgstr ""
|
908 |
|
909 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1927
|
910 |
#, php-format
|
911 |
msgid ""
|
912 |
"Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank"
|
913 |
"\">this link</a> to get bit.ly Login"
|
914 |
msgstr ""
|
915 |
|
916 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1935
|
917 |
msgid "bit.ly API Key"
|
918 |
msgstr ""
|
919 |
|
920 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1946
|
921 |
#, php-format
|
922 |
msgid ""
|
923 |
"Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank"
|
924 |
"\">this link</a> to get your API key"
|
925 |
msgstr ""
|
926 |
|
927 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1954
|
928 |
msgid "Clear Bitly Cache"
|
929 |
msgstr ""
|
930 |
|
931 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1959
|
932 |
msgid "ShortUrl cache cleared successfully."
|
933 |
msgstr ""
|
934 |
|
935 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1966
|
936 |
msgid ""
|
937 |
"Use this to delete short urls saved in database. Handy, if urls of your "
|
938 |
"website have been changed but short urls are still being generated for old "
|
939 |
"urls."
|
940 |
msgstr ""
|
941 |
|
942 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1975
|
943 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1980
|
944 |
msgid "Language"
|
945 |
msgstr ""
|
946 |
|
947 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1991
|
948 |
#, php-format
|
949 |
msgid ""
|
950 |
"Enter the code of the language you want to use for like buttons. You can "
|
952 |
"Leave it empty for default language(English)"
|
953 |
msgstr ""
|
954 |
|
955 |
+
#: ../admin/partials/sassy-social-share-options-page.php:2000
|
956 |
msgid "Username in sharing"
|
957 |
msgstr ""
|
958 |
|
959 |
+
#: ../admin/partials/sassy-social-share-options-page.php:2005
|
960 |
msgid "Twitter username (without @)"
|
961 |
msgstr ""
|
962 |
|
963 |
+
#: ../admin/partials/sassy-social-share-options-page.php:2016
|
964 |
+
#: ../admin/partials/sassy-social-share-options-page.php:2035
|
965 |
msgid ""
|
966 |
"Provided username will be appended after the content being shared as \"via "
|
967 |
"@USERNAME\". Leave empty if you do not want any username in the content "
|
968 |
"being shared."
|
969 |
msgstr ""
|
970 |
|
971 |
+
#: ../admin/partials/sassy-social-share-options-page.php:2024
|
972 |
msgid "Buffer username (without @)"
|
973 |
msgstr ""
|
974 |
|
975 |
+
#: ../admin/partials/sassy-social-share-options-page.php:2044
|
976 |
msgid "AMP"
|
977 |
msgstr ""
|
978 |
|
979 |
+
#: ../admin/partials/sassy-social-share-options-page.php:2049
|
980 |
msgid "Enable sharing on AMP pages"
|
981 |
msgstr ""
|
982 |
|
983 |
+
#: ../admin/partials/sassy-social-share-options-page.php:2060
|
984 |
msgid "Enable this option to render sharing icons on AMP pages"
|
985 |
msgstr ""
|
986 |
|
987 |
+
#: ../admin/partials/sassy-social-share-options-page.php:2069
|
988 |
+
#: ../admin/partials/sassy-social-share-options-page.php:2074
|
989 |
msgid "Custom CSS"
|
990 |
msgstr ""
|
991 |
|
992 |
+
#: ../admin/partials/sassy-social-share-options-page.php:2085
|
993 |
msgid "You can specify any additional CSS rules (without <style> tag)"
|
994 |
msgstr ""
|
995 |
|
996 |
+
#: ../admin/partials/sassy-social-share-options-page.php:2108
|
997 |
msgid "myCRED"
|
998 |
msgstr ""
|
999 |
|
1000 |
+
#: ../admin/partials/sassy-social-share-options-page.php:2113
|
1001 |
msgid "Append myCRED referral ID to the urls being shared"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
+
#: ../admin/partials/sassy-social-share-options-page.php:2136
|
1005 |
msgid "Social Share Shortcode & Widget"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
+
#: ../admin/partials/sassy-social-share-options-page.php:2137
|
1009 |
msgid "Follow Icons Shortcode & Widget"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
+
#: ../admin/partials/sassy-social-share-options-page.php:2148
|
1013 |
msgid "Facebook Sharing Troubleshooter"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
+
#: ../admin/partials/sassy-social-share-options-page.php:2153
|
1017 |
msgid ""
|
1018 |
"If Facebook sharing is not working fine, click at the following link and "
|
1019 |
"enter the problematic url (where Facebook sharing is not working properly) "
|
1021 |
"button."
|
1022 |
msgstr ""
|
1023 |
|
1024 |
+
#: ../admin/partials/sassy-social-share-options-page.php:2170
|
1025 |
msgid ""
|
1026 |
"<strong>Note:</strong> Plugin will not work on local server. You should have "
|
1027 |
"an online website for the plugin to function properly."
|
1028 |
msgstr ""
|
1029 |
|
1030 |
+
#: ../admin/partials/sassy-social-share-options-page.php:2171
|
1031 |
msgid ""
|
1032 |
"Why is sharer not showing the correct image, title and other meta tags "
|
1033 |
"content?"
|
1034 |
msgstr ""
|
1035 |
|
1036 |
+
#: ../admin/partials/sassy-social-share-options-page.php:2172
|
1037 |
msgid "Why is Facebook share count not working?"
|
1038 |
msgstr ""
|
1039 |
|
1040 |
+
#: ../admin/partials/sassy-social-share-options-page.php:2174
|
1041 |
msgid "How to Customize the Url being Shared?"
|
1042 |
msgstr ""
|
1043 |
|
1044 |
+
#: ../admin/partials/sassy-social-share-options-page.php:2175
|
1045 |
msgid "Why is Instagram icon redirecting to Instagram website?"
|
1046 |
msgstr ""
|
1047 |
|
1048 |
+
#: ../admin/partials/sassy-social-share-options-page.php:2176
|
1049 |
msgid ""
|
1050 |
"Instagram icon is there to send website visitors to the Instagram page of "
|
1051 |
"your choice. You can save the desired Instagram handle in \"Instagram "
|
1053 |
"sections."
|
1054 |
msgstr ""
|
1055 |
|
1056 |
+
#: ../admin/partials/sassy-social-share-options-page.php:2178
|
1057 |
msgid ""
|
1058 |
"Why are Twitter shares not appearing even after registering at Twitcount.com?"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
+
#: ../admin/partials/sassy-social-share-options-page.php:2179
|
1062 |
msgid ""
|
1063 |
"It takes some time for their service to track the shares made on Twitter "
|
1064 |
"from your website. If you still feel it's taking too long you can contact "
|
1065 |
"their support directly from their website."
|
1066 |
msgstr ""
|
1067 |
|
1068 |
+
#: ../admin/partials/sassy-social-share-options-page.php:2181
|
1069 |
msgid ""
|
1070 |
"How to restore Social Share counts lost after moving my website to SSL/Https?"
|
1071 |
msgstr ""
|
1072 |
|
1073 |
+
#: ../admin/partials/sassy-social-share-options-page.php:2182
|
1074 |
msgid "How to integrate Google Analytics with sharing?"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
+
#: ../admin/partials/sassy-social-share-options-page.php:2183
|
1078 |
msgid "Why the color of share icons is not being updated?"
|
1079 |
msgstr ""
|
1080 |
|
1081 |
+
#: ../admin/partials/sassy-social-share-options-page.php:2184
|
1082 |
msgid ""
|
1083 |
"How to show recent Facebook Comments from all over the website in a widget?"
|
1084 |
msgstr ""
|
1085 |
|
1086 |
+
#: ../admin/partials/sassy-social-share-options-page.php:2185
|
1087 |
msgid ""
|
1088 |
"How to recover the Facebook Comments lost after moving my website to SSL/"
|
1089 |
"Https?"
|
1090 |
msgstr ""
|
1091 |
|
1092 |
+
#: ../admin/partials/sassy-social-share-options-page.php:2186
|
1093 |
msgid "How to Place Title and Social Share Icons in the Same Row?"
|
1094 |
msgstr ""
|
1095 |
|
1096 |
+
#: ../admin/partials/sassy-social-share-options-page.php:2187
|
1097 |
msgid ""
|
1098 |
"How can I show share counts of my website rather than of individual pages/"
|
1099 |
"posts?"
|
1100 |
msgstr ""
|
1101 |
|
1102 |
+
#: ../admin/partials/sassy-social-share-options-page.php:2188
|
1103 |
msgid "How can I disable sharing on particular page/post?"
|
1104 |
msgstr ""
|
1105 |
|
1106 |
+
#: ../admin/partials/sassy-social-share-options-page.php:2189
|
1107 |
msgid "How can I specify minimum sharing count for sharing networks?"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
+
#: ../admin/partials/sassy-social-share-options-page.php:2190
|
1111 |
msgid "How to share specific page?"
|
1112 |
msgstr ""
|
1113 |
|
1114 |
+
#: ../admin/partials/sassy-social-share-options-page.php:2191
|
1115 |
msgid "How to customize the look of total share counts?"
|
1116 |
msgstr ""
|
1117 |
|
1118 |
+
#: ../admin/partials/sassy-social-share-options-page.php:2192
|
1119 |
msgid "How to customize the look of individual share counts?"
|
1120 |
msgstr ""
|
1121 |
|
1122 |
+
#: ../admin/partials/sassy-social-share-options-page.php:2193
|
1123 |
msgid "How to show Whatsapp icon only on mobile devices?"
|
1124 |
msgstr ""
|
1125 |
|
1126 |
+
#: ../admin/partials/sassy-social-share-options-page.php:2194
|
1127 |
msgid "How to hide arrow after floating sharing bar?"
|
1128 |
msgstr ""
|
1129 |
|
1130 |
+
#: ../admin/partials/sassy-social-share-options-page.php:2195
|
1131 |
msgid "Why is share count not getting updated?"
|
1132 |
msgstr ""
|
1133 |
|
1134 |
+
#: ../admin/partials/sassy-social-share-options-page.php:2196
|
1135 |
msgid "Why is there so much space between like buttons?"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
+
#: ../admin/partials/sassy-social-share-options-page.php:2197
|
1139 |
msgid "Why are floating sharing/like buttons not appearing at homepage?"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
+
#: ../admin/partials/sassy-social-share-options-page.php:2207
|
1143 |
msgid "Save Changes"
|
1144 |
msgstr ""
|
1145 |
|
1146 |
+
#: ../admin/partials/sassy-social-share-options-page.php:2219
|
1147 |
msgid ""
|
1148 |
"If you can send (to hello@heateor.com) how this plugin is helping your "
|
1149 |
"business, we would be glad to shoutout on Instagram. You can also send any "
|
1231 |
"Social networks like Facebook, Twitter, Tumblr, Whatsapp and many more"
|
1232 |
msgstr ""
|
1233 |
|
1234 |
+
#: ../includes/class-sassy-social-share-widgets.php:74
|
1235 |
+
#: ../includes/class-sassy-social-share-widgets.php:309
|
1236 |
+
#: ../includes/class-sassy-social-share-shortcodes.php:186
|
1237 |
+
#: ../public/class-sassy-social-share-public.php:111
|
1238 |
+
msgid "Link copied."
|
1239 |
+
msgstr ""
|
1240 |
+
|
1241 |
+
#: ../includes/class-sassy-social-share-widgets.php:83
|
1242 |
+
#: ../includes/class-sassy-social-share-widgets.php:318
|
1243 |
+
#: ../includes/class-sassy-social-share-shortcodes.php:195
|
1244 |
+
#: ../public/class-sassy-social-share-public.php:120
|
1245 |
+
#: ../public/class-sassy-social-share-public.php:535
|
1246 |
+
msgid "Shares"
|
1247 |
+
msgstr ""
|
1248 |
+
|
1249 |
+
#: ../includes/class-sassy-social-share-widgets.php:83
|
1250 |
+
#: ../includes/class-sassy-social-share-widgets.php:318
|
1251 |
+
#: ../includes/class-sassy-social-share-shortcodes.php:195
|
1252 |
+
#: ../public/class-sassy-social-share-public.php:120
|
1253 |
+
#: ../public/class-sassy-social-share-public.php:535
|
1254 |
+
msgid "Share"
|
1255 |
+
msgstr ""
|
1256 |
+
|
1257 |
+
#: ../includes/class-sassy-social-share-widgets.php:217
|
1258 |
msgid ""
|
1259 |
"Make sure \"Standard Sharing Interface\" is enabled in \"Standard Interface"
|
1260 |
"\" section at \"Sassy Social Share\" page."
|
1261 |
msgstr ""
|
1262 |
|
1263 |
+
#: ../includes/class-sassy-social-share-widgets.php:218
|
1264 |
msgid "Title:"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
+
#: ../includes/class-sassy-social-share-widgets.php:220
|
1268 |
+
#: ../includes/class-sassy-social-share-widgets.php:453
|
1269 |
msgid "Show individual share counts:"
|
1270 |
msgstr ""
|
1271 |
|
1272 |
+
#: ../includes/class-sassy-social-share-widgets.php:222
|
1273 |
+
#: ../includes/class-sassy-social-share-widgets.php:455
|
1274 |
msgid "Show total shares:"
|
1275 |
msgstr ""
|
1276 |
|
1277 |
+
#: ../includes/class-sassy-social-share-widgets.php:224
|
1278 |
+
#: ../includes/class-sassy-social-share-widgets.php:457
|
1279 |
msgid "Target Url:"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
+
#: ../includes/class-sassy-social-share-widgets.php:226
|
1283 |
+
#: ../includes/class-sassy-social-share-widgets.php:459
|
1284 |
msgid "Select"
|
1285 |
msgstr ""
|
1286 |
|
1287 |
+
#: ../includes/class-sassy-social-share-widgets.php:229
|
1288 |
+
#: ../includes/class-sassy-social-share-widgets.php:462
|
1289 |
msgid "Custom Url"
|
1290 |
msgstr ""
|
1291 |
|
1292 |
+
#: ../includes/class-sassy-social-share-widgets.php:232
|
1293 |
+
#: ../includes/class-sassy-social-share-widgets.php:731
|
1294 |
msgid "Before widget content:"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
+
#: ../includes/class-sassy-social-share-widgets.php:234
|
1298 |
+
#: ../includes/class-sassy-social-share-widgets.php:878
|
1299 |
msgid "After widget content:"
|
1300 |
msgstr ""
|
1301 |
|
1302 |
+
#: ../includes/class-sassy-social-share-widgets.php:236
|
1303 |
+
#: ../includes/class-sassy-social-share-widgets.php:484
|
1304 |
msgid "Hide for logged in users:"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
+
#: ../includes/class-sassy-social-share-widgets.php:285
|
1308 |
msgid ""
|
1309 |
"Floating sharing widget. Let your website users share content on popular "
|
1310 |
"Social networks like Facebook, Twitter, Tumblr, Whatsapp and many more"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
+
#: ../includes/class-sassy-social-share-widgets.php:452
|
1314 |
msgid ""
|
1315 |
"Make sure \"Floating Interface\" is enabled in \"Floating Interface\" "
|
1316 |
"section at \"Sassy Social Share\" page."
|
1317 |
msgstr ""
|
1318 |
|
1319 |
+
#: ../includes/class-sassy-social-share-widgets.php:465
|
1320 |
msgid "Alignment"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
+
#: ../includes/class-sassy-social-share-widgets.php:471
|
1324 |
msgid "Left Offset"
|
1325 |
msgstr ""
|
1326 |
|
1327 |
+
#: ../includes/class-sassy-social-share-widgets.php:475
|
1328 |
msgid "Right Offset"
|
1329 |
msgstr ""
|
1330 |
|
1331 |
+
#: ../includes/class-sassy-social-share-widgets.php:478
|
1332 |
msgid "Top Offset"
|
1333 |
msgstr ""
|
1334 |
|
1335 |
+
#: ../includes/class-sassy-social-share-widgets.php:518
|
1336 |
msgid "Sassy Social Share - Follow Icons"
|
1337 |
msgstr ""
|
1338 |
|
1339 |
+
#: ../includes/class-sassy-social-share-widgets.php:519
|
1340 |
msgid "These icons link to your Social Media accounts"
|
1341 |
msgstr ""
|
1342 |
|
1343 |
+
#: ../includes/class-sassy-social-share-widgets.php:735
|
1344 |
msgid "Type:"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
+
#: ../includes/class-sassy-social-share-widgets.php:738
|
1348 |
msgid "Standard"
|
1349 |
msgstr ""
|
1350 |
|
1351 |
+
#: ../includes/class-sassy-social-share-widgets.php:741
|
1352 |
msgid "Floating"
|
1353 |
msgstr ""
|
1354 |
|
1355 |
+
#: ../includes/class-sassy-social-share-widgets.php:746
|
1356 |
msgid "Top offset:"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
+
#: ../includes/class-sassy-social-share-widgets.php:750
|
1360 |
msgid "Alignment:"
|
1361 |
msgstr ""
|
1362 |
|
1363 |
+
#: ../includes/class-sassy-social-share-widgets.php:776
|
1364 |
msgid "Size of icons"
|
1365 |
msgstr ""
|
1366 |
|
1367 |
+
#: ../includes/class-sassy-social-share-widgets.php:778
|
1368 |
msgid "Icon Shape"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
+
#: ../includes/class-sassy-social-share-widgets.php:803
|
1372 |
msgid "Apply icon color and background color from Theme Selection section:"
|
1373 |
msgstr ""
|
1374 |
|
1375 |
+
#: ../includes/class-sassy-social-share-widgets.php:805
|
1376 |
msgid "No"
|
1377 |
msgstr ""
|
1378 |
|
1379 |
+
#: ../includes/class-sassy-social-share-widgets.php:806
|
1380 |
msgid "Yes, Standard Interface Theme"
|
1381 |
msgstr ""
|
1382 |
|
1383 |
+
#: ../includes/class-sassy-social-share-widgets.php:807
|
1384 |
msgid "Yes, Floating Interface Theme"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
+
#: ../includes/class-sassy-social-share-widgets.php:809
|
1388 |
msgid "Facebook URL:"
|
1389 |
msgstr ""
|
1390 |
|
1391 |
+
#: ../includes/class-sassy-social-share-widgets.php:812
|
1392 |
msgid "Twitter URL:"
|
1393 |
msgstr ""
|
1394 |
|
1395 |
+
#: ../includes/class-sassy-social-share-widgets.php:815
|
1396 |
msgid "Instagram URL:"
|
1397 |
msgstr ""
|
1398 |
|
1399 |
+
#: ../includes/class-sassy-social-share-widgets.php:818
|
1400 |
msgid "Pinterest URL:"
|
1401 |
msgstr ""
|
1402 |
|
1403 |
+
#: ../includes/class-sassy-social-share-widgets.php:821
|
1404 |
msgid "Behance URL:"
|
1405 |
msgstr ""
|
1406 |
|
1407 |
+
#: ../includes/class-sassy-social-share-widgets.php:824
|
1408 |
msgid "Flickr URL:"
|
1409 |
msgstr ""
|
1410 |
|
1411 |
+
#: ../includes/class-sassy-social-share-widgets.php:827
|
1412 |
msgid "Foursquare URL:"
|
1413 |
msgstr ""
|
1414 |
|
1415 |
+
#: ../includes/class-sassy-social-share-widgets.php:830
|
1416 |
msgid "Github URL:"
|
1417 |
msgstr ""
|
1418 |
|
1419 |
+
#: ../includes/class-sassy-social-share-widgets.php:833
|
1420 |
msgid "LinkedIn URL:"
|
1421 |
msgstr ""
|
1422 |
|
1423 |
+
#: ../includes/class-sassy-social-share-widgets.php:836
|
1424 |
msgid "LinkedIn Company URL:"
|
1425 |
msgstr ""
|
1426 |
|
1427 |
+
#: ../includes/class-sassy-social-share-widgets.php:839
|
1428 |
msgid "Medium URL:"
|
1429 |
msgstr ""
|
1430 |
|
1431 |
+
#: ../includes/class-sassy-social-share-widgets.php:842
|
1432 |
msgid "MeWe URL:"
|
1433 |
msgstr ""
|
1434 |
|
1435 |
+
#: ../includes/class-sassy-social-share-widgets.php:845
|
1436 |
msgid "Odnoklassniki URL:"
|
1437 |
msgstr ""
|
1438 |
|
1439 |
+
#: ../includes/class-sassy-social-share-widgets.php:848
|
1440 |
msgid "Snapchat URL:"
|
1441 |
msgstr ""
|
1442 |
|
1443 |
+
#: ../includes/class-sassy-social-share-widgets.php:851
|
1444 |
msgid "Telegram URL:"
|
1445 |
msgstr ""
|
1446 |
|
1447 |
+
#: ../includes/class-sassy-social-share-widgets.php:854
|
1448 |
msgid "Tumblr URL:"
|
1449 |
msgstr ""
|
1450 |
|
1451 |
+
#: ../includes/class-sassy-social-share-widgets.php:857
|
1452 |
msgid "Vimeo URL:"
|
1453 |
msgstr ""
|
1454 |
|
1455 |
+
#: ../includes/class-sassy-social-share-widgets.php:860
|
1456 |
msgid "Vkontakte URL:"
|
1457 |
msgstr ""
|
1458 |
|
1459 |
+
#: ../includes/class-sassy-social-share-widgets.php:863
|
1460 |
msgid "Whatsapp URL:"
|
1461 |
msgstr ""
|
1462 |
|
1463 |
+
#: ../includes/class-sassy-social-share-widgets.php:866
|
1464 |
msgid "Xing URL:"
|
1465 |
msgstr ""
|
1466 |
|
1467 |
+
#: ../includes/class-sassy-social-share-widgets.php:869
|
1468 |
msgid "Youtube URL:"
|
1469 |
msgstr ""
|
1470 |
|
1471 |
+
#: ../includes/class-sassy-social-share-widgets.php:872
|
1472 |
msgid "Youtube Channel URL:"
|
1473 |
msgstr ""
|
1474 |
|
1475 |
+
#: ../includes/class-sassy-social-share-widgets.php:875
|
1476 |
msgid "RSS Feed URL:"
|
1477 |
msgstr ""
|
1478 |
|
1479 |
+
#: ../public/class-sassy-social-share-public.php:313
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1480 |
msgid "Search for"
|
1481 |
msgstr ""
|
1482 |
|
1483 |
+
#: ../public/class-sassy-social-share-public.php:318
|
1484 |
+
#: ../public/class-sassy-social-share-public.php:320
|
1485 |
+
#: ../public/class-sassy-social-share-public.php:322
|
1486 |
msgid "Archives"
|
1487 |
msgstr ""
|
1488 |
|
1489 |
+
#: ../public/class-sassy-social-share-public.php:899
|
1490 |
+
#: ../public/class-sassy-social-share-public.php:1141
|
1491 |
msgid "Invalid request"
|
1492 |
msgstr ""
|
1493 |
|
1494 |
+
#: ../public/class-sassy-social-share-public.php:905
|
1495 |
msgid "Providers not selected"
|
1496 |
msgstr ""
|
public/class-sassy-social-share-public.php
CHANGED
@@ -27,7 +27,7 @@ class Sassy_Social_Share_Public {
|
|
27 |
*
|
28 |
* @since 1.0.0
|
29 |
*/
|
30 |
-
|
31 |
|
32 |
/**
|
33 |
* Variable to track number of times 'the_content' hook called at homepage.
|
@@ -106,674 +106,26 @@ class Sassy_Social_Share_Public {
|
|
106 |
if ( $post ) {
|
107 |
$sharing_meta = get_post_meta( $post->ID, '_heateor_sss_meta', true );
|
108 |
if ( is_front_page() || ! isset( $sharing_meta['sharing'] ) || $sharing_meta['sharing'] != 1 || ! isset( $sharing_meta['vertical_sharing'] ) || $sharing_meta['vertical_sharing'] != 1 ) {
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
if ( isset( $this->options['vertical_counts'] ) ) {
|
116 |
-
$inline_script .= isset( $this->options['vertical_counter_position'] ) && in_array( $this->options['vertical_counter_position'], array( 'inner_left', 'inner_right' ) ) ? 'var heateorSssReduceVerticalSvgWidth = true;' : '';
|
117 |
-
$inline_script .= ! isset( $this->options['vertical_counter_position'] ) || in_array( $this->options['vertical_counter_position'], array( 'inner_top', 'inner_bottom' ) ) ? 'var heateorSssReduceVerticalSvgHeight = true;' : '';
|
118 |
-
}
|
119 |
-
$inline_script .= 'var heateorSssUrlCountFetched = [], heateorSssSharesText = \''. htmlspecialchars(__('Shares', 'sassy-social-share'), ENT_QUOTES) .'\', heateorSssShareText = \''. htmlspecialchars(__('Share', 'sassy-social-share'), ENT_QUOTES) .'\';';
|
120 |
-
$inline_script .= 'function heateorSssPopup(e) {window.open(e,"popUpWindow","height=400,width=600,left=400,top=100,resizable,scrollbars,toolbar=0,personalbar=0,menubar=no,location=no,directories=no,status")}';
|
121 |
-
if ( $this->facebook_like_recommend_enabled() || $this->facebook_share_enabled() ) {
|
122 |
-
$inline_script .= 'function heateorSssInitiateFB() {FB.init({appId:"",channelUrl:"",status:!0,cookie:!0,xfbml:!0,version:"v3.0"})}window.fbAsyncInit=function() {heateorSssInitiateFB(),' . ( defined( 'HEATEOR_SOCIAL_SHARE_MYCRED_INTEGRATION_VERSION' ) && $this->facebook_like_recommend_enabled() ? 1 : 0 ) . '&&(FB.Event.subscribe("edge.create",function(e) {heateorSsmiMycredPoints("Facebook_like_recommend","",e?e:"")}),FB.Event.subscribe("edge.remove",function(e) {heateorSsmiMycredPoints("Facebook_like_recommend","",e?e:"","Minus point(s) for undoing Facebook like-recommend")}) ),'. ( defined( 'HEATEOR_SHARING_GOOGLE_ANALYTICS_VERSION' ) ? 1 : 0 ) .'&&(FB.Event.subscribe("edge.create",function(e) {heateorSsgaSocialPluginsTracking("Facebook","Like",e?e:"")}),FB.Event.subscribe("edge.remove",function(e) {heateorSsgaSocialPluginsTracking("Facebook","Unlike",e?e:"")}) )},function(e) {var n,i="facebook-jssdk",o=e.getElementsByTagName("script")[0];e.getElementById(i)||(n=e.createElement("script"),n.id=i,n.async=!0,n.src="//connect.facebook.net/'. ( $this->options['language'] ? $this->options['language'] : 'en_US' ) .'/sdk.js",o.parentNode.insertBefore(n,o) )}(document);';
|
123 |
-
}
|
124 |
-
if ( current_filter() == 'amp_post_template_head' ) {
|
125 |
-
// default post url
|
126 |
-
global $post;
|
127 |
-
$post_url = html_entity_decode( esc_url( $this->get_http_protocol() . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"] ) );
|
128 |
-
if ( $this->options['horizontal_target_url'] == 'default' ) {
|
129 |
-
$post_url = get_permalink( $post->ID );
|
130 |
-
if ( $post_url == '' ) {
|
131 |
-
$post_url = html_entity_decode( esc_url( $this->get_http_protocol() . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"] ) );
|
132 |
-
}
|
133 |
-
} elseif ( $this->options['horizontal_target_url'] == 'home' ) {
|
134 |
-
$post_url = home_url();
|
135 |
-
} elseif ( $this->options['horizontal_target_url'] == 'custom' ) {
|
136 |
-
$post_url = $this->options['horizontal_target_url_custom'] ? $this->options['horizontal_target_url_custom'] : get_permalink( $post->ID );
|
137 |
}
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
$post_title = $post->post_title;
|
142 |
-
|
143 |
-
$post_title = $this->sanitize_post_title( $post_title );
|
144 |
-
|
145 |
-
$inline_script .= 'var heateorSssAmpTargetUrl = \''. $post_url .'\';
|
146 |
-
heateorSssLoadEvent(
|
147 |
-
function(){
|
148 |
-
var moreIcons = document.getElementsByClassName("heateorSssMoreBackground");
|
149 |
-
for(var i = 0; i < moreIcons.length; i++){
|
150 |
-
moreIcons[i].onclick = function(){
|
151 |
-
heateorSssMoreSharingPopup(null, \''. ( $sharing_url ? $sharing_url : $post_url) .'\', \''. $post_title .'\', \''. $this->sanitize_post_title( $this->wpseo_twitter_title( $post ) ) .'\')
|
152 |
-
}
|
153 |
-
}
|
154 |
-
|
155 |
-
var printIcons = document.getElementsByClassName("heateorSssPrintBackground");
|
156 |
-
for(var i = 0; i < printIcons.length; i++){
|
157 |
-
printIcons[i].onclick = function(){
|
158 |
-
window.print();
|
159 |
-
}
|
160 |
-
}
|
161 |
-
|
162 |
-
var pinterestIcons = document.getElementsByClassName("heateorSssPinterestBackground");
|
163 |
-
for(var i = 0; i < pinterestIcons.length; i++){
|
164 |
-
pinterestIcons[i].onclick = function(){
|
165 |
-
var e = document.createElement(\'script\');e.setAttribute(\'type\',\'text/javascript\');e.setAttribute(\'charset\',\'UTF-8\');e.setAttribute(\'src\',\'//assets.pinterest.com/js/pinmarklet.js?r=\'+Math.random()*99999999);document.body.appendChild(e);
|
166 |
-
}
|
167 |
-
}
|
168 |
-
}
|
169 |
-
);
|
170 |
-
|
171 |
-
function heateorSssCapitaliseFirstLetter(e) {
|
172 |
-
return e.charAt(0).toUpperCase() + e.slice(1)
|
173 |
}
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
sharingServices[i].parentNode.style.display = \'block\';
|
183 |
-
//jQuery(this).parent().css(\'display\', \'block\');
|
184 |
-
} else {
|
185 |
-
sharingServices[i].parentNode.style.display = \'none\';
|
186 |
-
}
|
187 |
-
}
|
188 |
-
};
|
189 |
-
|
190 |
-
function heateorSssMoreSharingPopup(elem, postUrl, postTitle, twitterTitle){
|
191 |
-
postUrl = encodeURIComponent(postUrl);
|
192 |
-
concate = \'</ul></div><div class="footer-panel"><p></p></div></div>\';
|
193 |
-
var heateorSssMoreSharingServices = {
|
194 |
-
facebook: {
|
195 |
-
title: "Facebook",
|
196 |
-
locale: "en-US",
|
197 |
-
redirect_url: "http://www.facebook.com/sharer.php?u=" + postUrl + "&t=" + postTitle + "&v=3",
|
198 |
-
},
|
199 |
-
twitter: {
|
200 |
-
title: "Twitter",
|
201 |
-
locale: "en-US",
|
202 |
-
redirect_url: "http://twitter.com/intent/tweet?text=" + (twitterTitle ? twitterTitle : postTitle) + " " + postUrl,
|
203 |
-
},
|
204 |
-
linkedin: {
|
205 |
-
title: "Linkedin",
|
206 |
-
locale: "en-US",
|
207 |
-
redirect_url: "http://www.linkedin.com/shareArticle?mini=true&url=" + postUrl + "&title=" + postTitle,
|
208 |
-
},
|
209 |
-
pinterest: {
|
210 |
-
title: "Pinterest",
|
211 |
-
locale: "en-US",
|
212 |
-
redirect_url: "https://pinterest.com/pin/create/button/?url=" + postUrl + "&media=${media_link}&description=" + postTitle,
|
213 |
-
bookmarklet_url: "javascript:void((function(){var e=document.createElement(\'script\');e.setAttribute(\'type\',\'text/javascript\');e.setAttribute(\'charset\',\'UTF-8\');e.setAttribute(\'src\',\'//assets.pinterest.com/js/pinmarklet.js?r=\'+Math.random()*99999999);document.body.appendChild(e)})());"
|
214 |
-
},
|
215 |
-
CopyLink: {
|
216 |
-
title: "Copy Link",
|
217 |
-
locale: "en-US",
|
218 |
-
redirect_url: "",
|
219 |
-
bookmarklet_url: ""
|
220 |
-
},
|
221 |
-
Diaspora: {
|
222 |
-
title: "Diaspora",
|
223 |
-
locale: "en-US",
|
224 |
-
redirect_url: "https://joindiaspora.com/bookmarklet?url=" + postUrl + "&title=" + postTitle + "&v=1"
|
225 |
-
},
|
226 |
-
Douban: {
|
227 |
-
title: "Douban",
|
228 |
-
locale: "en-US",
|
229 |
-
redirect_url: "https://www.douban.com/share/service?name="+postTitle+"&href="+postUrl+"&image=&updated=&bm=&url="+postUrl+"&title="+postTitle+"&sel="
|
230 |
-
},
|
231 |
-
Draugiem: {
|
232 |
-
title: "Draugiem",
|
233 |
-
locale: "en-US",
|
234 |
-
redirect_url: "https://www.draugiem.lv/say/ext/add.php?link="+postUrl+"&title="+postTitle
|
235 |
-
},
|
236 |
-
Facebook_Messenger: {
|
237 |
-
title: "Facebook Messenger",
|
238 |
-
locale: "en-US",
|
239 |
-
redirect_url: "https://www.facebook.com/dialog/send?app_id=1904103319867886&display=popup&link="+postUrl+"&redirect_uri="+postUrl
|
240 |
-
},
|
241 |
-
Google_Classroom: {
|
242 |
-
title: "Google Classroom",
|
243 |
-
locale: "en-US",
|
244 |
-
redirect_url: "https://classroom.google.com/u/0/share?url="+postUrl
|
245 |
-
},
|
246 |
-
Kik: {
|
247 |
-
title: "Kik",
|
248 |
-
locale: "en-US",
|
249 |
-
redirect_url: "https://www.kik.com/send/article/?app_name=Share&text=&title="+postTitle+"&url="+postUrl
|
250 |
-
},
|
251 |
-
Papaly: {
|
252 |
-
title: "Papaly",
|
253 |
-
locale: "en-US",
|
254 |
-
redirect_url: "https://papaly.com/api/share.html?url="+postUrl+"&title="+postTitle
|
255 |
-
},
|
256 |
-
Polyvore: {
|
257 |
-
title: "Polyvore",
|
258 |
-
locale: "en-US",
|
259 |
-
bookmarklet_url: "javascript:(function(){function e(a){var c=window;if(c.PolyvoreClipper){c.PolyvoreClipper.run()}else{var b=a.createElement(\'script\');c._polyvoreMode=\'prod\';c._polyvoreHost=\'www.polyvore.com\';b.src=\'http://akwww.polyvorecdn.com/rsrc/clipper.js?\'+Math.floor((new Date()).getTime()/86400000);a.body.appendChild(b)}}try{e(document)}catch(g){}for(var f=0;f<frames.length;++f){var i=frames[f];try{if(i.frameElement.tagName==\'IFRAME\'){continue}if(i.innerWidth<400||i.innerHeight<400){continue}e(i.document)}catch(j){}}})();"
|
260 |
-
},
|
261 |
-
Refind: {
|
262 |
-
title: "Refind",
|
263 |
-
locale: "en-US",
|
264 |
-
redirect_url: "https://refind.com/?url="+postUrl
|
265 |
-
},
|
266 |
-
Skype: {
|
267 |
-
title: "Skype",
|
268 |
-
locale: "en-US",
|
269 |
-
redirect_url: "https://web.skype.com/share?url="+postUrl
|
270 |
-
},
|
271 |
-
SMS: {
|
272 |
-
title: "SMS",
|
273 |
-
locale: "en-US",
|
274 |
-
bookmarklet_url: "sms://?&body="+postTitle+" "+postUrl
|
275 |
-
},
|
276 |
-
Trello: {
|
277 |
-
title: "Trello",
|
278 |
-
locale: "en-US",
|
279 |
-
redirect_url: "https://trello.com/add-card?mode=popup&url="+postUrl+"&name="+postTitle+"&desc="
|
280 |
-
},
|
281 |
-
Viber: {
|
282 |
-
title: "Viber",
|
283 |
-
locale: "en-US",
|
284 |
-
bookmarklet_url: "viber://forward?text="+postTitle+" "+postUrl
|
285 |
-
},
|
286 |
-
Telegram: {
|
287 |
-
title: "Telegram",
|
288 |
-
locale: "en-US",
|
289 |
-
redirect_url: "https://telegram.me/share/url?url="+postUrl+"&text="+postTitle
|
290 |
-
},
|
291 |
-
yahoo_bookmarks: {
|
292 |
-
title: "Yahoo",
|
293 |
-
locale: "en-US",
|
294 |
-
redirect_url: "http://bookmarks.yahoo.com/toolbar/savebm?u=" + postUrl + "&t=" + postTitle,
|
295 |
-
},
|
296 |
-
email: {
|
297 |
-
title: "Email",
|
298 |
-
locale: "en-US",
|
299 |
-
redirect_url: "mailto:?subject=" + postTitle + "&body=Link: " + postUrl,
|
300 |
-
},
|
301 |
-
delicious: {
|
302 |
-
title: "Delicious",
|
303 |
-
locale: "en-US",
|
304 |
-
redirect_url: "http://delicious.com/save?url=" + postUrl + "&title=" + postTitle,
|
305 |
-
},
|
306 |
-
reddit: {
|
307 |
-
title: "Reddit",
|
308 |
-
locale: "en-US",
|
309 |
-
redirect_url: "http://reddit.com/submit?url=" + postUrl + "&title=" + postTitle,
|
310 |
-
},
|
311 |
-
float_it: {
|
312 |
-
title: "Float it",
|
313 |
-
locale: "en-US",
|
314 |
-
redirect_url: "http://www.designfloat.com/submit.php?url=" + postUrl + "&title=" + postTitle,
|
315 |
-
},
|
316 |
-
google_mail: {
|
317 |
-
title: "Google Gmail",
|
318 |
-
locale: "en-US",
|
319 |
-
redirect_url: "https://mail.google.com/mail/?ui=2&view=cm&fs=1&tf=1&su=" + postTitle + "&body=Link: " + postUrl,
|
320 |
-
},
|
321 |
-
google_bookmarks: {
|
322 |
-
title: "Google Bookmarks",
|
323 |
-
locale: "en-US",
|
324 |
-
redirect_url: "http://www.google.com/bookmarks/mark?op=edit&bkmk=" + postUrl + "&title=" + postTitle,
|
325 |
-
},
|
326 |
-
digg: {
|
327 |
-
title: "Digg",
|
328 |
-
locale: "en-US",
|
329 |
-
redirect_url: "http://digg.com/submit?phase=2&url=" + postUrl + "&title=" + postTitle,
|
330 |
-
},
|
331 |
-
printfriendly: {
|
332 |
-
title: "PrintFriendly",
|
333 |
-
locale: "en-US",
|
334 |
-
redirect_url: "http://www.printfriendly.com/print?url=" + postUrl,
|
335 |
-
},
|
336 |
-
print: {
|
337 |
-
title: "Print",
|
338 |
-
locale: "en-US",
|
339 |
-
redirect_url: "http://www.printfriendly.com/print?url=" + postUrl,
|
340 |
-
},
|
341 |
-
tumblr: {
|
342 |
-
title: "Tumblr",
|
343 |
-
locale: "en-US",
|
344 |
-
redirect_url: "http://www.tumblr.com/share?v=3&u=" + postUrl + "&t=" + postTitle,
|
345 |
-
bookmarklet_url: "javascript:var d=document,w=window,e=w.getSelection,k=d.getSelection,x=d.selection,s=(e?e():(k)?k():(x?x.createRange().text:0)),f=\'http://www.tumblr.com/share\',l=d.location,e=encodeURIComponent,p=\'?v=3&u=\'+e(l.href) +\'&t=\'+e(d.title) +\'&s=\'+e(s),u=f+p;try{if(!/^(.*\\.)?tumblr[^.]*$/.test(l.host))throw(0);tstbklt();}catch(z){a =function(){if(!w.open(u,\'t\',\'toolbar=0,resizable=0,status=1,width=450,height=430\'))l.href=u;};if(/Firefox/.test(navigator.userAgent))setTimeout(a,0);else a();}void(0);"
|
346 |
-
},
|
347 |
-
vk: {
|
348 |
-
title: "Vkontakte",
|
349 |
-
locale: "ru",
|
350 |
-
redirect_url: "https://vk.com/share.php?url=" + postUrl + "&title=" + postTitle,
|
351 |
-
},
|
352 |
-
evernote: {
|
353 |
-
title: "Evernote",
|
354 |
-
locale: "en-US",
|
355 |
-
redirect_url: "https://www.evernote.com/clip.action?url=" + postUrl + "&title=" + postTitle,
|
356 |
-
bookmarklet_url: "javascript:(function(){EN_CLIP_HOST=\'http://www.evernote.com\';try{var x=document.createElement(\'SCRIPT\');x.type=\'text/javascript\';x.src=EN_CLIP_HOST+\'/public/bookmarkClipper.js?\'+(new Date().getTime()/100000);document.getElementsByTagName(\'head\')[0].appendChild(x);}catch(e){location.href=EN_CLIP_HOST+\'/clip.action?url=\'+encodeURIComponent(location.href)+\'&title=\'+encodeURIComponent(document.title);}})();"
|
357 |
-
},
|
358 |
-
amazon_us_wish_list: {
|
359 |
-
title: "Amazon Wish List",
|
360 |
-
locale: "en-US",
|
361 |
-
redirect_url: "http://www.amazon.com/wishlist/add?u=" + postUrl + "&t=" + postTitle,
|
362 |
-
bookmarklet_url: "javascript:(function(){var w=window,l=w.location,d=w.document,s=d.createElement(\'script\'),e=encodeURIComponent,x=\'undefined\',u=\'http://www.amazon.com/gp/wishlist/add\';if(typeof s!=\'object\')l.href=u+\'?u=\'+e(l)+\'&t=\'+e(d.title);function g(){if(d.readyState&&d.readyState!=\'complete\'){setTimeout(g,200);}else{if(typeof AUWLBook==x)s.setAttribute(\'src\',u+\'.js?loc=\'+e(l)),d.body.appendChild(s);function f(){(typeof AUWLBook==x)?setTimeout(f,200):AUWLBook.showPopover();}f();}}g();}())"
|
363 |
-
},
|
364 |
-
wordpress_blog: {
|
365 |
-
title: "WordPress",
|
366 |
-
locale: "en-US",
|
367 |
-
redirect_url: "http://www.addtoany.com/ext/wordpress/press_this?linkurl=" + postUrl + "&linkname=" + postTitle,
|
368 |
-
},
|
369 |
-
whatsapp: {
|
370 |
-
title: "Whatsapp",
|
371 |
-
locale: "en-US",
|
372 |
-
bookmarklet_url: "whatsapp://send?text=" + postTitle + " " + postUrl,
|
373 |
-
},
|
374 |
-
diigo: {
|
375 |
-
title: "Diigo",
|
376 |
-
locale: "en-US",
|
377 |
-
redirect_url: "http://www.diigo.com/post?url=" + postUrl + "&title=" + postTitle,
|
378 |
-
},
|
379 |
-
yc_hacker_news: {
|
380 |
-
title: "Hacker News",
|
381 |
-
locale: "en-US",
|
382 |
-
redirect_url: "http://news.ycombinator.com/submitlink?u=" + postUrl + "&t=" + postTitle,
|
383 |
-
},
|
384 |
-
box_net: {
|
385 |
-
title: "Box.net",
|
386 |
-
locale: "en-US",
|
387 |
-
redirect_url: "https://www.box.net/api/1.0/import?url=" + postUrl + "&name=" + postTitle + "&import_as=link",
|
388 |
-
},
|
389 |
-
aol_mail: {
|
390 |
-
title: "AOL Mail",
|
391 |
-
locale: "en-US",
|
392 |
-
redirect_url: "http://webmail.aol.com/25045/aol/en-us/Mail/compose-message.aspx?subject=" + postTitle + "&body=" + postUrl,
|
393 |
-
},
|
394 |
-
yahoo_mail: {
|
395 |
-
title: "Yahoo Mail",
|
396 |
-
locale: "en-US",
|
397 |
-
redirect_url: "http://compose.mail.yahoo.com/?Subject=" + postTitle + "&body=Link: " + postUrl,
|
398 |
-
},
|
399 |
-
instapaper: {
|
400 |
-
title: "Instapaper",
|
401 |
-
locale: "en-US",
|
402 |
-
redirect_url: "http://www.instapaper.com/edit?url=" + postUrl + "&title=" + postTitle,
|
403 |
-
},
|
404 |
-
plurk: {
|
405 |
-
title: "Plurk",
|
406 |
-
locale: "en-US",
|
407 |
-
redirect_url: "http://www.plurk.com/m?content=" + postUrl + "&qualifier=shares",
|
408 |
-
},
|
409 |
-
wanelo: {
|
410 |
-
title: "Wanelo",
|
411 |
-
locale: "en-US",
|
412 |
-
redirect_url: "http://wanelo.com/p/post?bookmarklet=&images%5B%5D=&url=" + postUrl + "&title=" + postTitle + "&price=&shop=",
|
413 |
-
bookmarklet_url: "javascript:void ((function(url){if(!window.waneloBookmarklet){var productURL=encodeURIComponent(url),cacheBuster=Math.floor(Math.random()*1e3),element=document.createElement(\'script\');element.setAttribute(\'src\',\'//wanelo.com/bookmarklet/3/setup?*=\'+cacheBuster+\'&url=\'+productURL),element.onload=init,element.setAttribute(\'type\',\'text/javascript\'),document.getElementsByTagName(\'head\')[0].appendChild(element)}else init();function init(){window.waneloBookmarklet()}})(window.location.href))"
|
414 |
-
},
|
415 |
-
aim: {
|
416 |
-
title: "AIM",
|
417 |
-
locale: "en-US",
|
418 |
-
redirect_url: "http://share.aim.com/share/?url=" + postUrl + "&title=" + postTitle,
|
419 |
-
},
|
420 |
-
stumpedia: {
|
421 |
-
title: "Stumpedia",
|
422 |
-
locale: "en-US",
|
423 |
-
redirect_url: "http://www.stumpedia.com/submit?url=" + postUrl + "&title=" + postTitle,
|
424 |
-
},
|
425 |
-
viadeo: {
|
426 |
-
title: "Viadeo",
|
427 |
-
locale: "en-US",
|
428 |
-
redirect_url: "http://www.viadeo.com/shareit/share/?url=" + postUrl + "&title=" + postTitle,
|
429 |
-
},
|
430 |
-
yahoo_messenger: {
|
431 |
-
title: "Yahoo Messenger",
|
432 |
-
locale: "en-US",
|
433 |
-
redirect_url: "ymsgr:sendim?m=" + postUrl,
|
434 |
-
},
|
435 |
-
pinboard_in: {
|
436 |
-
title: "Pinboard",
|
437 |
-
locale: "en-US",
|
438 |
-
redirect_url: "http://pinboard.in/add?url=" + postUrl + "&title=" + postTitle,
|
439 |
-
},
|
440 |
-
blogger_post: {
|
441 |
-
title: "Blogger Post",
|
442 |
-
locale: "en-US",
|
443 |
-
redirect_url: "http://www.blogger.com/blog_this.pyra?t=&u=" + postUrl + "&l&n=" + postTitle,
|
444 |
-
},
|
445 |
-
typepad_post: {
|
446 |
-
title: "TypePad Post",
|
447 |
-
locale: "en-US",
|
448 |
-
redirect_url: "http://www.typepad.com/services/quickpost/post?v=2&qp_show=ac&qp_title=" + postTitle + "&qp_href=" + postUrl + "&qp_text=" + postTitle,
|
449 |
-
},
|
450 |
-
buffer: {
|
451 |
-
title: "Buffer",
|
452 |
-
locale: "en-US",
|
453 |
-
redirect_url: "http://bufferapp.com/add?url=" + postUrl + "&text=" + postTitle,
|
454 |
-
},
|
455 |
-
flipboard: {
|
456 |
-
title: "Flipboard",
|
457 |
-
locale: "en-US",
|
458 |
-
redirect_url: "https://share.flipboard.com/bookmarklet/popout?v=2&url=" + postUrl + "&title=" + postTitle,
|
459 |
-
},
|
460 |
-
mail: {
|
461 |
-
title: "Email",
|
462 |
-
locale: "en-US",
|
463 |
-
redirect_url: "mailto:?subject=" + postTitle + "&body=Link: " + postUrl,
|
464 |
-
},
|
465 |
-
pocket: {
|
466 |
-
title: "Pocket",
|
467 |
-
locale: "en-US",
|
468 |
-
redirect_url: "https://readitlaterlist.com/save?url=" + postUrl + "&title=" + postTitle,
|
469 |
-
},
|
470 |
-
fark: {
|
471 |
-
title: "Fark",
|
472 |
-
locale: "en-US",
|
473 |
-
redirect_url: "http://cgi.fark.com/cgi/fark/submit.pl?new_url=" + postUrl,
|
474 |
-
},
|
475 |
-
yummly: {
|
476 |
-
title: "Yummly",
|
477 |
-
locale: "en-US",
|
478 |
-
redirect_url: "http://www.yummly.com/urb/verify?url=" + postUrl + "&title=" + postTitle,
|
479 |
-
},
|
480 |
-
app_net: {
|
481 |
-
title: "App.net",
|
482 |
-
locale: "en-US",
|
483 |
-
redirect_url: "https://account.app.net/login/",
|
484 |
-
},
|
485 |
-
baidu: {
|
486 |
-
title: "Baidu",
|
487 |
-
locale: "en-US",
|
488 |
-
redirect_url: "http://cang.baidu.com/do/add?it=" + postTitle + "&iu=" + postUrl,
|
489 |
-
},
|
490 |
-
balatarin: {
|
491 |
-
title: "Balatarin",
|
492 |
-
locale: "en-US",
|
493 |
-
redirect_url: "https://www.balatarin.com/login",
|
494 |
-
},
|
495 |
-
bibSonomy: {
|
496 |
-
title: "BibSonomy",
|
497 |
-
locale: "en-US",
|
498 |
-
redirect_url: "http://www.bibsonomy.org/login",
|
499 |
-
},
|
500 |
-
Bitty_Browser: {
|
501 |
-
title: "Bitty Browser",
|
502 |
-
locale: "en-US",
|
503 |
-
redirect_url: "http://www.bitty.com/manual/?contenttype=&contentvalue=" + postUrl,
|
504 |
-
},
|
505 |
-
Blinklist: {
|
506 |
-
title: "Blinklist",
|
507 |
-
locale: "en-US",
|
508 |
-
redirect_url: "http://blinklist.com/blink?t=" + postTitle + "&d=&u=" + postUrl,
|
509 |
-
},
|
510 |
-
BlogMarks: {
|
511 |
-
title: "BlogMarks",
|
512 |
-
locale: "en-US",
|
513 |
-
redirect_url: "http://blogmarks.net/my/new.php?mini=1&simple=1&title=" + postTitle + "&url=" + postUrl,
|
514 |
-
},
|
515 |
-
Bookmarks_fr: {
|
516 |
-
title: "Bookmarks.fr",
|
517 |
-
locale: "en-US",
|
518 |
-
redirect_url: "http://www.bookmarks.fr/Connexion/?action=add&address=" + postUrl + "&title=" + postTitle,
|
519 |
-
},
|
520 |
-
BuddyMarks: {
|
521 |
-
title: "BuddyMarks",
|
522 |
-
locale: "en-US",
|
523 |
-
redirect_url: "http://buddymarks.com/login.php?bookmark_title=" + postTitle + "&bookmark_url=" + postUrl + "&bookmark_desc=&bookmark_tags=",
|
524 |
-
},
|
525 |
-
Care2_news: {
|
526 |
-
title: "Care2 News",
|
527 |
-
locale: "en-US",
|
528 |
-
redirect_url: "http://www.care2.com/passport/login.html?promoID=10&pg=http://www.care2.com/news/compose?sharehint=news&share[share_type]news&bookmarklet=Y&share[title]=" + postTitle + "&share[link_url]=" + postUrl + "&share[content]=",
|
529 |
-
},
|
530 |
-
CiteULike: {
|
531 |
-
title: "Cite U Like",
|
532 |
-
locale: "en-US",
|
533 |
-
redirect_url: "http://www.citeulike.org/posturl?url=" + postUrl + "&title=" + postTitle,
|
534 |
-
},
|
535 |
-
Diary_Ru: {
|
536 |
-
title: "Diary.Ru",
|
537 |
-
locale: "en-US",
|
538 |
-
redirect_url: "http://www.diary.ru/?newpost&title=" + postTitle + "&text=" + postUrl,
|
539 |
-
},
|
540 |
-
diHITT: {
|
541 |
-
title: "diHITT",
|
542 |
-
locale: "en-US",
|
543 |
-
redirect_url: "http://www.dihitt.com/submit?url=" + postUrl + "&title=" + postTitle,
|
544 |
-
},
|
545 |
-
dzone: {
|
546 |
-
title: "DZone",
|
547 |
-
locale: "en-US",
|
548 |
-
redirect_url: "http://www.dzone.com/links/add.html?url=" + postUrl + "&title=" + postTitle,
|
549 |
-
},
|
550 |
-
Folkd: {
|
551 |
-
title: "Folkd",
|
552 |
-
locale: "en-US",
|
553 |
-
redirect_url: "http://www.folkd.com/page/social-bookmarking.html?addurl=" + postUrl,
|
554 |
-
},
|
555 |
-
Hatena: {
|
556 |
-
title: "Hatena",
|
557 |
-
locale: "en-US",
|
558 |
-
redirect_url: "http://b.hatena.ne.jp/bookmarklet?url=" + postUrl + "&btitle=" + postTitle,
|
559 |
-
},
|
560 |
-
Jamespot: {
|
561 |
-
title: "Jamespot",
|
562 |
-
locale: "en-US",
|
563 |
-
redirect_url: "//my.jamespot.com/",
|
564 |
-
},
|
565 |
-
Kakao: {
|
566 |
-
title: "Kakao",
|
567 |
-
locale: "en-US",
|
568 |
-
redirect_url: "https://story.kakao.com/share?url=" + postUrl,
|
569 |
-
},
|
570 |
-
Kindle_It: {
|
571 |
-
title: "Kindle_It",
|
572 |
-
locale: "en-US",
|
573 |
-
redirect_url: "//fivefilters.org/kindle-it/send.php?url=" + postUrl,
|
574 |
-
},
|
575 |
-
Known: {
|
576 |
-
title: "Known",
|
577 |
-
locale: "en-US",
|
578 |
-
redirect_url: "https://withknown.com/share/?url=" + postUrl + "&title=" + postTitle,
|
579 |
-
},
|
580 |
-
Line: {
|
581 |
-
title: "Line",
|
582 |
-
locale: "en-US",
|
583 |
-
redirect_url: "line://msg/text/" + postTitle + "! " + postUrl,
|
584 |
-
},
|
585 |
-
LiveJournal: {
|
586 |
-
title: "LiveJournal",
|
587 |
-
locale: "en-US",
|
588 |
-
redirect_url: "http://www.livejournal.com/update.bml?subject=" + postTitle + "&event=" + postUrl,
|
589 |
-
},
|
590 |
-
Mail_Ru: {
|
591 |
-
title: "Mail.Ru",
|
592 |
-
locale: "en-US",
|
593 |
-
redirect_url: "http://connect.mail.ru/share?share_url=" + postUrl,
|
594 |
-
},
|
595 |
-
Mendeley: {
|
596 |
-
title: "Mendeley",
|
597 |
-
locale: "en-US",
|
598 |
-
redirect_url: "https://www.mendeley.com/sign-in/",
|
599 |
-
},
|
600 |
-
Meneame: {
|
601 |
-
title: "Meneame",
|
602 |
-
locale: "en-US",
|
603 |
-
redirect_url: "https://www.meneame.net/submit.php?url=" + postUrl,
|
604 |
-
},
|
605 |
-
MeWe: {
|
606 |
-
title: "MeWe",
|
607 |
-
locale: "en-US",
|
608 |
-
redirect_url: "https://mewe.com/share?link=" + postUrl,
|
609 |
-
},
|
610 |
-
Mix: {
|
611 |
-
title: "Mix",
|
612 |
-
locale: "en-US",
|
613 |
-
redirect_url: "https://mix.com/mixit?url=" + postUrl,
|
614 |
-
},
|
615 |
-
Mixi: {
|
616 |
-
title: "Mixi",
|
617 |
-
locale: "en-US",
|
618 |
-
redirect_url: "https://mixi.jp/share.pl?mode=login&u=" + postUrl,
|
619 |
-
},
|
620 |
-
MySpace: {
|
621 |
-
title: "MySpace",
|
622 |
-
locale: "en-US",
|
623 |
-
redirect_url: "https://myspace.com/post?u=" + encodeURIComponent(postUrl) + "&t=" + postTitle + "&l=3&c=" + postTitle,
|
624 |
-
},
|
625 |
-
Netlog: {
|
626 |
-
title: "Netlog",
|
627 |
-
locale: "en-US",
|
628 |
-
redirect_url: "http://www.netlog.com/go/manage/links/view=save&origin=external&url=" + postUrl + "&title=" + postTitle + "&description=",
|
629 |
-
},
|
630 |
-
Netvouz: {
|
631 |
-
title: "Netvouz",
|
632 |
-
locale: "en-US",
|
633 |
-
redirect_url: "http://www.netvouz.com/action/submitBookmark?url=" + postUrl + "&title=" + postTitle + "&popup=no&description=",
|
634 |
-
},
|
635 |
-
NewsVine: {
|
636 |
-
title: "NewsVine",
|
637 |
-
locale: "en-US",
|
638 |
-
redirect_url: "http://www.newsvine.com/_tools/seed?popoff=0&u=" + postUrl + "&h=" + postTitle,
|
639 |
-
},
|
640 |
-
NUjij: {
|
641 |
-
title: "NUjij",
|
642 |
-
locale: "en-US",
|
643 |
-
redirect_url: "http://www.nujij.nl/nieuw-bericht.2051051.lynkx?title=" + postTitle + "&url=" + postUrl + "&bericht=&topic=",
|
644 |
-
},
|
645 |
-
Odnoklassniki: {
|
646 |
-
title: "Odnoklassniki",
|
647 |
-
locale: "en-US",
|
648 |
-
redirect_url: "https://connect.ok.ru/dk?cmd=WidgetSharePreview&st.cmd=WidgetSharePreview&st.shareUrl=" + postUrl + "&st.client_id=-1",
|
649 |
-
},
|
650 |
-
Oknotizie: {
|
651 |
-
title: "Oknotizie",
|
652 |
-
locale: "en-US",
|
653 |
-
redirect_url: "//oknotizie.virgilio.it/post?url=" + postUrl + "&title=" + postTitle,
|
654 |
-
},
|
655 |
-
Outlook_com: {
|
656 |
-
title: "Outlook.com",
|
657 |
-
locale: "en-US",
|
658 |
-
redirect_url: "https://mail.live.com/default.aspx?rru=compose?subject=" + postTitle + "&body=" + postUrl + "&lc=1033&id=64855&mkt=en-us&cbcxt=mai",
|
659 |
-
},
|
660 |
-
Protopage_Bookmarks: {
|
661 |
-
title: "Protopage_Bookmarks",
|
662 |
-
locale: "en-US",
|
663 |
-
redirect_url: "http://www.protopage.com/add-button-site?url=" + postUrl + "&label=&type=page",
|
664 |
-
},
|
665 |
-
Pusha: {
|
666 |
-
title: "Pusha",
|
667 |
-
locale: "en-US",
|
668 |
-
redirect_url: "//www.pusha.se/posta?url=" + postUrl,
|
669 |
-
},
|
670 |
-
Qzone: {
|
671 |
-
title: "Qzone",
|
672 |
-
locale: "en-US",
|
673 |
-
redirect_url: "http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url=" + postUrl,
|
674 |
-
},
|
675 |
-
Rediff_MyPage: {
|
676 |
-
title: "Rediff MyPage",
|
677 |
-
locale: "en-US",
|
678 |
-
redirect_url: "//share.rediff.com/bookmark/addbookmark?bookmarkurl=" + postUrl + "&title=" + postTitle,
|
679 |
-
},
|
680 |
-
Renren: {
|
681 |
-
title: "Renren",
|
682 |
-
locale: "en-US",
|
683 |
-
redirect_url: "//www.connect.renren.com/share/sharer?url=" + postUrl + "&title=" + postTitle,
|
684 |
-
},
|
685 |
-
Segnalo: {
|
686 |
-
title: "Segnalo",
|
687 |
-
locale: "en-US",
|
688 |
-
redirect_url: "http://segnalo.virgilio.it/post.html.php?url=" + postUrl + "&title=" + postTitle,
|
689 |
-
},
|
690 |
-
Sina_Weibo: {
|
691 |
-
title: "Sina Weibo",
|
692 |
-
locale: "en-US",
|
693 |
-
redirect_url: "//service.weibo.com/share/share.php?url=" + postUrl + "&title=" + postTitle,
|
694 |
-
},
|
695 |
-
SiteJot: {
|
696 |
-
title: "SiteJot",
|
697 |
-
locale: "en-US",
|
698 |
-
redirect_url: "http://www.sitejot.com/loginform.php?iSiteAdd=&iSiteDes=",
|
699 |
-
},
|
700 |
-
Slashdot: {
|
701 |
-
title: "Slashdot",
|
702 |
-
locale: "en-US",
|
703 |
-
redirect_url: "//slashdot.org/submission?url=" + postUrl,
|
704 |
-
},
|
705 |
-
Svejo: {
|
706 |
-
title: "Svejo",
|
707 |
-
locale: "en-US",
|
708 |
-
redirect_url: "https://svejo.net/story/submit_by_url?url=" + postUrl + "&title=" + postTitle + "&summary=",
|
709 |
-
},
|
710 |
-
Symbaloo_Feeds: {
|
711 |
-
title: "Symbaloo_Feeds",
|
712 |
-
locale: "en-US",
|
713 |
-
redirect_url: "//www.symbaloo.com/",
|
714 |
-
},
|
715 |
-
Tuenti: {
|
716 |
-
title: "Tuenti",
|
717 |
-
locale: "en-US",
|
718 |
-
redirect_url: "https://www.tuenti.com/share?p=b5dd6602&url=" + postUrl,
|
719 |
-
},
|
720 |
-
Twiddla: {
|
721 |
-
title: "Twiddla",
|
722 |
-
locale: "en-US",
|
723 |
-
redirect_url: "//www.twiddla.com/New.aspx?url=" + postUrl + "&title=" + postTitle,
|
724 |
-
},
|
725 |
-
Webnews: {
|
726 |
-
title: "Webnews",
|
727 |
-
locale: "en-US",
|
728 |
-
redirect_url: "//www.webnews.de/login",
|
729 |
-
},
|
730 |
-
Wykop: {
|
731 |
-
title: "Wykop",
|
732 |
-
locale: "en-US",
|
733 |
-
redirect_url: "//www.wykop.pl/dodaj?url=" + postUrl + "&title=" + postTitle,
|
734 |
-
},
|
735 |
-
Yoolink: {
|
736 |
-
title: "Yoolink",
|
737 |
-
locale: "en-US",
|
738 |
-
redirect_url: "//yoolink.to/addorshare?url_value=" + postUrl + "&title=" + postTitle,
|
739 |
-
},
|
740 |
-
YouMob: {
|
741 |
-
title: "YouMob",
|
742 |
-
locale: "en-US",
|
743 |
-
redirect_url: "//youmob.com/startmob.aspx?cookietest=true&mob=" + postUrl,
|
744 |
-
}
|
745 |
-
}
|
746 |
-
var heateorSssMoreSharingServicesHtml = \'<button id="heateor_sss_sharing_popup_close" class="close-button separated"><img src="\'+ heateorSssCloseIconPath +\'" /></button><div id="heateor_sss_sharing_more_content" data-href="\'+ decodeURIComponent(postUrl) +\'"><div class="filter"><input type="text" onkeyup="heateorSssFilterSharing(this.value.trim())" placeholder="Search" class="search"></div><div class="all-services"><ul class="mini">\';
|
747 |
-
for(var i in heateorSssMoreSharingServices){
|
748 |
-
var tempTitle = heateorSssCapitaliseFirstLetter(heateorSssMoreSharingServices[i].title.replace(/[_. ]/g, ""));
|
749 |
-
heateorSssMoreSharingServicesHtml += \'<li><a rel="nofollow" class="heateorSss\'+i+\'Share" title="\'+ heateorSssMoreSharingServices[i].title +\'" alt="\'+ heateorSssMoreSharingServices[i].title +\'" \';
|
750 |
-
if(heateorSssMoreSharingServices[i].bookmarklet_url){
|
751 |
-
heateorSssMoreSharingServicesHtml += \'href="\' + heateorSssMoreSharingServices[i].bookmarklet_url + \'" \';
|
752 |
-
}else if(heateorSssMoreSharingServices[i].redirect_url){
|
753 |
-
heateorSssMoreSharingServicesHtml += \'onclick="heateorSssPopup(\'\' + heateorSssMoreSharingServices[i].redirect_url + \'\')" href="javascript:void(0)" \';
|
754 |
-
}else{
|
755 |
-
heateorSssMoreSharingServicesHtml += \'href="javascript:void(0)" \';
|
756 |
-
}
|
757 |
-
heateorSssMoreSharingServicesHtml += \'"><i style="width:22px;height:22px" title="\'+ heateorSssMoreSharingServices[i].title +\'" class="heateorSssSharing heateorSss\' + tempTitle + \'Background"><ss style="display:block;width:100%;height:100%;" class="heateorSssSharingSvg heateorSss\' + tempTitle + \'Svg"></ss></i>\' + heateorSssMoreSharingServices[i].title + \'</a></li>\';
|
758 |
-
}
|
759 |
-
heateorSssMoreSharingServicesHtml += concate;
|
760 |
-
|
761 |
-
var mainDiv = document.createElement(\'div\');
|
762 |
-
mainDiv.innerHTML = heateorSssMoreSharingServicesHtml;
|
763 |
-
mainDiv.setAttribute(\'id\', \'heateor_sss_sharing_more_providers\');
|
764 |
-
var bgDiv = document.createElement(\'div\');
|
765 |
-
bgDiv.setAttribute(\'id\', \'heateor_sss_popup_bg\');
|
766 |
-
document.body.appendChild(mainDiv);
|
767 |
-
document.body.appendChild(bgDiv);
|
768 |
-
document.getElementById(\'heateor_sss_sharing_popup_close\').onclick = function(){
|
769 |
-
mainDiv.parentNode.removeChild(mainDiv);
|
770 |
-
bgDiv.parentNode.removeChild(bgDiv);
|
771 |
-
}
|
772 |
-
}';
|
773 |
}
|
774 |
-
$inline_script .= ';var heateorSssWhatsappShareAPI = "' . $this->whatsapp_share_api() . '";';
|
775 |
-
wp_enqueue_script( 'heateor_sss_sharing_js', plugins_url( 'js/sassy-social-share-public.js', __FILE__ ), array( 'jquery' ), $this->version, $in_footer );
|
776 |
-
wp_add_inline_script( 'heateor_sss_sharing_js', $inline_script, $position = 'before' );
|
777 |
}
|
778 |
}
|
779 |
}
|
@@ -784,7 +136,7 @@ class Sassy_Social_Share_Public {
|
|
784 |
*
|
785 |
* @since 3.2.13
|
786 |
*/
|
787 |
-
|
788 |
|
789 |
if ( isset( $_SERVER['HTTP_USER_AGENT'] ) ) {
|
790 |
// detect the device for Whatsapp share API
|
@@ -810,7 +162,7 @@ class Sassy_Social_Share_Public {
|
|
810 |
*
|
811 |
* @since 1.0.0
|
812 |
*/
|
813 |
-
|
814 |
|
815 |
if ( ( isset( $this->options['hor_enable'] ) && isset( $this->options['horizontal_re_providers'] ) && ( in_array( 'facebook_like', $this->options['horizontal_re_providers'] ) || in_array( 'facebook_recommend', $this->options['horizontal_re_providers'] ) ) ) || ( isset( $this->options['vertical_enable'] ) && isset( $this->options['vertical_re_providers'] ) && ( in_array( 'facebook_like', $this->options['vertical_re_providers'] ) || in_array( 'facebook_recommend', $this->options['vertical_re_providers'] ) ) ) ) {
|
816 |
return true;
|
@@ -825,7 +177,7 @@ class Sassy_Social_Share_Public {
|
|
825 |
*
|
826 |
* @since 2.4
|
827 |
*/
|
828 |
-
|
829 |
|
830 |
if ( ( isset( $this->options['hor_enable'] ) && isset( $this->options['horizontal_re_providers'] ) && ( in_array( 'facebook_share', $this->options['horizontal_re_providers'] ) ) ) || ( isset( $this->options['vertical_enable'] ) && isset( $this->options['vertical_re_providers'] ) && ( in_array( 'facebook_share', $this->options['vertical_re_providers'] ) ) ) ) {
|
831 |
return true;
|
27 |
*
|
28 |
* @since 1.0.0
|
29 |
*/
|
30 |
+
public $version;
|
31 |
|
32 |
/**
|
33 |
* Variable to track number of times 'the_content' hook called at homepage.
|
106 |
if ( $post ) {
|
107 |
$sharing_meta = get_post_meta( $post->ID, '_heateor_sss_meta', true );
|
108 |
if ( is_front_page() || ! isset( $sharing_meta['sharing'] ) || $sharing_meta['sharing'] != 1 || ! isset( $sharing_meta['vertical_sharing'] ) || $sharing_meta['vertical_sharing'] != 1 ) {
|
109 |
+
if ( ( ( isset( $this->options['home'] ) || isset( $this->options['vertical_home'] ) ) && is_front_page() ) || ( ( isset( $this->options['category'] ) || isset($this->options['vertical_category'] ) ) && is_category() ) ||( ( isset( $this->options['archive'] ) || isset( $this->options['vertical_archive'] ) ) && is_archive() ) || ( ( isset( $this->options['post'] ) || isset( $this->options['vertical_post'] ) ) && is_single() && isset( $post->post_type ) && $post->post_type == 'post' ) || ( ( isset( $this->options['page'] ) || isset( $this->options['vertical_page'] ) ) && is_page() && isset( $post->post_type ) && $post->post_type == 'page' ) || ( ( isset( $this->options['excerpt'] ) || isset( $this->options['vertical_excerpt'] ) ) && ( is_home() || current_filter() == 'the_excerpt' ) ) || ( ( isset( $this->options['bb_forum'] ) || isset( $this->options['vertical_bb_forum'] ) ) && current_filter() == 'bbp_template_before_single_forum' ) || ( ( isset( $this->options['bb_topic'] ) || isset( $this->options['vertical_bb_topic'] ) ) && in_array( current_filter(), array( 'bbp_template_before_single_topic', 'bbp_template_before_lead_topic' ) ) ) || ( current_filter() == 'bp_before_group_header' && ( isset( $this->options['bp_group'] ) || isset( $this->options['vertical_bb_group'] ) ) ) ) {
|
110 |
+
$inline_script .= 'var heateorSssSharingAjaxUrl = \''. get_admin_url() .'admin-ajax.php\', heateorSssCloseIconPath = \''. plugins_url( '../images/close.png', __FILE__ ) .'\', heateorSssPluginIconPath = \''. plugins_url( '../images/logo.png', __FILE__ ) .'\', heateorSssHorizontalSharingCountEnable = '. ( isset( $this->options['hor_enable'] ) && ( isset( $this->options['horizontal_counts'] ) || isset( $this->options['horizontal_total_shares'] ) ) ? 1 : 0 ) .', heateorSssVerticalSharingCountEnable = '. ( isset( $this->options['vertical_enable'] ) && ( isset( $this->options['vertical_counts'] ) || isset( $this->options['vertical_total_shares'] ) ) ? 1 : 0 ) .', heateorSssSharingOffset = '. ( isset( $this->options['alignment'] ) && $this->options['alignment'] != '' && isset( $this->options[$this->options['alignment'].'_offset'] ) && $this->options[$this->options['alignment'].'_offset'] != '' ? $this->options[$this->options['alignment'].'_offset'] : 0 ) . '; var heateorSssMobileStickySharingEnabled = ' . ( isset( $this->options['vertical_enable'] ) && isset( $this->options['bottom_mobile_sharing'] ) && $this->options['horizontal_screen_width'] != '' ? 1 : 0 ) . ';';
|
111 |
+
$inline_script .= 'var heateorSssCopyLinkMessage = "' . htmlspecialchars( __( 'Link copied.', 'sassy-social-share' ), ENT_QUOTES ) . '";';
|
112 |
+
if ( isset( $this->options['horizontal_counts'] ) && isset( $this->options['horizontal_counter_position'] ) ) {
|
113 |
+
$inline_script .= in_array( $this->options['horizontal_counter_position'], array( 'inner_left', 'inner_right' ) ) ? 'var heateorSssReduceHorizontalSvgWidth = true;' : '';
|
114 |
+
$inline_script .= in_array( $this->options['horizontal_counter_position'], array( 'inner_top', 'inner_bottom' ) ) ? 'var heateorSssReduceHorizontalSvgHeight = true;' : '';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
115 |
}
|
116 |
+
if ( isset( $this->options['vertical_counts'] ) ) {
|
117 |
+
$inline_script .= isset( $this->options['vertical_counter_position'] ) && in_array( $this->options['vertical_counter_position'], array( 'inner_left', 'inner_right' ) ) ? 'var heateorSssReduceVerticalSvgWidth = true;' : '';
|
118 |
+
$inline_script .= ! isset( $this->options['vertical_counter_position'] ) || in_array( $this->options['vertical_counter_position'], array( 'inner_top', 'inner_bottom' ) ) ? 'var heateorSssReduceVerticalSvgHeight = true;' : '';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
119 |
}
|
120 |
+
$inline_script .= 'var heateorSssUrlCountFetched = [], heateorSssSharesText = \''. htmlspecialchars(__('Shares', 'sassy-social-share'), ENT_QUOTES) .'\', heateorSssShareText = \''. htmlspecialchars(__('Share', 'sassy-social-share'), ENT_QUOTES) .'\';';
|
121 |
+
$inline_script .= 'function heateorSssPopup(e) {window.open(e,"popUpWindow","height=400,width=600,left=400,top=100,resizable,scrollbars,toolbar=0,personalbar=0,menubar=no,location=no,directories=no,status")}';
|
122 |
+
if ( $this->facebook_like_recommend_enabled() || $this->facebook_share_enabled() ) {
|
123 |
+
$inline_script .= 'function heateorSssInitiateFB() {FB.init({appId:"",channelUrl:"",status:!0,cookie:!0,xfbml:!0,version:"v3.0"})}window.fbAsyncInit=function() {heateorSssInitiateFB(),' . ( defined( 'HEATEOR_SOCIAL_SHARE_MYCRED_INTEGRATION_VERSION' ) && $this->facebook_like_recommend_enabled() ? 1 : 0 ) . '&&(FB.Event.subscribe("edge.create",function(e) {heateorSsmiMycredPoints("Facebook_like_recommend","",e?e:"")}),FB.Event.subscribe("edge.remove",function(e) {heateorSsmiMycredPoints("Facebook_like_recommend","",e?e:"","Minus point(s) for undoing Facebook like-recommend")}) ),'. ( defined( 'HEATEOR_SHARING_GOOGLE_ANALYTICS_VERSION' ) ? 1 : 0 ) .'&&(FB.Event.subscribe("edge.create",function(e) {heateorSsgaSocialPluginsTracking("Facebook","Like",e?e:"")}),FB.Event.subscribe("edge.remove",function(e) {heateorSsgaSocialPluginsTracking("Facebook","Unlike",e?e:"")}) )},function(e) {var n,i="facebook-jssdk",o=e.getElementsByTagName("script")[0];e.getElementById(i)||(n=e.createElement("script"),n.id=i,n.async=!0,n.src="//connect.facebook.net/'. ( $this->options['language'] ? $this->options['language'] : 'en_US' ) .'/sdk.js",o.parentNode.insertBefore(n,o) )}(document);';
|
124 |
+
}
|
125 |
+
$inline_script .= ';var heateorSssWhatsappShareAPI = "' . $this->whatsapp_share_api() . '";';
|
126 |
+
wp_enqueue_script( 'heateor_sss_sharing_js', plugins_url( 'js/sassy-social-share-public.js', __FILE__ ), array( 'jquery' ), $this->version, $in_footer );
|
127 |
+
wp_add_inline_script( 'heateor_sss_sharing_js', $inline_script, $position = 'before' );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
128 |
}
|
|
|
|
|
|
|
129 |
}
|
130 |
}
|
131 |
}
|
136 |
*
|
137 |
* @since 3.2.13
|
138 |
*/
|
139 |
+
public function whatsapp_share_api() {
|
140 |
|
141 |
if ( isset( $_SERVER['HTTP_USER_AGENT'] ) ) {
|
142 |
// detect the device for Whatsapp share API
|
162 |
*
|
163 |
* @since 1.0.0
|
164 |
*/
|
165 |
+
public function facebook_like_recommend_enabled() {
|
166 |
|
167 |
if ( ( isset( $this->options['hor_enable'] ) && isset( $this->options['horizontal_re_providers'] ) && ( in_array( 'facebook_like', $this->options['horizontal_re_providers'] ) || in_array( 'facebook_recommend', $this->options['horizontal_re_providers'] ) ) ) || ( isset( $this->options['vertical_enable'] ) && isset( $this->options['vertical_re_providers'] ) && ( in_array( 'facebook_like', $this->options['vertical_re_providers'] ) || in_array( 'facebook_recommend', $this->options['vertical_re_providers'] ) ) ) ) {
|
168 |
return true;
|
177 |
*
|
178 |
* @since 2.4
|
179 |
*/
|
180 |
+
public function facebook_share_enabled() {
|
181 |
|
182 |
if ( ( isset( $this->options['hor_enable'] ) && isset( $this->options['horizontal_re_providers'] ) && ( in_array( 'facebook_share', $this->options['horizontal_re_providers'] ) ) ) || ( isset( $this->options['vertical_enable'] ) && isset( $this->options['vertical_re_providers'] ) && ( in_array( 'facebook_share', $this->options['vertical_re_providers'] ) ) ) ) {
|
183 |
return true;
|
public/js/sassy-social-share-public.js
CHANGED
@@ -514,7 +514,7 @@ function heateorSssMoreSharingPopup(elem, postUrl, postTitle, twitterTitle){
|
|
514 |
locale: "en-US",
|
515 |
redirect_url: "//yoolink.to/addorshare?url_value=" + postUrl + "&title=" + postTitle,
|
516 |
}
|
517 |
-
}
|
518 |
var heateorSssMoreSharingServicesHtml = '<button id="heateor_sss_sharing_popup_close" class="close-button separated"><img src="'+ heateorSssCloseIconPath +'" /></button><div id="heateor_sss_sharing_more_content" data-href="'+ decodeURIComponent(postUrl) +'"><div class="filter"><input type="text" onkeyup="heateorSssFilterSharing(this.value.trim())" placeholder="Search" class="search"></div><div class="all-services"><ul class="mini">';
|
519 |
for(var i in heateorSssMoreSharingServices){
|
520 |
var tempTitle = heateorSssCapitaliseFirstLetter(heateorSssMoreSharingServices[i].title.replace(/[_. ]/g, ""));
|
514 |
locale: "en-US",
|
515 |
redirect_url: "//yoolink.to/addorshare?url_value=" + postUrl + "&title=" + postTitle,
|
516 |
}
|
517 |
+
};
|
518 |
var heateorSssMoreSharingServicesHtml = '<button id="heateor_sss_sharing_popup_close" class="close-button separated"><img src="'+ heateorSssCloseIconPath +'" /></button><div id="heateor_sss_sharing_more_content" data-href="'+ decodeURIComponent(postUrl) +'"><div class="filter"><input type="text" onkeyup="heateorSssFilterSharing(this.value.trim())" placeholder="Search" class="search"></div><div class="all-services"><ul class="mini">';
|
519 |
for(var i in heateorSssMoreSharingServices){
|
520 |
var tempTitle = heateorSssCapitaliseFirstLetter(heateorSssMoreSharingServices[i].title.replace(/[_. ]/g, ""));
|
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.3
|
7 |
-
Stable tag: 3.3.
|
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.3.4 [6 November 2019] =
|
127 |
[Bugfix] Fixed XSS vulnerability on "heateor_sss_sharing_count" AJAX action
|
128 |
|
@@ -841,4 +846,9 @@ Yes, we can help you with it. Just drop an email at support[at]heateor[dot]com
|
|
841 |
[Bugfix] Changing Alignment of floating follow icons was not changing the label of offset option right below that in "Sassy Social Share - Follow Icons" widget
|
842 |
|
843 |
= 3.3.4 [6 November 2019] =
|
844 |
-
[Bugfix] Fixed XSS vulnerability on "heateor_sss_sharing_count" AJAX action
|
|
|
|
|
|
|
|
|
|
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.3
|
7 |
+
Stable tag: 3.3.5
|
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.3.5 [27 November 2019] =
|
127 |
+
[Improvement] Javascript is being loaded only at the webpages where social share icons are integrated
|
128 |
+
[Improvement] Admin UI improvements (<a href="https://www.heateor.com/comparison-between-sassy-social-share-pro-and-premium/">Pro and Premium</a> versions now available)
|
129 |
+
[Bugfix] "Load Javascript files in footer" option was coming twice at plugin options page
|
130 |
+
|
131 |
= 3.3.4 [6 November 2019] =
|
132 |
[Bugfix] Fixed XSS vulnerability on "heateor_sss_sharing_count" AJAX action
|
133 |
|
846 |
[Bugfix] Changing Alignment of floating follow icons was not changing the label of offset option right below that in "Sassy Social Share - Follow Icons" widget
|
847 |
|
848 |
= 3.3.4 [6 November 2019] =
|
849 |
+
[Bugfix] Fixed XSS vulnerability on "heateor_sss_sharing_count" AJAX action
|
850 |
+
|
851 |
+
= 3.3.5 [27 November 2019] =
|
852 |
+
[Improvement] Javascript is being loaded only at the webpages where social share icons are integrated
|
853 |
+
[Improvement] Admin UI improvements (<a href="https://www.heateor.com/comparison-between-sassy-social-share-pro-and-premium/">Pro and Premium</a> versions now available)
|
854 |
+
[Bugfix] "Load Javascript files in footer" option was coming twice at plugin options page
|
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.3.
|
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.3.
|
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.3.5
|
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.3.5' );
|
25 |
define( 'HEATEOR_SSS_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
|
26 |
|
27 |
// plugin core class object
|