Version Description
Please upgrade
Download this release
Release Info
Developer | socialdude |
Plugin | Social Media Share Buttons & Social Sharing Icons |
Version | 2.3.0 |
Comparing to | |
See all releases |
Code changes from version 2.2.9 to 2.3.0
- analyst/src/Account/Account.php +7 -3
- analyst/src/helpers.php +8 -5
- analyst/templates/forms/install.php +4 -3
- analyst/version.php +1 -1
- libs/sfsi_install_uninstall.php +1 -1
- readme.txt +8 -3
- ultimate_social_media_icons.php +2 -2
- views/sfsi_option_view1.php +5 -5
- views/sfsi_option_view2.php +11 -11
- views/sfsi_option_view4.php +3 -3
- views/sfsi_option_view5.php +9 -8
- views/sfsi_option_view6.php +3 -3
- views/sfsi_option_view7.php +3 -3
- views/sfsi_option_view8.php +3 -3
- views/subviews/que4/animatethem.php +1 -1
analyst/src/Account/Account.php
CHANGED
@@ -232,6 +232,8 @@ class Account implements TrackerContract
|
|
232 |
$this->setIsInstalled(true);
|
233 |
|
234 |
AccountDataFactory::syncData();
|
|
|
|
|
235 |
}
|
236 |
|
237 |
/**
|
@@ -258,7 +260,7 @@ class Account implements TrackerContract
|
|
258 |
|
259 |
AccountDataFactory::syncData();
|
260 |
|
261 |
-
|
262 |
}
|
263 |
|
264 |
/**
|
@@ -300,7 +302,7 @@ class Account implements TrackerContract
|
|
300 |
|
301 |
AccountDataFactory::syncData();
|
302 |
|
303 |
-
|
304 |
}
|
305 |
|
306 |
/**
|
@@ -353,7 +355,7 @@ class Account implements TrackerContract
|
|
353 |
$notificationId
|
354 |
);
|
355 |
|
356 |
-
|
357 |
}
|
358 |
|
359 |
/**
|
@@ -421,6 +423,8 @@ class Account implements TrackerContract
|
|
421 |
$factory->remove($confirmationNotificationId);
|
422 |
|
423 |
AccountDataFactory::syncData();
|
|
|
|
|
424 |
}
|
425 |
|
426 |
/**
|
232 |
$this->setIsInstalled(true);
|
233 |
|
234 |
AccountDataFactory::syncData();
|
235 |
+
|
236 |
+
wp_send_json_success();
|
237 |
}
|
238 |
|
239 |
/**
|
260 |
|
261 |
AccountDataFactory::syncData();
|
262 |
|
263 |
+
wp_send_json_success();
|
264 |
}
|
265 |
|
266 |
/**
|
302 |
|
303 |
AccountDataFactory::syncData();
|
304 |
|
305 |
+
wp_send_json_success();
|
306 |
}
|
307 |
|
308 |
/**
|
355 |
$notificationId
|
356 |
);
|
357 |
|
358 |
+
wp_send_json_success();
|
359 |
}
|
360 |
|
361 |
/**
|
423 |
$factory->remove($confirmationNotificationId);
|
424 |
|
425 |
AccountDataFactory::syncData();
|
426 |
+
|
427 |
+
wp_send_json_success();
|
428 |
}
|
429 |
|
430 |
/**
|
analyst/src/helpers.php
CHANGED
@@ -27,7 +27,11 @@ if (! function_exists('analyst_assets_url')) {
|
|
27 |
{
|
28 |
$absolutePath = analyst_assets_path($file);
|
29 |
|
30 |
-
|
|
|
|
|
|
|
|
|
31 |
|
32 |
$relativePath = str_replace( $contentDir, '', $absolutePath);
|
33 |
|
@@ -69,11 +73,10 @@ if (! function_exists('analyst_require_template')) {
|
|
69 |
if (! function_exists('dd')) {
|
70 |
/**
|
71 |
* Dump some data
|
72 |
-
*
|
73 |
-
* @param array $params
|
74 |
*/
|
75 |
-
function dd (
|
76 |
{
|
77 |
-
|
|
|
78 |
}
|
79 |
}
|
27 |
{
|
28 |
$absolutePath = analyst_assets_path($file);
|
29 |
|
30 |
+
// We can always rely on WP_PLUGIN_DIR, because that's where
|
31 |
+
// wordpress install it's plugin's. So we remove last segment
|
32 |
+
// of that path to get the content dir AKA directly where
|
33 |
+
// plugins are installed and make the magic...
|
34 |
+
$contentDir = dirname(wp_normalize_path(WP_PLUGIN_DIR));
|
35 |
|
36 |
$relativePath = str_replace( $contentDir, '', $absolutePath);
|
37 |
|
73 |
if (! function_exists('dd')) {
|
74 |
/**
|
75 |
* Dump some data
|
|
|
|
|
76 |
*/
|
77 |
+
function dd ()
|
78 |
{
|
79 |
+
var_dump(func_get_args());
|
80 |
+
die();
|
81 |
}
|
82 |
}
|
analyst/templates/forms/install.php
CHANGED
@@ -61,7 +61,7 @@
|
|
61 |
window.location.reload()
|
62 |
},
|
63 |
error: function () {
|
64 |
-
|
65 |
}
|
66 |
}).done(function () {
|
67 |
$('#analyst-disable-install-modal-mask').hide()
|
@@ -72,10 +72,11 @@
|
|
72 |
})
|
73 |
}
|
74 |
|
75 |
-
|
76 |
-
if ($('#analyst-install-modal').attr('analyst-plugin-id') && isInPluginsPage) {
|
77 |
$('#analyst-install-modal').show()
|
78 |
}
|
|
|
|
|
79 |
$('.analyst-install-modal-close').click(function () {
|
80 |
$('#analyst-install-modal').hide()
|
81 |
})
|
61 |
window.location.reload()
|
62 |
},
|
63 |
error: function () {
|
64 |
+
$('#analyst-install-modal').hide()
|
65 |
}
|
66 |
}).done(function () {
|
67 |
$('#analyst-disable-install-modal-mask').hide()
|
72 |
})
|
73 |
}
|
74 |
|
75 |
+
if ($('#analyst-install-modal').attr('analyst-plugin-id')) {
|
|
|
76 |
$('#analyst-install-modal').show()
|
77 |
}
|
78 |
+
|
79 |
+
|
80 |
$('.analyst-install-modal-close').click(function () {
|
81 |
$('#analyst-install-modal').hide()
|
82 |
})
|
analyst/version.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
return array(
|
4 |
// The sdk version
|
5 |
-
'sdk' => '1.3.
|
6 |
|
7 |
// Minimum supported WordPress version
|
8 |
'wp' => '4.7',
|
2 |
|
3 |
return array(
|
4 |
// The sdk version
|
5 |
+
'sdk' => '1.3.20',
|
6 |
|
7 |
// Minimum supported WordPress version
|
8 |
'wp' => '4.7',
|
libs/sfsi_install_uninstall.php
CHANGED
@@ -34,7 +34,7 @@ function sfsi_update_plugin()
|
|
34 |
update_option("sfsi_custom_icons", "yes");
|
35 |
}
|
36 |
//Install version
|
37 |
-
update_option("sfsi_pluginVersion", "2.
|
38 |
|
39 |
if (!get_option('sfsi_serverphpVersionnotification')) {
|
40 |
add_option("sfsi_serverphpVersionnotification", "yes");
|
34 |
update_option("sfsi_custom_icons", "yes");
|
35 |
}
|
36 |
//Install version
|
37 |
+
update_option("sfsi_pluginVersion", "2.30");
|
38 |
|
39 |
if (!get_option('sfsi_serverphpVersionnotification')) {
|
40 |
add_option("sfsi_serverphpVersionnotification", "yes");
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: socialdude, socialtech
|
|
3 |
Tags: social media, share, buttons, social widget, icons, share icons, share buttons, sharing icons, sharing buttons, social share, sharing, social sharing
|
4 |
Requires at least: 3.5
|
5 |
Tested up to: 5.2
|
6 |
-
Stable tag: 2.
|
7 |
License: GPLv2
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -274,9 +274,14 @@ You cannot use the same plugin twice, however you can install both the USM as we
|
|
274 |
|
275 |
|
276 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
277 |
|
278 |
= 2.2.9 =
|
279 |
-
* Solved:
|
280 |
|
281 |
= 2.2.8 =
|
282 |
* Solved: Header already sent error on some servers.
|
@@ -819,5 +824,5 @@ You cannot use the same plugin twice, however you can install both the USM as we
|
|
819 |
|
820 |
== Upgrade Notice ==
|
821 |
|
822 |
-
= 2.
|
823 |
Please upgrade
|
3 |
Tags: social media, share, buttons, social widget, icons, share icons, share buttons, sharing icons, sharing buttons, social share, sharing, social sharing
|
4 |
Requires at least: 3.5
|
5 |
Tested up to: 5.2
|
6 |
+
Stable tag: 2.3.0
|
7 |
License: GPLv2
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
274 |
|
275 |
|
276 |
== Changelog ==
|
277 |
+
= 2.3.0
|
278 |
+
* Errors on the footer in dashboard corected.
|
279 |
+
* Updated logic for inclusion of external js.
|
280 |
+
* Some grametical errors corrected.
|
281 |
+
* Updated feedback system.
|
282 |
|
283 |
= 2.2.9 =
|
284 |
+
* Solved: After post icons shown.
|
285 |
|
286 |
= 2.2.8 =
|
287 |
* Solved: Header already sent error on some servers.
|
824 |
|
825 |
== Upgrade Notice ==
|
826 |
|
827 |
+
= 2.3.0 =
|
828 |
Please upgrade
|
ultimate_social_media_icons.php
CHANGED
@@ -6,7 +6,7 @@ Description: Easy to use and 100% FREE social media plugin which adds social med
|
|
6 |
|
7 |
Author: UltimatelySocial
|
8 |
Author URI: http://ultimatelysocial.com
|
9 |
-
Version: 2.
|
10 |
License: GPLv2 or later
|
11 |
*/
|
12 |
require_once 'analyst/main.php';
|
@@ -97,7 +97,7 @@ register_deactivation_hook(__FILE__, 'sfsi_deactivate_plugin');
|
|
97 |
|
98 |
register_uninstall_hook(__FILE__, 'sfsi_Unistall_plugin');
|
99 |
|
100 |
-
if(!get_option('sfsi_pluginVersion') || get_option('sfsi_pluginVersion') < 2.
|
101 |
{
|
102 |
|
103 |
add_action("init", "sfsi_update_plugin");
|
6 |
|
7 |
Author: UltimatelySocial
|
8 |
Author URI: http://ultimatelysocial.com
|
9 |
+
Version: 2.3.0
|
10 |
License: GPLv2 or later
|
11 |
*/
|
12 |
require_once 'analyst/main.php';
|
97 |
|
98 |
register_uninstall_hook(__FILE__, 'sfsi_Unistall_plugin');
|
99 |
|
100 |
+
if(!get_option('sfsi_pluginVersion') || get_option('sfsi_pluginVersion') < 2.30)
|
101 |
{
|
102 |
|
103 |
add_action("init", "sfsi_update_plugin");
|
views/sfsi_option_view1.php
CHANGED
@@ -67,7 +67,7 @@ $option1['sfsi_instagram_display'] = (isset($option1['sfsi_instagram_display
|
|
67 |
|
68 |
<div class="tab1">
|
69 |
<p class="top_txt">
|
70 |
-
In general, <span>the more icons you offer the better</span> because people have different preferences, and more options
|
71 |
|
72 |
</p>
|
73 |
<ul class="icn_listing">
|
@@ -108,7 +108,7 @@ $option1['sfsi_instagram_display'] = (isset($option1['sfsi_instagram_display
|
|
108 |
|
109 |
<div class="right_info">
|
110 |
|
111 |
-
<p><span>Strongly recommended:</span> Email is the most effective tool to build up
|
112 |
|
113 |
<span style="float: right;margin-right: 13px; margin-top: -3px;">
|
114 |
|
@@ -237,7 +237,7 @@ $option1['sfsi_instagram_display'] = (isset($option1['sfsi_instagram_display
|
|
237 |
|
238 |
<div class="right_info">
|
239 |
|
240 |
-
<p><span>It depends:</span> Show this icon if you have
|
241 |
|
242 |
</div>
|
243 |
|
@@ -271,7 +271,7 @@ $option1['sfsi_instagram_display'] = (isset($option1['sfsi_instagram_display
|
|
271 |
</div>
|
272 |
<div class="right_info">
|
273 |
|
274 |
-
<p><span>It depends:</span> Show this icon if you have a
|
275 |
|
276 |
</div>
|
277 |
|
@@ -290,7 +290,7 @@ $option1['sfsi_instagram_display'] = (isset($option1['sfsi_instagram_display
|
|
290 |
|
291 |
<div class="right_info">
|
292 |
|
293 |
-
<p><span>It depends:</span> Show this icon if you have
|
294 |
|
295 |
</div>
|
296 |
|
67 |
|
68 |
<div class="tab1">
|
69 |
<p class="top_txt">
|
70 |
+
In general, <span>the more icons you offer the better</span> because people have different preferences, and more options mean that there’s something for everybody, increasing the chances that you get followed and/or shared.
|
71 |
|
72 |
</p>
|
73 |
<ul class="icn_listing">
|
108 |
|
109 |
<div class="right_info">
|
110 |
|
111 |
+
<p><span>Strongly recommended:</span> Email is the most effective tool to build up followership.
|
112 |
|
113 |
<span style="float: right;margin-right: 13px; margin-top: -3px;">
|
114 |
|
237 |
|
238 |
<div class="right_info">
|
239 |
|
240 |
+
<p><span>It depends:</span> Show this icon if you have an Instagram account.</p>
|
241 |
|
242 |
</div>
|
243 |
|
271 |
</div>
|
272 |
<div class="right_info">
|
273 |
|
274 |
+
<p><span>It depends:</span> Show this icon if you have a VK account.</p>
|
275 |
|
276 |
</div>
|
277 |
|
290 |
|
291 |
<div class="right_info">
|
292 |
|
293 |
+
<p><span>It depends:</span> Show this icon if you have an OK account.</p>
|
294 |
|
295 |
</div>
|
296 |
|
views/sfsi_option_view2.php
CHANGED
@@ -173,7 +173,7 @@ if ("id" == $option2['sfsi_youtubeusernameorid'] && isset($option2['sfsi_youtube
|
|
173 |
|
174 |
<div class="inr_cont">
|
175 |
<p>
|
176 |
-
|
177 |
</p>
|
178 |
<p>Please pick which icon type you want to use:</p>
|
179 |
<ul class="tab_2_email_sec">
|
@@ -227,13 +227,13 @@ if ("id" == $option2['sfsi_youtubeusernameorid'] && isset($option2['sfsi_youtube
|
|
227 |
</form>
|
228 |
|
229 |
<p class='sfsi_email_last_paragraph'>
|
230 |
-
This will create your FREE account on SpecificFeeds, using above email. <br>
|
231 |
All data will be treated highly confidentially, see the
|
232 |
<a href="https://www.specificfeeds.com/page/privacy-policy" target="new">
|
233 |
Privacy Policy.
|
234 |
</a>
|
235 |
</p> <div class="sfsi_new_prmium_follw">
|
236 |
-
<p><b>New:</b> In our Premium Plugin you can now give your email icon other functions too, e.g. <b>contact you </b>(email), <b>share by email,</b> and <b>link to a certain page </b>(e.g. your contact form or newsletter sign-up site). <a style="cursor:pointer" class="pop-up" data-id="sfsi_quickpay-overlay" onclick="sfsi_open_quick_checkout(event)" class="sfisi_font_bold" target="_blank">Go
|
237 |
</div>
|
238 |
</div>
|
239 |
</div>
|
@@ -252,7 +252,7 @@ if ("id" == $option2['sfsi_youtubeusernameorid'] && isset($option2['sfsi_youtube
|
|
252 |
|
253 |
<p class="radio_section fb_url extra_sp"><input name="sfsi_facebookShare_option" <?php echo ($option2['sfsi_facebookShare_option'] == 'yes') ? 'checked="true"' : ''; ?> type="checkbox" value="yes" class="styled" /><label>Share my blog with friends (on Facebook)</label></p>
|
254 |
<div class="sfsi_new_prmium_follw">
|
255 |
-
<p><b>New:</b> In our Premium Plugin you can also allow users to follow you on Facebook <b>directly from your site</b> (without leaving your page, increasing followers). <a style="cursor:pointer" class="pop-up" data-id="sfsi_quickpay-overlay" onclick="sfsi_open_quick_checkout(event)" class="sfisi_font_bold" target="_blank">Go
|
256 |
</div>
|
257 |
</div>
|
258 |
</div>
|
@@ -273,7 +273,7 @@ if ("id" == $option2['sfsi_youtubeusernameorid'] && isset($option2['sfsi_youtube
|
|
273 |
?>
|
274 |
<div class="radio_section fb_url twt_fld_2"><input name="sfsi_twitter_aboutPage" <?php echo ($option2['sfsi_twitter_aboutPage'] == 'yes') ? 'checked="true"' : ''; ?> type="checkbox" value="yes" class="styled" /><label>Tweet about my page:</label><textarea name="sfsi_twitter_aboutPageText" id="sfsi_twitter_aboutPageText" class="add_txt" placeholder="Hey, check out this cool site I found: www.yourname.com #Topic via@my_twitter_name"><?php echo $twitter_text; ?></textarea><?php /*echo ($option2['sfsi_twitter_aboutPageText']!='') ? stripslashes($option2['sfsi_twitter_aboutPageText']) : '' ;*/?></div>
|
275 |
<div class="sfsi_new_prmium_follw">
|
276 |
-
<p><b>New: </b>Tweeting becomes really fun in the Premium Plugin – you can insert tags to automatically pull the title of the story & link to the story, attach pictures & snippets to the Tweets (‘Twitter cards’) and user Url-shorteners, all leading to more Tweets and traffic for your site! <a style="cursor:pointer" class="pop-up" data-id="sfsi_quickpay-overlay" onclick="sfsi_open_quick_checkout(event)" class="sfisi_font_bold" target="_blank">Go
|
277 |
</div>
|
278 |
</div>
|
279 |
</div>
|
@@ -386,7 +386,7 @@ if ("id" == $option2['sfsi_youtubeusernameorid'] && isset($option2['sfsi_youtube
|
|
386 |
</p>
|
387 |
|
388 |
<div class="sfsi_new_prmium_follw">
|
389 |
-
<p><b>New: </b>In our Premium Plugin you can now give your Telegram icon sharing functionality too, e.g. <b> share your website/blog with friends. </b><a style="cursor:pointer" class="pop-up" data-id="sfsi_quickpay-overlay" onclick="sfsi_open_quick_checkout(event)" class="sfisi_font_bold" target="_blank">Go
|
390 |
</div>
|
391 |
</div>
|
392 |
</div>
|
@@ -400,7 +400,7 @@ if ("id" == $option2['sfsi_youtubeusernameorid'] && isset($option2['sfsi_youtube
|
|
400 |
<p>When clicked on, your website/blog will be shared on WeChat.</p>
|
401 |
<input name="sfsi_wechatShare_option" checked="true" type="checkbox" value="yes" class="" style="display:none" />
|
402 |
<div class="sfsi_new_prmium_follw">
|
403 |
-
<p><b>New: </b>In our Premium Plugin you can also allow users to <b>follow you </b> on WeChat <a style="cursor:pointer" class="pop-up" data-id="sfsi_quickpay-overlay" onclick="sfsi_open_quick_checkout(event)" class="sfisi_font_bold" target="_blank">Go
|
404 |
</div>
|
405 |
</div>
|
406 |
</div>
|
@@ -414,7 +414,7 @@ if ("id" == $option2['sfsi_youtubeusernameorid'] && isset($option2['sfsi_youtube
|
|
414 |
<p class="radio_section fb_url no_check"><input name="sfsi_weibo_page" checked="true" type="checkbox" value="yes" class="" style="display:none" /><label>Visit me on Weibo:</label><input name="sfsi_weibo_pageURL" type="url" placeholder="http://" value="<?php echo ($option2['sfsi_weibo_pageURL'] != '') ? $option2['sfsi_weibo_pageURL'] : ''; ?>" class="add" /></p>
|
415 |
|
416 |
<div class="sfsi_new_prmium_follw">
|
417 |
-
<p><b>New: </b> In our Premium Plugin you can now give Weibo icon other functions too, e.g. <b>your website/blog, share your website/blog</b> on Weibo. <a style="cursor:pointer" class="pop-up" data-id="sfsi_quickpay-overlay" onclick="sfsi_open_quick_checkout(event)" class="sfisi_font_bold" target="_blank">Go
|
418 |
</div>
|
419 |
</div>
|
420 |
</div>
|
@@ -429,7 +429,7 @@ if ("id" == $option2['sfsi_youtubeusernameorid'] && isset($option2['sfsi_youtube
|
|
429 |
<p class="radio_section fb_url no_check"><input name="sfsi_vk_page" checked="true" type="checkbox" value="yes" class="" style="display:none" /><label>Visit me on VK:</label><input name="sfsi_vk_pageURL" type="url" placeholder="http://" value="<?php echo ($option2['sfsi_vk_pageURL'] != '') ? $option2['sfsi_vk_pageURL'] : ''; ?>" class="add" /></p>
|
430 |
|
431 |
<div class="sfsi_new_prmium_follw">
|
432 |
-
<p><b>New: </b>In our Premium Plugin you can now give your VK icon sharing functionality too, e.g. <b>share your website/blog </b> with friends. <a style="cursor:pointer" class="pop-up" data-id="sfsi_quickpay-overlay" onclick="sfsi_open_quick_checkout(event)" class="sfisi_font_bold" target="_blank">Go
|
433 |
</div>
|
434 |
</div>
|
435 |
</div>
|
@@ -443,7 +443,7 @@ if ("id" == $option2['sfsi_youtubeusernameorid'] && isset($option2['sfsi_youtube
|
|
443 |
<p class="radio_section fb_url no_check"><input name="sfsi_ok_page" checked="true" type="checkbox" value="yes" class="" style="display:none" /><label>Visit me on OK:</label><input name="sfsi_ok_pageURL" type="url" placeholder="http://" value="<?php echo ($option2['sfsi_ok_pageURL'] != '') ? $option2['sfsi_ok_pageURL'] : ''; ?>" class="add" /></p>
|
444 |
|
445 |
<div class="sfsi_new_prmium_follw">
|
446 |
-
<p><b>New: </b>In our Premium Plugin you can now give OK icon other functions too, e.g. <b> like your website/blog </b>, subscribe/follow you on OK. <a style="cursor:pointer" class="pop-up" data-id="sfsi_quickpay-overlay" onclick="sfsi_open_quick_checkout(event)" class="sfisi_font_bold" target="_blank">Go
|
447 |
</div>
|
448 |
</div>
|
449 |
</div>
|
@@ -481,7 +481,7 @@ if ("id" == $option2['sfsi_youtubeusernameorid'] && isset($option2['sfsi_youtube
|
|
481 |
endfor; ?>
|
482 |
|
483 |
<div class="notice_custom_icons_premium sfsi_new_prmium_follw" style="<?php echo $bannerDisplay; ?>">
|
484 |
-
<p><b>New: </b>In the Premium Plugin you can also give custom icons the feature that when people click on it, they can call you, or send you an SMS. <a style="cursor:pointer" class="pop-up" data-id="sfsi_quickpay-overlay" onclick="sfsi_open_quick_checkout(event)" class="sfisi_font_bold" target="_blank">Go
|
485 |
</div>
|
486 |
</div>
|
487 |
<!-- END Custom icon section here -->
|
173 |
|
174 |
<div class="inr_cont">
|
175 |
<p>
|
176 |
+
It allows your visitors to subscribe to your site (on <a href="http://www.specificfeeds.com/widgets/emailSubscribeEncFeed/<?php echo $feedId; ?>/<?php echo base64_encode(8); ?>" target="new">this screen</a>) and receive new posts automatically by email.
|
177 |
</p>
|
178 |
<p>Please pick which icon type you want to use:</p>
|
179 |
<ul class="tab_2_email_sec">
|
227 |
</form>
|
228 |
|
229 |
<p class='sfsi_email_last_paragraph'>
|
230 |
+
This will create your FREE account on SpecificFeeds, using the above email. <br>
|
231 |
All data will be treated highly confidentially, see the
|
232 |
<a href="https://www.specificfeeds.com/page/privacy-policy" target="new">
|
233 |
Privacy Policy.
|
234 |
</a>
|
235 |
</p> <div class="sfsi_new_prmium_follw">
|
236 |
+
<p><b>New:</b> In our Premium Plugin you can now give your email icon other functions too, e.g. <b>contact you </b>(email), <b>share by email,</b> and <b>link to a certain page </b>(e.g. your contact form or newsletter sign-up site). <a style="cursor:pointer" class="pop-up" data-id="sfsi_quickpay-overlay" onclick="sfsi_open_quick_checkout(event)" class="sfisi_font_bold" target="_blank">Go premium now</a><a href="https://www.ultimatelysocial.com/usm-premium/?utm_source=usmi_settings_page&utm_campaign=more_functions_email_icon&utm_medium=banner" class="sfsi_font_inherit" target="_blank"> or learn more.</a>
|
237 |
</div>
|
238 |
</div>
|
239 |
</div>
|
252 |
|
253 |
<p class="radio_section fb_url extra_sp"><input name="sfsi_facebookShare_option" <?php echo ($option2['sfsi_facebookShare_option'] == 'yes') ? 'checked="true"' : ''; ?> type="checkbox" value="yes" class="styled" /><label>Share my blog with friends (on Facebook)</label></p>
|
254 |
<div class="sfsi_new_prmium_follw">
|
255 |
+
<p><b>New:</b> In our Premium Plugin you can also allow users to follow you on Facebook <b>directly from your site</b> (without leaving your page, increasing followers). <a style="cursor:pointer" class="pop-up" data-id="sfsi_quickpay-overlay" onclick="sfsi_open_quick_checkout(event)" class="sfisi_font_bold" target="_blank">Go premium now</a><a href="https://www.ultimatelysocial.com/usm-premium/?utm_source=usmi_settings_page&utm_campaign=direct_follow_facebook&utm_medium=banner" class="sfsi_font_inherit" target="_blank"> or learn more.</a></p>
|
256 |
</div>
|
257 |
</div>
|
258 |
</div>
|
273 |
?>
|
274 |
<div class="radio_section fb_url twt_fld_2"><input name="sfsi_twitter_aboutPage" <?php echo ($option2['sfsi_twitter_aboutPage'] == 'yes') ? 'checked="true"' : ''; ?> type="checkbox" value="yes" class="styled" /><label>Tweet about my page:</label><textarea name="sfsi_twitter_aboutPageText" id="sfsi_twitter_aboutPageText" class="add_txt" placeholder="Hey, check out this cool site I found: www.yourname.com #Topic via@my_twitter_name"><?php echo $twitter_text; ?></textarea><?php /*echo ($option2['sfsi_twitter_aboutPageText']!='') ? stripslashes($option2['sfsi_twitter_aboutPageText']) : '' ;*/?></div>
|
275 |
<div class="sfsi_new_prmium_follw">
|
276 |
+
<p><b>New: </b>Tweeting becomes really fun in the Premium Plugin – you can insert tags to automatically pull the title of the story & link to the story, attach pictures & snippets to the Tweets (‘Twitter cards’) and user Url-shorteners, all leading to more Tweets and traffic for your site! <a style="cursor:pointer" class="pop-up" data-id="sfsi_quickpay-overlay" onclick="sfsi_open_quick_checkout(event)" class="sfisi_font_bold" target="_blank">Go premium now</a><a href="https://www.ultimatelysocial.com/usm-premium/?utm_source=usmi_settings_page&utm_campaign=better_tweets&utm_medium=banner" class="sfsi_font_inherit" target="_blank"> or learn more.</a></p>
|
277 |
</div>
|
278 |
</div>
|
279 |
</div>
|
386 |
</p>
|
387 |
|
388 |
<div class="sfsi_new_prmium_follw">
|
389 |
+
<p><b>New: </b>In our Premium Plugin you can now give your Telegram icon sharing functionality too, e.g. <b> share your website/blog with friends. </b><a style="cursor:pointer" class="pop-up" data-id="sfsi_quickpay-overlay" onclick="sfsi_open_quick_checkout(event)" class="sfisi_font_bold" target="_blank">Go premium now</a><a href="https://www.ultimatelysocial.com/usm-premium/?utm_source=usmi_settings_page&utm_campaign=telegram_sharing&utm_medium=banner" class="sfsi_font_inherit" target="_blank"> or learn more.</a></p>
|
390 |
</div>
|
391 |
</div>
|
392 |
</div>
|
400 |
<p>When clicked on, your website/blog will be shared on WeChat.</p>
|
401 |
<input name="sfsi_wechatShare_option" checked="true" type="checkbox" value="yes" class="" style="display:none" />
|
402 |
<div class="sfsi_new_prmium_follw">
|
403 |
+
<p><b>New: </b>In our Premium Plugin you can also allow users to <b>follow you </b> on WeChat <a style="cursor:pointer" class="pop-up" data-id="sfsi_quickpay-overlay" onclick="sfsi_open_quick_checkout(event)" class="sfisi_font_bold" target="_blank">Go premium now</a><a href="https://www.ultimatelysocial.com/usm-premium/?utm_source=usmi_settings_page&utm_campaign=wechat_sharing&utm_medium=banner" class="sfsi_font_inherit" target="_blank"> or learn more.</a></p>
|
404 |
</div>
|
405 |
</div>
|
406 |
</div>
|
414 |
<p class="radio_section fb_url no_check"><input name="sfsi_weibo_page" checked="true" type="checkbox" value="yes" class="" style="display:none" /><label>Visit me on Weibo:</label><input name="sfsi_weibo_pageURL" type="url" placeholder="http://" value="<?php echo ($option2['sfsi_weibo_pageURL'] != '') ? $option2['sfsi_weibo_pageURL'] : ''; ?>" class="add" /></p>
|
415 |
|
416 |
<div class="sfsi_new_prmium_follw">
|
417 |
+
<p><b>New: </b> In our Premium Plugin you can now give Weibo icon other functions too, e.g. <b>your website/blog, share your website/blog</b> on Weibo. <a style="cursor:pointer" class="pop-up" data-id="sfsi_quickpay-overlay" onclick="sfsi_open_quick_checkout(event)" class="sfisi_font_bold" target="_blank">Go premium now</a><a href="https://www.ultimatelysocial.com/usm-premium/?utm_source=usmi_settings_page&utm_campaign=weibo_like_and_share&utm_medium=banner" class="sfsi_font_inherit" target="_blank"> or learn more.</a></p>
|
418 |
</div>
|
419 |
</div>
|
420 |
</div>
|
429 |
<p class="radio_section fb_url no_check"><input name="sfsi_vk_page" checked="true" type="checkbox" value="yes" class="" style="display:none" /><label>Visit me on VK:</label><input name="sfsi_vk_pageURL" type="url" placeholder="http://" value="<?php echo ($option2['sfsi_vk_pageURL'] != '') ? $option2['sfsi_vk_pageURL'] : ''; ?>" class="add" /></p>
|
430 |
|
431 |
<div class="sfsi_new_prmium_follw">
|
432 |
+
<p><b>New: </b>In our Premium Plugin you can now give your VK icon sharing functionality too, e.g. <b>share your website/blog </b> with friends. <a style="cursor:pointer" class="pop-up" data-id="sfsi_quickpay-overlay" onclick="sfsi_open_quick_checkout(event)" class="sfisi_font_bold" target="_blank">Go premium now</a><a href="https://www.ultimatelysocial.com/usm-premium/?utm_source=usmi_settings_page&utm_campaign=vk_share&utm_medium=banner" class="sfsi_font_inherit" target="_blank"> or learn more.</a></p>
|
433 |
</div>
|
434 |
</div>
|
435 |
</div>
|
443 |
<p class="radio_section fb_url no_check"><input name="sfsi_ok_page" checked="true" type="checkbox" value="yes" class="" style="display:none" /><label>Visit me on OK:</label><input name="sfsi_ok_pageURL" type="url" placeholder="http://" value="<?php echo ($option2['sfsi_ok_pageURL'] != '') ? $option2['sfsi_ok_pageURL'] : ''; ?>" class="add" /></p>
|
444 |
|
445 |
<div class="sfsi_new_prmium_follw">
|
446 |
+
<p><b>New: </b>In our Premium Plugin you can now give OK icon other functions too, e.g. <b> like your website/blog </b>, subscribe/follow you on OK. <a style="cursor:pointer" class="pop-up" data-id="sfsi_quickpay-overlay" onclick="sfsi_open_quick_checkout(event)" class="sfisi_font_bold" target="_blank">Go premium now</a><a href="https://www.ultimatelysocial.com/usm-premium/?utm_source=usmi_settings_page&utm_campaign=ok_like_and_subscribe&utm_medium=banner" class="sfsi_font_inherit" target="_blank"> or learn more.</a></p>
|
447 |
</div>
|
448 |
</div>
|
449 |
</div>
|
481 |
endfor; ?>
|
482 |
|
483 |
<div class="notice_custom_icons_premium sfsi_new_prmium_follw" style="<?php echo $bannerDisplay; ?>">
|
484 |
+
<p><b>New: </b>In the Premium Plugin you can also give custom icons the feature that when people click on it, they can call you, or send you an SMS. <a style="cursor:pointer" class="pop-up" data-id="sfsi_quickpay-overlay" onclick="sfsi_open_quick_checkout(event)" class="sfisi_font_bold" target="_blank">Go premium now</a><a href="https://www.ultimatelysocial.com/usm-premium/?utm_source=usmi_settings_page&utm_campaign=call_or_sms_feature_custom_icons&utm_medium=banner" class="sfsi_font_inherit" target="_blank"> or learn more.</a></p>
|
485 |
</div>
|
486 |
</div>
|
487 |
<!-- END Custom icon section here -->
|
views/sfsi_option_view4.php
CHANGED
@@ -318,7 +318,7 @@ $hide="display:none;";
|
|
318 |
</li>
|
319 |
<li>
|
320 |
<input name="sfsi_facebook_countsFrom" <?php echo ($option4['sfsi_facebook_countsFrom']=='mypage') ? 'checked="true"' : '' ;?> type="radio" value="mypage" class="styled" />
|
321 |
-
Retrieve the number of likes <strong>of your
|
322 |
<div class="sfsi_fbpgiddesc sfsi_fbpaget">
|
323 |
<div class="sfsi_fbpgidwpr sfsi_count" style="<?php echo ($option4['sfsi_facebook_countsFrom']=='likes' || $option4['sfsi_facebook_countsFrom']=='followers' || $option4['sfsi_facebook_countsFrom']=='manual') ? 'display:none;' : '' ;?>">Facebook page ID:</div>
|
324 |
<input name="sfsi_facebook_mypageCounts" type="text" class="input mypginpt" value="<?php echo ($option4['sfsi_facebook_mypageCounts']!='') ? $option4['sfsi_facebook_mypageCounts'] : '' ;?>" style="<?php echo ($option4['sfsi_facebook_countsFrom']=='likes' || $option4['sfsi_facebook_countsFrom']=='followers' || $option4['sfsi_facebook_countsFrom']=='manual') ? 'display:none;' : '' ;?>" />
|
@@ -330,7 +330,7 @@ $hide="display:none;";
|
|
330 |
</li>
|
331 |
</ul>
|
332 |
<div class="sfsi_facebook_pagedeasc" style="<?php echo (isset($option4['sfsi_facebook_countsFrom']) && $option4['sfsi_facebook_countsFrom'] =='manual') ? 'display:none;' : '' ;?>">
|
333 |
-
<p class="sfsi_shared_premium"><b>Note:</b> This plugin uses <u>one</u> API shared by all users of this plugin. There is a limit (set by Facebook) how often this API can get the counts per day, so it may happen that it returns “0 counts” later in the day.<br><br>Therefore we implemented a solution as part of our Premium Plugin where you can <b>easily</b> set up your own API in a few steps, which will fix this problem.<br><br><a style="cursor:pointer;border-bottom: 1px solid #12a252;color: #12a252 !important" class="pop-up" data-id="sfsi_quickpay-overlay" onclick="sfsi_open_quick_checkout(event)" style="border-bottom: 1px solid #12a252;color: #12a252 !important" class="sfisi_font_bold" target="_blank">Go
|
334 |
</p>
|
335 |
</div>
|
336 |
|
@@ -480,7 +480,7 @@ $hide="display:none;";
|
|
480 |
<li><input name="sfsi_pinterest_countsFrom" <?php echo ($option4['sfsi_pinterest_countsFrom']=='manual') ? 'checked="true"' : '' ;?> type="radio" value="manual" class="styled" /><label class="high_prb">Enter the figure manually:</label><input name="sfsi_pinterest_manualCounts" type="text" class="input" value="<?php echo ($option4['sfsi_pinterest_manualCounts']!='') ? $option4['sfsi_pinterest_manualCounts'] : '' ;?>" style="<?php echo ($option4['sfsi_pinterest_countsFrom']=='pins') ? 'display:none;' : '' ;?>" /></li>
|
481 |
</ul>
|
482 |
</div> <div class="sfsi_new_prmium_follw" style="margin-top: 38px;">
|
483 |
-
<p><b>New: </b>In the Premium Plugin you can also automatically show the number of PINs from your Pinterest account, or of a specific board, or the number of your Pinterest followers. <a style="cursor:pointer" class="pop-up" data-id="sfsi_quickpay-overlay" onclick="sfsi_open_quick_checkout(event)" class="sfisi_font_bold" target="_blank">Go
|
484 |
</div>
|
485 |
|
486 |
</div>
|
318 |
</li>
|
319 |
<li>
|
320 |
<input name="sfsi_facebook_countsFrom" <?php echo ($option4['sfsi_facebook_countsFrom']=='mypage') ? 'checked="true"' : '' ;?> type="radio" value="mypage" class="styled" />
|
321 |
+
Retrieve the number of likes <strong>of your Facebook page</strong><br>
|
322 |
<div class="sfsi_fbpgiddesc sfsi_fbpaget">
|
323 |
<div class="sfsi_fbpgidwpr sfsi_count" style="<?php echo ($option4['sfsi_facebook_countsFrom']=='likes' || $option4['sfsi_facebook_countsFrom']=='followers' || $option4['sfsi_facebook_countsFrom']=='manual') ? 'display:none;' : '' ;?>">Facebook page ID:</div>
|
324 |
<input name="sfsi_facebook_mypageCounts" type="text" class="input mypginpt" value="<?php echo ($option4['sfsi_facebook_mypageCounts']!='') ? $option4['sfsi_facebook_mypageCounts'] : '' ;?>" style="<?php echo ($option4['sfsi_facebook_countsFrom']=='likes' || $option4['sfsi_facebook_countsFrom']=='followers' || $option4['sfsi_facebook_countsFrom']=='manual') ? 'display:none;' : '' ;?>" />
|
330 |
</li>
|
331 |
</ul>
|
332 |
<div class="sfsi_facebook_pagedeasc" style="<?php echo (isset($option4['sfsi_facebook_countsFrom']) && $option4['sfsi_facebook_countsFrom'] =='manual') ? 'display:none;' : '' ;?>">
|
333 |
+
<p class="sfsi_shared_premium"><b>Note:</b> This plugin uses <u>one</u> API shared by all users of this plugin. There is a limit (set by Facebook) how often this API can get the counts per day, so it may happen that it returns “0 counts” later in the day.<br><br>Therefore we implemented a solution as part of our Premium Plugin where you can <b>easily</b> set up your own API in a few steps, which will fix this problem.<br><br><a style="cursor:pointer;border-bottom: 1px solid #12a252;color: #12a252 !important" class="pop-up" data-id="sfsi_quickpay-overlay" onclick="sfsi_open_quick_checkout(event)" style="border-bottom: 1px solid #12a252;color: #12a252 !important" class="sfisi_font_bold" target="_blank">Go premium now<a href="https://www.ultimatelysocial.com/usm-premium/?utm_source=usmi_settings_page&utm_campaign=facebook_counts&utm_medium=banner" class="sfsi_font_inherit" style="color: #12a252 !important" target="_blank"> or learn more</a>
|
334 |
</p>
|
335 |
</div>
|
336 |
|
480 |
<li><input name="sfsi_pinterest_countsFrom" <?php echo ($option4['sfsi_pinterest_countsFrom']=='manual') ? 'checked="true"' : '' ;?> type="radio" value="manual" class="styled" /><label class="high_prb">Enter the figure manually:</label><input name="sfsi_pinterest_manualCounts" type="text" class="input" value="<?php echo ($option4['sfsi_pinterest_manualCounts']!='') ? $option4['sfsi_pinterest_manualCounts'] : '' ;?>" style="<?php echo ($option4['sfsi_pinterest_countsFrom']=='pins') ? 'display:none;' : '' ;?>" /></li>
|
481 |
</ul>
|
482 |
</div> <div class="sfsi_new_prmium_follw" style="margin-top: 38px;">
|
483 |
+
<p><b>New: </b>In the Premium Plugin you can also automatically show the number of PINs from your Pinterest account, or of a specific board, or the number of your Pinterest followers. <a style="cursor:pointer" class="pop-up" data-id="sfsi_quickpay-overlay" onclick="sfsi_open_quick_checkout(event)" class="sfisi_font_bold" target="_blank">Go premium now</a><a href="https://www.ultimatelysocial.com/usm-premium/?utm_source=usmi_settings_page&utm_campaign=more_pinterest_counts&utm_medium=banner" class="sfsi_font_inherit" target="_blank"> or learn more.</a></p>
|
484 |
</div>
|
485 |
|
486 |
</div>
|
views/sfsi_option_view5.php
CHANGED
@@ -187,7 +187,7 @@
|
|
187 |
<div class="icons_size"><span>Size:</span><input name="sfsi_icons_size" value="<?php echo ($option5['sfsi_icons_size']!='') ? $option5['sfsi_icons_size'] : '' ;?>" type="text" /><ins>pixels wide & tall</ins> <span class="last">Spacing between icons:</span><input name="sfsi_icons_spacing" type="text" value="<?php echo ($option5['sfsi_icons_spacing']!='') ? $option5['sfsi_icons_spacing'] : '' ;?>" /><ins>Pixels</ins></div>
|
188 |
|
189 |
<div class="icons_prem_disc">
|
190 |
-
<p class="sfsi_prem_plu_desc"><b>New: </b>The Premium Plugin also allows you to define the vertical distance between the icons (and set this differently for mobile vs. desktop): <a class="pop-up" data-id="sfsi_quickpay-overlay" onclick="sfsi_open_quick_checkout(event)" style="cursor:pointer;border-bottom: 1px solid #12a252;color: #12a252 !important;font-weight:bold" class="sfisi_font_bold" target="_blank">Go
|
191 |
</div>
|
192 |
|
193 |
</div>
|
@@ -210,18 +210,19 @@
|
|
210 |
</div>
|
211 |
<span>Icons per row:</span>
|
212 |
<input name="sfsi_icons_perRow" type="text" value="<?php echo ($option5['sfsi_icons_perRow']!='') ? $option5['sfsi_icons_perRow'] : '' ;?>" />
|
213 |
-
<ins class="leave_empty">Leave empty if you
|
214 |
</div>
|
215 |
|
216 |
<div class= "sfsi_new_prmium_follw" style="margin-top: 38px;">
|
217 |
-
<p><b>New: </b>The Premium Plugin gives several more alignment options: <br>- Show icons vertically<br>- Align icons within a widget (left, right, centered)<br>- Align icons within the «container» where you place them via shortcode (left, right, centered) <br><a style="cursor:pointer" class="pop-up" data-id="sfsi_quickpay-overlay" onclick="sfsi_open_quick_checkout(event)" class="sfisi_font_bold" target="_blank">Go
|
218 |
</div>
|
219 |
|
220 |
</div>
|
221 |
|
222 |
<div class="row new_wind">
|
223 |
<h4>New window</h4>
|
224 |
-
<div class="row_onl"><p>If user clicks on your icons, do you want to open the page in a new window
|
|
|
225 |
<ul class="enough_waffling">
|
226 |
<li>
|
227 |
<input name="sfsi_icons_ClickPageOpen" <?php echo ($option5['sfsi_icons_ClickPageOpen']=='yes') ? 'checked="true"' : '' ;?> type="radio" value="yes" class="styled" />
|
@@ -248,7 +249,7 @@
|
|
248 |
|
249 |
<div class="space">
|
250 |
|
251 |
-
<p class="list">Make icons stick
|
252 |
|
253 |
<ul class="enough_waffling">
|
254 |
|
@@ -268,7 +269,7 @@
|
|
268 |
If you select «Yes» here, then the icons which you placed via <span style="text-decoration: underline;"><b>widget</b></span> or <span style="text-decoration: underline;"><b>shortcode</b></span> will still be visible on the screen as user scrolls down your page, i.e. they will stick at the top.</p>
|
269 |
|
270 |
<p>
|
271 |
-
This is not to be confused with making the icons permanently placed
|
272 |
</p>
|
273 |
|
274 |
</div>
|
@@ -281,7 +282,7 @@
|
|
281 |
<div class="row sfsi_custom_social_data_setting" id="custom_social_data_setting">
|
282 |
|
283 |
<h4>Sharing texts & pictures?</h4>
|
284 |
-
<p>On the pages where you edit your posts
|
285 |
|
286 |
<?php
|
287 |
$checkedS = (isset($option5['sfsi_custom_social_hide']) && $option5['sfsi_custom_social_hide']=="yes") ? 'checked="checked"': '';
|
@@ -315,7 +316,7 @@
|
|
315 |
</div>
|
316 |
|
317 |
<div class="sfsi_new_prmium_follw sfsi_social_sharing" style="margin-bottom: 15px;">
|
318 |
-
<p>Note: This feature is currently only available in the Premium Plugin. <a style="cursor:pointer" class="pop-up" data-id="sfsi_quickpay-overlay" onclick="sfsi_open_quick_checkout(event)" class="sfisi_font_bold" target="_blank">Go
|
319 |
</p>
|
320 |
</div>
|
321 |
</div>
|
187 |
<div class="icons_size"><span>Size:</span><input name="sfsi_icons_size" value="<?php echo ($option5['sfsi_icons_size']!='') ? $option5['sfsi_icons_size'] : '' ;?>" type="text" /><ins>pixels wide & tall</ins> <span class="last">Spacing between icons:</span><input name="sfsi_icons_spacing" type="text" value="<?php echo ($option5['sfsi_icons_spacing']!='') ? $option5['sfsi_icons_spacing'] : '' ;?>" /><ins>Pixels</ins></div>
|
188 |
|
189 |
<div class="icons_prem_disc">
|
190 |
+
<p class="sfsi_prem_plu_desc"><b>New: </b>The Premium Plugin also allows you to define the vertical distance between the icons (and set this differently for mobile vs. desktop): <a class="pop-up" data-id="sfsi_quickpay-overlay" onclick="sfsi_open_quick_checkout(event)" style="cursor:pointer;border-bottom: 1px solid #12a252;color: #12a252 !important;font-weight:bold" class="sfisi_font_bold" target="_blank">Go premium now.<a href="https://www.ultimatelysocial.com/usm-premium/?utm_source=usmi_settings_page&utm_campaign=more_spacings&utm_medium=banner" class="sfsi_font_inherit" style="color: #12a252 !important" target="_blank"> or learn more.</a>
|
191 |
</div>
|
192 |
|
193 |
</div>
|
210 |
</div>
|
211 |
<span>Icons per row:</span>
|
212 |
<input name="sfsi_icons_perRow" type="text" value="<?php echo ($option5['sfsi_icons_perRow']!='') ? $option5['sfsi_icons_perRow'] : '' ;?>" />
|
213 |
+
<ins class="leave_empty">Leave empty if you don't want to <br /> define this</ins>
|
214 |
</div>
|
215 |
|
216 |
<div class= "sfsi_new_prmium_follw" style="margin-top: 38px;">
|
217 |
+
<p><b>New: </b>The Premium Plugin gives several more alignment options: <br>- Show icons vertically<br>- Align icons within a widget (left, right, centered)<br>- Align icons within the «container» where you place them via shortcode (left, right, centered) <br><a style="cursor:pointer" class="pop-up" data-id="sfsi_quickpay-overlay" onclick="sfsi_open_quick_checkout(event)" class="sfisi_font_bold" target="_blank">Go premium now</a><a href="https://www.ultimatelysocial.com/usm-premium/?utm_source=usmi_settings_page&utm_campaign=more_alignment_options&utm_medium=banner" class="sfsi_font_inherit" target="_blank"> or learn more.</a></p>
|
218 |
</div>
|
219 |
|
220 |
</div>
|
221 |
|
222 |
<div class="row new_wind">
|
223 |
<h4>New window</h4>
|
224 |
+
<div class="row_onl"><p>If a user clicks on your icons, do you want to open the page in a new window?
|
225 |
+
</p>
|
226 |
<ul class="enough_waffling">
|
227 |
<li>
|
228 |
<input name="sfsi_icons_ClickPageOpen" <?php echo ($option5['sfsi_icons_ClickPageOpen']=='yes') ? 'checked="true"' : '' ;?> type="radio" value="yes" class="styled" />
|
249 |
|
250 |
<div class="space">
|
251 |
|
252 |
+
<p class="list">Make icons stick?</p>
|
253 |
|
254 |
<ul class="enough_waffling">
|
255 |
|
269 |
If you select «Yes» here, then the icons which you placed via <span style="text-decoration: underline;"><b>widget</b></span> or <span style="text-decoration: underline;"><b>shortcode</b></span> will still be visible on the screen as user scrolls down your page, i.e. they will stick at the top.</p>
|
270 |
|
271 |
<p>
|
272 |
+
This is not to be confused with making the icons permanently placed in the same position, which is possible in the <a target="_blank" href="https://www.ultimatelysocial.com/usm-premium"><b>Premium Plugin</b></a>.
|
273 |
</p>
|
274 |
|
275 |
</div>
|
282 |
<div class="row sfsi_custom_social_data_setting" id="custom_social_data_setting">
|
283 |
|
284 |
<h4>Sharing texts & pictures?</h4>
|
285 |
+
<p>On the pages where you edit your posts/pages, you’ll see a (new) section where you can define which pictures & text should be shared. This extra section is displayed on the following:</p>
|
286 |
|
287 |
<?php
|
288 |
$checkedS = (isset($option5['sfsi_custom_social_hide']) && $option5['sfsi_custom_social_hide']=="yes") ? 'checked="checked"': '';
|
316 |
</div>
|
317 |
|
318 |
<div class="sfsi_new_prmium_follw sfsi_social_sharing" style="margin-bottom: 15px;">
|
319 |
+
<p>Note: This feature is currently only available in the Premium Plugin. <a style="cursor:pointer" class="pop-up" data-id="sfsi_quickpay-overlay" onclick="sfsi_open_quick_checkout(event)" class="sfisi_font_bold" target="_blank">Go premium now</a><a href="https://www.ultimatelysocial.com/usm-premium/?utm_source=usmi_settings_page&utm_campaign=define_pic_and_text&utm_medium=banner" class="sfsi_font_inherit" target="_blank"> or learn more.</a>
|
320 |
</p>
|
321 |
</div>
|
322 |
</div>
|
views/sfsi_option_view6.php
CHANGED
@@ -109,7 +109,7 @@ if (!isset($option6['sfsi_rectfbshare'])) {
|
|
109 |
<li onclick="sfsi_togglbtmsection('sfsi_toggleonlyrspvshrng, .sfsi_responsive_show', 'sfsi_toggleonlystndrshrng, .sfsi_responsive_hide', this);" class="clckbltglcls sfsi_border_left_0">
|
110 |
<input name="sfsi_display_button_type" <?php echo ($option6['sfsi_display_button_type'] == 'responsive_button') ? 'checked="true"' : ''; ?> type="radio" value="responsive_button" class="styled" />
|
111 |
<label class="labelhdng4">
|
112 |
-
Responsive
|
113 |
</label>
|
114 |
</li>
|
115 |
<?php if ($option6['sfsi_display_button_type'] == 'standard_buttons') : $display = "display:block";
|
@@ -279,7 +279,7 @@ if (!isset($option6['sfsi_rectfbshare'])) {
|
|
279 |
</div>
|
280 |
</span>
|
281 |
<input type="text" class="sfsi_responsive_input" name="sfsi_responsive_<?php echo $icon ?>_input" value="<?php echo $icon_config["text"]; ?>" />
|
282 |
-
<a href="#" class="sfsi_responsive_default_url_toggler" style="text-decoration: none;">Define
|
283 |
<input style="display:none" class="sfsi_responsive_url_input" type="text" placeholder="Enter url" name="sfsi_responsive_<?php echo $icon ?>_url_input" value="<?php echo $icon_config["url"]; ?>" />
|
284 |
<a href="#" class="sfsi_responsive_default_url_hide" style="display:none"><span class="sfsi_cancel_text">Cancel</span><span class="sfsi_cancel_icon">×</span></a>
|
285 |
</li>
|
@@ -293,7 +293,7 @@ if (!isset($option6['sfsi_rectfbshare'])) {
|
|
293 |
<?php if ($option6['sfsi_show_premium_placement_box'] == 'yes') { ?>
|
294 |
<div class="sfsi_new_prmium_follw" style="width: 91%;">
|
295 |
<p style="font-size:20px !important">
|
296 |
-
<b>New: </b>In the Premium Plugin, we also added: Pinterest, Linkedin, WhatsApp, VK, OK, Telegram, Weibo, WeChat, Xing and the option to add custom icons. There are more important options to add custom
|
297 |
</p>
|
298 |
</div>
|
299 |
<?php } ?>
|
109 |
<li onclick="sfsi_togglbtmsection('sfsi_toggleonlyrspvshrng, .sfsi_responsive_show', 'sfsi_toggleonlystndrshrng, .sfsi_responsive_hide', this);" class="clckbltglcls sfsi_border_left_0">
|
110 |
<input name="sfsi_display_button_type" <?php echo ($option6['sfsi_display_button_type'] == 'responsive_button') ? 'checked="true"' : ''; ?> type="radio" value="responsive_button" class="styled" />
|
111 |
<label class="labelhdng4">
|
112 |
+
Responsive icons
|
113 |
</label>
|
114 |
</li>
|
115 |
<?php if ($option6['sfsi_display_button_type'] == 'standard_buttons') : $display = "display:block";
|
279 |
</div>
|
280 |
</span>
|
281 |
<input type="text" class="sfsi_responsive_input" name="sfsi_responsive_<?php echo $icon ?>_input" value="<?php echo $icon_config["text"]; ?>" />
|
282 |
+
<a href="#" class="sfsi_responsive_default_url_toggler" style="text-decoration: none;">Define URL*</a>
|
283 |
<input style="display:none" class="sfsi_responsive_url_input" type="text" placeholder="Enter url" name="sfsi_responsive_<?php echo $icon ?>_url_input" value="<?php echo $icon_config["url"]; ?>" />
|
284 |
<a href="#" class="sfsi_responsive_default_url_hide" style="display:none"><span class="sfsi_cancel_text">Cancel</span><span class="sfsi_cancel_icon">×</span></a>
|
285 |
</li>
|
293 |
<?php if ($option6['sfsi_show_premium_placement_box'] == 'yes') { ?>
|
294 |
<div class="sfsi_new_prmium_follw" style="width: 91%;">
|
295 |
<p style="font-size:20px !important">
|
296 |
+
<b>New: </b>In the Premium Plugin, we also added: Pinterest, Linkedin, WhatsApp, VK, OK, Telegram, Weibo, WeChat, Xing and the option to add custom icons. There are more important options to add custom icons. There are more placement options too, e.g. place the responsive icons before/after posts/pages, show them only on desktop/mobile, insert them manually (via shortcode).<a href="https://www.ultimatelysocial.com/usm-premium/?utm_source=usmi_settings_page&utm_campaign=responsive_icons&utm_medium=banner" class="sfsi_font_inherit" target="_blank"> See all features</a>
|
297 |
</p>
|
298 |
</div>
|
299 |
<?php } ?>
|
views/sfsi_option_view7.php
CHANGED
@@ -40,7 +40,7 @@ $option7['sfsi_Shown_popupOnceTime'] = (isset($option7['sfsi_Shown_popupOnceTim
|
|
40 |
|
41 |
<div class="tab7">
|
42 |
|
43 |
-
<p>You can increase chances that people share or follow you by
|
44 |
|
45 |
<!-- icons preview section -->
|
46 |
|
@@ -457,7 +457,7 @@ $option7['sfsi_Shown_popupOnceTime'] = (isset($option7['sfsi_Shown_popupOnceTim
|
|
457 |
|
458 |
?>
|
459 |
|
460 |
-
</select><br />Please hold CTRL key to select multiple pages.
|
461 |
|
462 |
</div>
|
463 |
|
@@ -489,7 +489,7 @@ $option7['sfsi_Shown_popupOnceTime'] = (isset($option7['sfsi_Shown_popupOnceTim
|
|
489 |
|
490 |
<div class="bannerPopupQue6 sfsi_new_prmium_follw" style="margin-top: 38px;">
|
491 |
|
492 |
-
<p><b>New: </b>The Premium Plugin allows you to do much more with the pop-up, e.g. you can: <br>- Show it when users try to leave your page<br>- Limit how often the pop-up is shown to the same user (e.g. only once per day)<br>- Select to show the subscription form in the pop-up (which you designed in question 9) <br><a style="cursor:pointer" class="pop-up" data-id="sfsi_quickpay-overlay" onclick="sfsi_open_quick_checkout(event)" class="sfisi_font_bold" target="_blank">Go
|
493 |
|
494 |
</div>
|
495 |
|
40 |
|
41 |
<div class="tab7">
|
42 |
|
43 |
+
<p>You can increase the chances that people share or follow you by displaying a pop-up asking them to. You can define the design and layout below:</p>
|
44 |
|
45 |
<!-- icons preview section -->
|
46 |
|
457 |
|
458 |
?>
|
459 |
|
460 |
+
</select><br />Please hold the CTRL key to select multiple pages.
|
461 |
|
462 |
</div>
|
463 |
|
489 |
|
490 |
<div class="bannerPopupQue6 sfsi_new_prmium_follw" style="margin-top: 38px;">
|
491 |
|
492 |
+
<p><b>New: </b>The Premium Plugin allows you to do much more with the pop-up, e.g. you can: <br>- Show it when users try to leave your page<br>- Limit how often the pop-up is shown to the same user (e.g. only once per day)<br>- Select to show the subscription form in the pop-up (which you designed in question 9) <br><a style="cursor:pointer" class="pop-up" data-id="sfsi_quickpay-overlay" onclick="sfsi_open_quick_checkout(event)" class="sfisi_font_bold" target="_blank">Go premium now</a><a href="https://www.ultimatelysocial.com/usm-premium/?utm_source=usmi_settings_page&utm_campaign=more_popup_options&utm_medium=banner" class="sfsi_font_inherit" target="_blank"> or learn more.</a></p>
|
493 |
|
494 |
</div>
|
495 |
|
views/sfsi_option_view8.php
CHANGED
@@ -83,7 +83,7 @@ $option8['sfsi_form_button_background'] = (isset($option8['sfsi_form_button_back
|
|
83 |
?>
|
84 |
|
85 |
<p>
|
86 |
-
|
87 |
In addition to the email- and follow-icon you can also show a subscription form which maximizes chances that people subscribe to your site.
|
88 |
|
89 |
</p>
|
@@ -212,7 +212,7 @@ $option8['sfsi_form_button_background'] = (isset($option8['sfsi_form_button_back
|
|
212 |
|
213 |
<div class="row_tab">
|
214 |
|
215 |
-
<label class="sfsi_heding">Adjust size to space on website?</label>
|
216 |
|
217 |
<ul class="border_shadow">
|
218 |
|
@@ -362,7 +362,7 @@ $option8['sfsi_form_button_background'] = (isset($option8['sfsi_form_button_back
|
|
362 |
|
363 |
<div class="sfsi_tab8_subcontainer sfsi_seprater">
|
364 |
|
365 |
-
<h5 class="sfsi_section_subtitle">Text above entry field</h5>
|
366 |
|
367 |
<!--Left Section-->
|
368 |
|
83 |
?>
|
84 |
|
85 |
<p>
|
86 |
+
|
87 |
In addition to the email- and follow-icon you can also show a subscription form which maximizes chances that people subscribe to your site.
|
88 |
|
89 |
</p>
|
212 |
|
213 |
<div class="row_tab">
|
214 |
|
215 |
+
<label class="sfsi_heding">Adjust size to space on the website?</label>
|
216 |
|
217 |
<ul class="border_shadow">
|
218 |
|
362 |
|
363 |
<div class="sfsi_tab8_subcontainer sfsi_seprater">
|
364 |
|
365 |
+
<h5 class="sfsi_section_subtitle">Text above the entry field</h5>
|
366 |
|
367 |
<!--Left Section-->
|
368 |
|
views/subviews/que4/animatethem.php
CHANGED
@@ -212,7 +212,7 @@
|
|
212 |
|
213 |
<input name="sfsi_shuffle_Firstload" <?php echo ( $option3['sfsi_shuffle_Firstload']=='yes') ? 'checked="true"' : '' ;?> type="checkbox" value="yes" class="styled" />
|
214 |
|
215 |
-
<label>When site is first loaded</label>
|
216 |
|
217 |
</p>
|
218 |
|
212 |
|
213 |
<input name="sfsi_shuffle_Firstload" <?php echo ( $option3['sfsi_shuffle_Firstload']=='yes') ? 'checked="true"' : '' ;?> type="checkbox" value="yes" class="styled" />
|
214 |
|
215 |
+
<label>When the site is first loaded</label>
|
216 |
|
217 |
</p>
|
218 |
|