Version Description
- Errors with "non-numeric value" fixed
Download this release
Release Info
Developer | socialdude |
Plugin | Social Media Share Buttons & Social Sharing Icons |
Version | 1.9.1 |
Comparing to | |
See all releases |
Code changes from version 1.8.9 to 1.9.1
- images/banner_support_forum.png +0 -0
- libs/controllers/sfsi_frontpopUp.php +7 -7
- libs/sfsi_install_uninstall.php +3 -4
- readme.txt +5 -2
- ultimate_social_media_icons.php +7 -5
- views/sfsi_options_view.php +1 -1
- views/sfsi_section_for_premium.php +7 -523
images/banner_support_forum.png
ADDED
Binary file
|
libs/controllers/sfsi_frontpopUp.php
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
<?php
|
2 |
-
|
3 |
/* show a pop on the as per user chose under section 7 */
|
4 |
function sfsi_frontPopUp () {
|
5 |
ob_start();
|
@@ -38,7 +38,7 @@ function sfsi_check_PopUp($content)
|
|
38 |
if($sfsi_section7_options['sfsi_Shown_pop']=="once")
|
39 |
{
|
40 |
$time_popUp= (int) $sfsi_section7_options['sfsi_Shown_popupOnceTime'];
|
41 |
-
$time_popUp
|
42 |
ob_start();
|
43 |
?>
|
44 |
<script>
|
@@ -59,8 +59,8 @@ function sfsi_check_PopUp($content)
|
|
59 |
}
|
60 |
if($sfsi_section7_options['sfsi_Shown_pop']=="ETscroll")
|
61 |
{
|
62 |
-
$time_popUp
|
63 |
-
$time_popUp
|
64 |
ob_start();
|
65 |
?>
|
66 |
<script>
|
@@ -101,9 +101,9 @@ function sfsi_check_PopUp($content)
|
|
101 |
}
|
102 |
if($sfsi_section7_options['sfsi_Shown_pop']=="LimitPopUp")
|
103 |
{
|
104 |
-
$time_popUp
|
105 |
-
$end_time
|
106 |
-
$time_popUp
|
107 |
|
108 |
if(!empty($end_time))
|
109 |
{
|
1 |
<?php
|
2 |
+
|
3 |
/* show a pop on the as per user chose under section 7 */
|
4 |
function sfsi_frontPopUp () {
|
5 |
ob_start();
|
38 |
if($sfsi_section7_options['sfsi_Shown_pop']=="once")
|
39 |
{
|
40 |
$time_popUp= (int) $sfsi_section7_options['sfsi_Shown_popupOnceTime'];
|
41 |
+
$time_popUp= $time_popUp*1000;
|
42 |
ob_start();
|
43 |
?>
|
44 |
<script>
|
59 |
}
|
60 |
if($sfsi_section7_options['sfsi_Shown_pop']=="ETscroll")
|
61 |
{
|
62 |
+
$time_popUp = (int) $sfsi_section7_options['sfsi_Shown_popupOnceTime'];
|
63 |
+
$time_popUp = $time_popUp*1000;
|
64 |
ob_start();
|
65 |
?>
|
66 |
<script>
|
101 |
}
|
102 |
if($sfsi_section7_options['sfsi_Shown_pop']=="LimitPopUp")
|
103 |
{
|
104 |
+
$time_popUp = (int) $sfsi_section7_options['sfsi_Shown_popuplimitPerUserTime'];
|
105 |
+
$end_time = (int) $_COOKIE['sfsi_socialPopUp'] + ($time_popUp*60);
|
106 |
+
$time_popUp = $time_popUp*1000;
|
107 |
|
108 |
if(!empty($end_time))
|
109 |
{
|
libs/sfsi_install_uninstall.php
CHANGED
@@ -12,7 +12,7 @@ function sfsi_update_plugin()
|
|
12 |
}
|
13 |
|
14 |
//Install version
|
15 |
-
update_option("sfsi_pluginVersion", "1.
|
16 |
|
17 |
|
18 |
if(!get_option('sfsi_serverphpVersionnotification'))
|
@@ -625,11 +625,10 @@ function sfsi_rating_msg()
|
|
625 |
if($diff_inrval >= 30 && get_option('sfsi_RatingDiv')=="no")
|
626 |
{
|
627 |
echo '<div class="sfwp_fivestar notice notice-success is-dismissible">
|
628 |
-
<p>We noticed you\'ve been using the Ultimate Social
|
629 |
<ul>
|
630 |
-
<li><a href="https://wordpress.org/support/plugin/ultimate-social-media-icons
|
631 |
<li><a href="javascript:void(0);" class="sfsiHideRating" title="I already did">I already did</a></li>
|
632 |
-
<li><a href="javascript:void(0);" class="sfsiHideRating" title="No, not good enough">No, not good enough</a></li>
|
633 |
</ul>
|
634 |
</div>
|
635 |
<script>
|
12 |
}
|
13 |
|
14 |
//Install version
|
15 |
+
update_option("sfsi_pluginVersion", "1.91");
|
16 |
|
17 |
|
18 |
if(!get_option('sfsi_serverphpVersionnotification'))
|
625 |
if($diff_inrval >= 30 && get_option('sfsi_RatingDiv')=="no")
|
626 |
{
|
627 |
echo '<div class="sfwp_fivestar notice notice-success is-dismissible">
|
628 |
+
<p>We noticed you\'ve been using the Ultimate Social Media Plugin for more than 30 days. If you\'re happy with it, could you please do us a BIG favor and let us know what you think about it & what we can improve? It only takes a minute!?</p>
|
629 |
<ul>
|
630 |
+
<li><a href="https://wordpress.org/support/plugin/ultimate-social-media-icons#new-topic-0" target="_new" title="Yes, that\'s fair, let me give feedback!">Yes, that\'s fair, let me give feedback!</a></li>
|
631 |
<li><a href="javascript:void(0);" class="sfsiHideRating" title="I already did">I already did</a></li>
|
|
|
632 |
</ul>
|
633 |
</div>
|
634 |
<script>
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: socialdude
|
|
3 |
Tags: social media, share, buttons, social, icons, share icons, share buttons, sharing icons, sharing buttons, social share, sharing, social sharing
|
4 |
Requires at least: 2.8
|
5 |
Tested up to: 4.9.4
|
6 |
-
Stable tag: 1.
|
7 |
License: GPLv2
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -267,6 +267,9 @@ You cannot use the same plugin twice, however you can install both the USM as we
|
|
267 |
|
268 |
== Changelog ==
|
269 |
|
|
|
|
|
|
|
270 |
= 1.8.9 =
|
271 |
* Error log files removed
|
272 |
|
@@ -664,5 +667,5 @@ You cannot use the same plugin twice, however you can install both the USM as we
|
|
664 |
|
665 |
== Upgrade Notice ==
|
666 |
|
667 |
-
= 1.
|
668 |
Please upgrade
|
3 |
Tags: social media, share, buttons, social, icons, share icons, share buttons, sharing icons, sharing buttons, social share, sharing, social sharing
|
4 |
Requires at least: 2.8
|
5 |
Tested up to: 4.9.4
|
6 |
+
Stable tag: 1.9.1
|
7 |
License: GPLv2
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
267 |
|
268 |
== Changelog ==
|
269 |
|
270 |
+
= 1.9.1 =
|
271 |
+
* Errors with "non-numeric value" fixed
|
272 |
+
|
273 |
= 1.8.9 =
|
274 |
* Error log files removed
|
275 |
|
667 |
|
668 |
== Upgrade Notice ==
|
669 |
|
670 |
+
= 1.9.1 =
|
671 |
Please upgrade
|
ultimate_social_media_icons.php
CHANGED
@@ -5,9 +5,12 @@ Plugin URI: http://ultimatelysocial.com
|
|
5 |
Description: Easy to use and 100% FREE social media plugin which adds social media icons to your website with tons of customization features!.
|
6 |
Author: UltimatelySocial
|
7 |
Author URI: http://ultimatelysocial.com
|
8 |
-
Version: 1.
|
9 |
License: GPLv2 or later
|
10 |
*/
|
|
|
|
|
|
|
11 |
global $wpdb;
|
12 |
|
13 |
/* define the Root for URL and Document */
|
@@ -52,7 +55,7 @@ register_activation_hook(__FILE__, 'sfsi_activate_plugin' );
|
|
52 |
register_deactivation_hook(__FILE__, 'sfsi_deactivate_plugin');
|
53 |
register_uninstall_hook(__FILE__, 'sfsi_Unistall_plugin');
|
54 |
|
55 |
-
if(!get_option('sfsi_pluginVersion') || get_option('sfsi_pluginVersion') < 1.
|
56 |
{
|
57 |
add_action("init", "sfsi_update_plugin");
|
58 |
}
|
@@ -638,8 +641,6 @@ function sfsi_admin_notice()
|
|
638 |
<?php
|
639 |
}
|
640 |
}
|
641 |
-
|
642 |
-
|
643 |
}
|
644 |
add_action('admin_init', 'sfsi_dismiss_admin_notice');
|
645 |
function sfsi_dismiss_admin_notice()
|
@@ -702,7 +703,8 @@ function sfsi_getdomain($url)
|
|
702 |
add_filter( 'plugin_action_links_' . plugin_basename( __FILE__ ), "sfsi_actionLinks", -10 );
|
703 |
function sfsi_actionLinks($links)
|
704 |
{
|
705 |
-
$links[] = '<a href="https://
|
|
|
706 |
$links[] = @$links["deactivate"];
|
707 |
$links[] = @$links["edit"];
|
708 |
$links[] = '<a href="'.admin_url("/admin.php?page=sfsi-options").'">Settings</a>';
|
5 |
Description: Easy to use and 100% FREE social media plugin which adds social media icons to your website with tons of customization features!.
|
6 |
Author: UltimatelySocial
|
7 |
Author URI: http://ultimatelysocial.com
|
8 |
+
Version: 1.9.1
|
9 |
License: GPLv2 or later
|
10 |
*/
|
11 |
+
|
12 |
+
error_reporting(0);
|
13 |
+
|
14 |
global $wpdb;
|
15 |
|
16 |
/* define the Root for URL and Document */
|
55 |
register_deactivation_hook(__FILE__, 'sfsi_deactivate_plugin');
|
56 |
register_uninstall_hook(__FILE__, 'sfsi_Unistall_plugin');
|
57 |
|
58 |
+
if(!get_option('sfsi_pluginVersion') || get_option('sfsi_pluginVersion') < 1.91)
|
59 |
{
|
60 |
add_action("init", "sfsi_update_plugin");
|
61 |
}
|
641 |
<?php
|
642 |
}
|
643 |
}
|
|
|
|
|
644 |
}
|
645 |
add_action('admin_init', 'sfsi_dismiss_admin_notice');
|
646 |
function sfsi_dismiss_admin_notice()
|
703 |
add_filter( 'plugin_action_links_' . plugin_basename( __FILE__ ), "sfsi_actionLinks", -10 );
|
704 |
function sfsi_actionLinks($links)
|
705 |
{
|
706 |
+
$links[] = '<a target="_blank" href="https://wordpress.org/support/plugin/ultimate-social-media-icons#no-topic-0" id="sfsi_deactivateButton" style="color:#FF0000;"><b>Need help?</b></a>';
|
707 |
+
$links[] = '<a target="_blank" href="https://www.ultimatelysocial.com/usm-premium/?utm_source=usmi_manage_plugin_page&utm_campaign=check_out_pro_version&utm_medium=banner" id="sfsi_deactivateButton" style="color:#38B54A;"><b>Check out pro version</b></a>';
|
708 |
$links[] = @$links["deactivate"];
|
709 |
$links[] = @$links["edit"];
|
710 |
$links[] = '<a href="'.admin_url("/admin.php?page=sfsi-options").'">Settings</a>';
|
views/sfsi_options_view.php
CHANGED
@@ -84,7 +84,7 @@
|
|
84 |
<p>Get started by clicking on the first question below. Once done, go to the <a href="<?php echo admin_url('/widgets.php');?>">widget area</a> and move the widget to the sidebar so that your icons are displayed.</p>
|
85 |
<p><a style="text-decoration: none;" href="javascript:void(0)">New: </a>In our new Premium Plugin many other different placement options are supported, e.g. place the icons floating/statically on the place by defining margins, only show them on certain pages, show them only on mobile etc. etc. <a href="https://www.ultimatelysocial.com/usm-premium/?utm_source=usmi_settings_page&utm_campaign=top_introduction&utm_medium=banner" target="_blank">See all features</a></p>
|
86 |
|
87 |
-
<p>Please <a target="_blank" style="text-decoration: underline;" href="https://wordpress.org/support/plugin/ultimate-social-media-icons
|
88 |
</div>
|
89 |
|
90 |
<div class="supportforum">
|
84 |
<p>Get started by clicking on the first question below. Once done, go to the <a href="<?php echo admin_url('/widgets.php');?>">widget area</a> and move the widget to the sidebar so that your icons are displayed.</p>
|
85 |
<p><a style="text-decoration: none;" href="javascript:void(0)">New: </a>In our new Premium Plugin many other different placement options are supported, e.g. place the icons floating/statically on the place by defining margins, only show them on certain pages, show them only on mobile etc. etc. <a href="https://www.ultimatelysocial.com/usm-premium/?utm_source=usmi_settings_page&utm_campaign=top_introduction&utm_medium=banner" target="_blank">See all features</a></p>
|
86 |
|
87 |
+
<p>Please <a target="_blank" style="text-decoration: underline;" href="https://wordpress.org/support/plugin/ultimate-social-media-icons#no-topic-0">give us feedback</a> and tell us how we can make the plugin better. Thank you!.</p>
|
88 |
</div>
|
89 |
|
90 |
<div class="supportforum">
|
views/sfsi_section_for_premium.php
CHANGED
@@ -1,526 +1,10 @@
|
|
1 |
-
<style
|
2 |
-
|
3 |
-
|
4 |
-
border: 1px solid #00C95E;
|
5 |
-
padding: 20px 10px 14px 20px;
|
6 |
-
text-align: center;
|
7 |
-
float: left;
|
8 |
-
background: #fff;
|
9 |
-
margin-bottom: 25px;
|
10 |
-
}
|
11 |
-
#sectionPremium{
|
12 |
-
margin: 50px auto;
|
13 |
-
text-align: center;
|
14 |
-
width: 55%;
|
15 |
-
}
|
16 |
-
.premiumButtonsContainer {
|
17 |
-
float: right;
|
18 |
-
width: 41%;
|
19 |
-
}
|
20 |
-
.premiumComponent{
|
21 |
-
width: 55%;
|
22 |
-
padding: 12px;
|
23 |
-
display: inline-block;
|
24 |
-
text-align: center;
|
25 |
-
font-size: 25px;
|
26 |
-
line-height: 28px;
|
27 |
-
cursor: pointer;
|
28 |
-
float: left;
|
29 |
-
min-height: 74px;
|
30 |
-
}
|
31 |
-
.premiumTxt {
|
32 |
-
line-height: 40px;
|
33 |
-
color: #000;
|
34 |
-
font-weight: 500;
|
35 |
-
font-size: 30px;
|
36 |
-
}
|
37 |
-
.premiumSection1 .premiumTxt {
|
38 |
-
width: 100%;
|
39 |
-
text-align: center;
|
40 |
-
font-size: 39px;
|
41 |
-
line-height: 50px;
|
42 |
-
}
|
43 |
-
.premiumSection2 .premiumTxt{
|
44 |
-
vertical-align: middle;
|
45 |
-
text-align: center;
|
46 |
-
min-height: 80px;
|
47 |
-
line-height: 80px;
|
48 |
-
color: #fff;
|
49 |
-
font-weight: 500;
|
50 |
-
letter-spacing: 2px;
|
51 |
-
}
|
52 |
-
.premiumSection2 {
|
53 |
-
vertical-align: top;
|
54 |
-
background-image: url(<?php echo SFSI_PLUGURL; ?>images/yesBtnBg.png);
|
55 |
-
background-repeat: no-repeat;
|
56 |
-
width: 41%;
|
57 |
-
padding: 18px 12px 24px 12px;
|
58 |
-
}
|
59 |
-
.premiumSection3 {
|
60 |
-
vertical-align: top;
|
61 |
-
background-image: url(<?php echo SFSI_PLUGURL; ?>images/noBtnBg.png);
|
62 |
-
background-repeat: no-repeat;
|
63 |
-
width: 41%;
|
64 |
-
padding-top: 34px;
|
65 |
-
margin-left: 9px;
|
66 |
-
}
|
67 |
-
#premiumSlide3 .premiumSection1{
|
68 |
-
width: 100%;
|
69 |
-
}
|
70 |
-
.premiumSection3 .premiumTxt{
|
71 |
-
color: #fff;
|
72 |
-
}
|
73 |
-
#premiumSlide1 .premiumSection1 .premiumTxt:nth-child(1){
|
74 |
-
font-size: 39px;
|
75 |
-
}
|
76 |
-
#premiumSlide1 .premiumSection3 .premiumTxt:nth-child(2){
|
77 |
-
line-height: 21px;
|
78 |
-
}
|
79 |
-
.premiumSection3 .premiumTxt:nth-child(2),.premiumSection3 .premiumTxt:nth-child(3){
|
80 |
-
font-size: 16px;
|
81 |
-
line-height: 20px;
|
82 |
-
}
|
83 |
-
.premFrTxt{
|
84 |
-
cursor: default;
|
85 |
-
}
|
86 |
-
#premiumSlide1 .premFrTxt{
|
87 |
-
padding-top: 2px;
|
88 |
-
}
|
89 |
-
.txtb{
|
90 |
-
font-size 39px;
|
91 |
-
}
|
92 |
-
#premiumSlide2 .premiumSection3 {
|
93 |
-
padding-top:20px;
|
94 |
-
padding-bottom: 20px;
|
95 |
-
}
|
96 |
-
.show{
|
97 |
-
display: block;
|
98 |
-
}
|
99 |
-
.hide{
|
100 |
-
display: none;
|
101 |
-
}
|
102 |
-
.premiumFeatures {
|
103 |
-
float: left;
|
104 |
-
margin-top: 15px;
|
105 |
-
margin-left: 48px;
|
106 |
-
width: 64%;
|
107 |
-
}
|
108 |
-
.premiumFeatures ul{
|
109 |
-
float: left;
|
110 |
-
width: 45%;
|
111 |
-
text-align: left;
|
112 |
-
line-height: 38px;
|
113 |
-
font-size: 23px;
|
114 |
-
list-style-image: url(<?php echo SFSI_PLUGURL; ?>images/tick.png);
|
115 |
-
font-weight: 600;
|
116 |
-
color: #000;
|
117 |
-
margin-right: 27px;
|
118 |
-
}
|
119 |
-
.premiumFeatures ul li{
|
120 |
-
padding-left:4px;
|
121 |
-
}
|
122 |
-
.premiumFeatures ul:nth-child(2) li:last-child span{
|
123 |
-
color: #00b050;
|
124 |
-
}
|
125 |
-
.premiumImg {
|
126 |
-
float: left;
|
127 |
-
}
|
128 |
-
.chkbutton{
|
129 |
-
/* float: left; */
|
130 |
-
width: 90%;
|
131 |
-
/* margin-top: 40px; */
|
132 |
-
/* margin-bottom: 20px; */
|
133 |
-
text-align: center;
|
134 |
-
margin: 0px auto;
|
135 |
-
}
|
136 |
-
.chkbutton a {
|
137 |
-
width: 98%;
|
138 |
-
background: rgb(0,200,83);
|
139 |
-
float: left;
|
140 |
-
color: white;
|
141 |
-
text-decoration: none;
|
142 |
-
padding: 13px 4px 13px 5px;
|
143 |
-
margin: 24px 0 7px 0;
|
144 |
-
font-weight: 600;
|
145 |
-
letter-spacing: 2px;
|
146 |
-
font-size: 32px;
|
147 |
-
}
|
148 |
-
.priceTxt {
|
149 |
-
text-align: center;
|
150 |
-
font-size: 19px;
|
151 |
-
clear: both;
|
152 |
-
}
|
153 |
-
.premFrTxt span{
|
154 |
-
text-decoration: underline;
|
155 |
-
}
|
156 |
-
#premiumSlide1 .premFrTxt .premiumTxt:nth-child(2){
|
157 |
-
width: 88%;
|
158 |
-
line-height: 24px;
|
159 |
-
}
|
160 |
-
.premiumImg img {
|
161 |
-
width: 70%;
|
162 |
-
margin-top: 6px;
|
163 |
-
}
|
164 |
-
#premiumSlide3 .premiumSection1 .premiumTxt:first-child span{
|
165 |
-
text-decoration: underline;
|
166 |
-
}
|
167 |
-
.linkPremium{
|
168 |
-
cursor: pointer;
|
169 |
-
}
|
170 |
-
|
171 |
-
@media screen and (min-width: 360px) and (max-width: 360px){
|
172 |
-
.wapper { width: 95%; padding: 0px;}
|
173 |
-
|
174 |
-
#sectionPremium { width: 90%;margin: 50px 5px;}
|
175 |
-
.premiumComponent{ width: 88%;}
|
176 |
-
.premiumButtonsContainer { float: left;width: 100%;margin-top: 10px;}
|
177 |
-
.premiumSection2,.premiumSection3{ width: 39%;}
|
178 |
-
#premiumSlide2 .premiumSection1 .premiumTxt { font-size: 22px;line-height: 30px;width: 100%; }
|
179 |
-
#premiumSlide1 .premiumSection1 .premiumTxt:nth-child(1) {font-size: 26px;}
|
180 |
-
#premiumSlide1 .premFrTxt .premiumTxt:nth-child(2) {width: 78%;line-height: 24px;font-size: 26px;}
|
181 |
-
#premiumSlide2 .premiumSection1 {padding-bottom: 0px;}
|
182 |
-
#premiumSlide2 .premiumSection1 .premiumButtonsContainer { margin-top: 10px;}
|
183 |
-
.premiumFeatures { margin-left: 6px;width: 100%;}
|
184 |
-
.premiumFeatures ul { width: 60%;float: left;font-size: 18px;margin: 0px auto;}
|
185 |
-
|
186 |
-
#premiumSlide3 .premiumSection1 {width: 89%;}
|
187 |
-
#premiumSlide3 .premiumSection1 .premiumTxt { width: 100%;font-size: 30px;line-height: 40px;}
|
188 |
-
#premiumSlide3 .premiumSection1 strong { width: 95%;text-align: center;float: left;}
|
189 |
-
.priceTxtwidth { width:79%;text-align: center;margin: 0px auto; }
|
190 |
-
.chkbutton { width:95%;}
|
191 |
-
.priceTxt { margin: 0 auto;width: 74%;line-height: 23px;font-size: 15px;}
|
192 |
-
#premiumSlide3 .premiumButtonsContainer {width: 97% !important;}
|
193 |
-
}
|
194 |
-
|
195 |
-
|
196 |
-
@media only screen and (min-width: 414px) and (max-width: 736px) and (orientation : landscape) {
|
197 |
-
#sectionPremium {
|
198 |
-
width: 90%;
|
199 |
-
margin: 50px 5px;
|
200 |
-
}
|
201 |
-
.premiumButtonsContainer {
|
202 |
-
float: left;
|
203 |
-
width: 48%;
|
204 |
-
}
|
205 |
-
.premiumSection1 {
|
206 |
-
width: 53%;
|
207 |
-
}
|
208 |
-
.premiumSection1 .premiumTxt{
|
209 |
-
font-size: 24px;
|
210 |
-
line-height: 39px;
|
211 |
-
}
|
212 |
-
#premiumSlide1 .premiumSection1 .premiumTxt:nth-child(1) {
|
213 |
-
font-size: 24px;
|
214 |
-
}
|
215 |
-
#premiumSlide1 .premFrTxt .premiumTxt:nth-child(2) {
|
216 |
-
width: 81%;
|
217 |
-
line-height: 24px;
|
218 |
-
}
|
219 |
-
.premiumSection2,.premiumSection3{
|
220 |
-
width: 40%;
|
221 |
-
}
|
222 |
-
.wapper {padding: 15px;}
|
223 |
-
|
224 |
-
#premiumSlide1 .premiumSection1, #premiumSlide2 .premiumSection1{
|
225 |
-
width: 47%;
|
226 |
-
}
|
227 |
-
.premiumFeatures{
|
228 |
-
margin-left: 6px;
|
229 |
-
width: 58%;
|
230 |
-
}
|
231 |
-
.premiumFeatures ul{
|
232 |
-
width: 49%;font-size: 18px;margin-right: 0px;
|
233 |
-
}
|
234 |
-
#premiumSlide3 .premiumSection1 .premiumTxt{
|
235 |
-
font-size: 34px;
|
236 |
-
}
|
237 |
-
.priceTxt{
|
238 |
-
width: 85%;
|
239 |
-
margin: 0 auto;
|
240 |
-
line-height: 23px;
|
241 |
-
font-size: 14px;
|
242 |
-
}
|
243 |
-
}
|
244 |
-
|
245 |
-
@media only screen and (min-width: 414px) and (max-width: 736px) and (orientation : portrait){
|
246 |
-
#sectionPremium {
|
247 |
-
width: 90%;
|
248 |
-
margin: 50px 5px;
|
249 |
-
}
|
250 |
-
.premiumButtonsContainer {
|
251 |
-
float: left;
|
252 |
-
width: 100%;
|
253 |
-
}
|
254 |
-
.premiumSection1 {
|
255 |
-
width: 53%;
|
256 |
-
}
|
257 |
-
#premiumSlide1 .premiumSection1 {
|
258 |
-
margin-bottom: 10px;
|
259 |
-
}
|
260 |
-
#premiumSlide3 .premiumSection1{
|
261 |
-
width: 86%;
|
262 |
-
}
|
263 |
-
.premiumSection1 .premiumTxt{
|
264 |
-
font-size: 24px;
|
265 |
-
line-height: 39px;
|
266 |
-
}
|
267 |
-
#premiumSlide1 .premiumSection1 .premiumTxt:nth-child(1) {
|
268 |
-
font-size: 24px;
|
269 |
-
}
|
270 |
-
#premiumSlide1 .premFrTxt .premiumTxt:nth-child(2) {
|
271 |
-
width: 81%;
|
272 |
-
line-height: 24px;
|
273 |
-
}
|
274 |
-
.premiumSection2,.premiumSection3{
|
275 |
-
width: 40%;
|
276 |
-
}
|
277 |
-
.wapper {padding: 15px;}
|
278 |
-
|
279 |
-
#premiumSlide1 .premiumSection1, #premiumSlide2 .premiumSection1{
|
280 |
-
width: 100%;
|
281 |
-
}
|
282 |
-
.premiumFeatures{
|
283 |
-
width: 66%;
|
284 |
-
margin: 0px auto;
|
285 |
-
text-align: center;
|
286 |
-
float: none;
|
287 |
-
}
|
288 |
-
.premiumFeatures ul {
|
289 |
-
width: 100%;
|
290 |
-
font-size: 20px;
|
291 |
-
margin-bottom: 12px;
|
292 |
-
float: left;
|
293 |
-
margin-left: 7px;
|
294 |
-
margin-top: 16px;
|
295 |
-
}
|
296 |
-
#premiumSlide3 .premiumSection1 .premiumTxt{
|
297 |
-
font-size: 29px;
|
298 |
-
}
|
299 |
-
.priceTxt{
|
300 |
-
width: 85%;
|
301 |
-
margin: 0 auto;
|
302 |
-
line-height: 23px;
|
303 |
-
font-size: 14px;
|
304 |
-
}
|
305 |
-
}
|
306 |
-
|
307 |
-
/*iPad*/
|
308 |
-
@media screen and (min-width: 768px) and (max-width: 1024px){
|
309 |
-
#sectionPremium { width: 95%;margin: 50px 5px;}
|
310 |
-
.premiumComponent{ width: 50%;}
|
311 |
-
.premiumButtonsContainer { float: left;width: 46%;}
|
312 |
-
.premiumSection2,.premiumSection3{ width: 38%;}
|
313 |
-
#premiumSlide2 .premiumSection1 .premiumTxt { font-size: 26px; }
|
314 |
-
#premiumSlide1 .premiumSection1 .premiumTxt:nth-child(1) {
|
315 |
-
font-size: 26px;
|
316 |
-
}
|
317 |
-
#premiumSlide1 .premFrTxt .premiumTxt:nth-child(2) {
|
318 |
-
width: 83%;
|
319 |
-
line-height: 24px;
|
320 |
-
font-size: 26px;
|
321 |
-
}
|
322 |
-
.premiumFeatures { margin-left: 6px;width: 58%;}
|
323 |
-
.premiumFeatures ul {width: 50%;float: left;margin-right: 0px;font-size: 18px;}
|
324 |
-
#premiumSlide3 .premiumSection1 .premiumTxt { width: 98%;font-size: 30px;}
|
325 |
-
#premiumSlide3 .premiumSection1 strong { width: 95%;text-align: center;float: left;}
|
326 |
-
.priceTxtwidth { width:79%;text-align: center;margin: 0px auto; }
|
327 |
-
.chkbutton {width:95%;}
|
328 |
-
.priceTxt {margin: 0 auto;width: 79%;}
|
329 |
-
#premiumSlide3 .premiumButtonsContainer {width: 97% !important;}
|
330 |
-
|
331 |
-
.wapper { padding: 28px; }
|
332 |
-
}
|
333 |
-
|
334 |
-
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation : landscape) {
|
335 |
-
#sectionPremium {
|
336 |
-
width: 90% !important;
|
337 |
-
}
|
338 |
-
.premiumButtonsContainer {
|
339 |
-
width: 40%;
|
340 |
-
}
|
341 |
-
#premiumSlide1 .premiumSection1 {
|
342 |
-
width: 53% !important;
|
343 |
-
}
|
344 |
-
.premiumFeatures {
|
345 |
-
width: 62% !important;
|
346 |
-
}
|
347 |
-
#premiumSlide3 .premiumButtonsContainer {
|
348 |
-
width: 100% !important;
|
349 |
-
}
|
350 |
-
#premiumSlide3 .premiumSection1 {
|
351 |
-
width: 100%;
|
352 |
-
}
|
353 |
-
}
|
354 |
-
|
355 |
-
/*iPad Pro*/
|
356 |
-
@media screen and (min-width: 1024px) and (max-width: 1366px){
|
357 |
-
#sectionPremium { width: 85%;margin: 50px auto;}
|
358 |
-
.premiumComponent{ width: 48%;}
|
359 |
-
.premiumButtonsContainer { float: left;}
|
360 |
-
.premiumSection2,.premiumSection3{ width: 40%;}
|
361 |
-
.premiumFeatures { margin-left: 6px;width: 58%;}
|
362 |
-
.premiumFeatures ul {width: 50%;float: left;margin-right: 0px;font-size: 19px;}
|
363 |
-
#premiumSlide3 .premiumSection1 .premiumTxt { width: 94%}
|
364 |
-
#premiumSlide3 .premiumSection1 strong { width: 95%;text-align: center;float: left;}
|
365 |
-
.priceTxtwidth { width:79%;text-align: center;margin: 0px auto; }
|
366 |
-
.chkbutton {width:95%;}
|
367 |
-
.priceTxt {margin: 0 auto;width: 79%;}
|
368 |
-
}
|
369 |
-
@media screen and (min-width: 1024px) and (max-width: 1366px) and (orientation : landscape) {
|
370 |
-
#sectionPremium {
|
371 |
-
width: 80%;
|
372 |
-
}
|
373 |
-
.premiumButtonsContainer {
|
374 |
-
float: right;
|
375 |
-
}
|
376 |
-
.premiumComponent {
|
377 |
-
width: 56%;
|
378 |
-
}
|
379 |
-
#premiumSlide3 .premiumSection1 {
|
380 |
-
width: 95%;
|
381 |
-
}
|
382 |
-
.premiumFeatures{
|
383 |
-
width: 69%;
|
384 |
-
}
|
385 |
-
.premiumSection2,.premiumSection3{ width: 38%;}
|
386 |
-
.premiumFeatures ul {
|
387 |
-
width: 50%;
|
388 |
-
float: left;
|
389 |
-
margin-right: 0px;
|
390 |
-
font-size: 23px;
|
391 |
-
line-height: 40px;
|
392 |
-
}
|
393 |
-
}
|
394 |
-
|
395 |
-
@media screen and (min-width: 900) and (max-width: 1600px){
|
396 |
-
#premiumSlide1 .premiumButtonsContainer{ width: 46% !important;}
|
397 |
-
#premiumSlide1 .premiumSection1 { width: 49% !important; }
|
398 |
-
}
|
399 |
-
|
400 |
-
@media screen and (min-width: 900px) and (max-width: 1600px) and (orientation : landscape) {
|
401 |
-
#premiumSlide1 .premiumButtonsContainer{ width: 51% !important;}
|
402 |
-
#premiumSlide1 .premiumSection1 { width: 45% !important; }
|
403 |
-
}
|
404 |
</style>
|
405 |
|
406 |
-
<
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
jQuery("#premiumSlide1 .premiumSection2 .premiumTxt").click(function(){
|
411 |
-
jQuery("#premiumSlide1").removeClass("show");
|
412 |
-
jQuery("#premiumSlide1").addClass("hide");
|
413 |
-
jQuery("#premiumSlide2").removeClass("hide");
|
414 |
-
jQuery("#premiumSlide2").addClass("show");
|
415 |
-
});
|
416 |
-
|
417 |
-
jQuery("#premiumSlide1 .premiumSection3 .premiumTxt").click(function(){
|
418 |
-
jQuery("#premiumSlide1").removeClass("show");
|
419 |
-
jQuery("#premiumSlide1").addClass("hide");
|
420 |
-
jQuery("#premiumSlide3").removeClass("hide");
|
421 |
-
jQuery("#premiumSlide3").addClass("show");
|
422 |
-
|
423 |
-
jQuery("#premiumSlide3 .premiumSection1 .premiumTxt:first-child").text("Then make your site much better with our");
|
424 |
-
});
|
425 |
-
|
426 |
-
jQuery("#premiumSlide2 .premiumSection2 .premiumTxt").click(function(){
|
427 |
-
jQuery("#premiumSlide2").removeClass("show");
|
428 |
-
jQuery("#premiumSlide2").addClass("hide");
|
429 |
-
jQuery("#premiumSlide3").removeClass("hide");
|
430 |
-
jQuery("#premiumSlide3").addClass("show");
|
431 |
-
});
|
432 |
-
|
433 |
-
jQuery("#premiumSlide2 .premiumSection3 .premiumTxt").click(function(){
|
434 |
-
jQuery("#premiumSlide2").removeClass("show");
|
435 |
-
jQuery("#premiumSlide2").addClass("hide");
|
436 |
-
jQuery("#premiumSlide3").removeClass("hide");
|
437 |
-
jQuery("#premiumSlide3").addClass("show");
|
438 |
-
|
439 |
-
jQuery("#premiumSlide3 .premiumSection1 .premiumTxt:first-child").html("Then do <span>yourself</span> a favor by getting our");
|
440 |
-
});
|
441 |
-
|
442 |
-
jQuery(".linkPremium").click(function(){
|
443 |
-
window.open('https://www.ultimatelysocial.com/usm-premium/?utm_source=usmi_settings_page&utm_campaign=do_you_like_your_website&utm_medium=banner','_blank');
|
444 |
-
});
|
445 |
-
});
|
446 |
-
</script>
|
447 |
-
|
448 |
-
<div id="sectionPremium">
|
449 |
-
|
450 |
-
<div id="premiumSlide1" class="show slide">
|
451 |
-
|
452 |
-
<div class="premiumSection1 premiumComponent premFrTxt">
|
453 |
-
<div class="premiumTxt">Do you love <img src="<?php echo SFSI_PLUGURL; ?>images/heart.png"></div>
|
454 |
-
<div class="premiumTxt"><span>your</span> website?</div>
|
455 |
-
</div>
|
456 |
-
|
457 |
-
<div class="premiumButtonsContainer">
|
458 |
-
|
459 |
-
<div class="premiumSection2 premiumComponent"><div class="premiumTxt">Yes!</div></div>
|
460 |
-
|
461 |
-
<div class="premiumSection3 premiumComponent">
|
462 |
-
<div class="premiumTxt">No,</div>
|
463 |
-
<div class="premiumTxt">it's horrible</div>
|
464 |
-
</div>
|
465 |
-
</div>
|
466 |
-
|
467 |
-
</div>
|
468 |
-
|
469 |
-
<div id="premiumSlide2" class="hide slide">
|
470 |
-
|
471 |
-
<div class="premiumSection1 premiumComponent premFrTxt">
|
472 |
-
<div class="premiumTxt txtb">And things you love should</div>
|
473 |
-
<div class="premiumTxt"><strong>only get the best,</strong> right?</div>
|
474 |
-
</div>
|
475 |
-
|
476 |
-
<div class="premiumButtonsContainer">
|
477 |
-
<div class="premiumSection2 premiumComponent"><div class="premiumTxt">Yes!</div></div>
|
478 |
-
|
479 |
-
<div class="premiumSection3 premiumComponent">
|
480 |
-
<div class="premiumTxt">No,</div>
|
481 |
-
<div class="premiumTxt">it’s only about</div>
|
482 |
-
<div class="premiumTxt">me me me</div>
|
483 |
-
</div>
|
484 |
-
</div>
|
485 |
-
|
486 |
-
</div>
|
487 |
-
|
488 |
-
<div id="premiumSlide3" class="hide slide">
|
489 |
-
|
490 |
-
<div class="premiumSection1 premiumComponent premFrTxt">
|
491 |
-
<div class="premiumTxt">Then give your site a treat with our</div>
|
492 |
-
<div class="premiumTxt"><strong>premium plugin</strong></div>
|
493 |
-
</div>
|
494 |
-
|
495 |
-
<div class="premiumButtonsContainer" style="width: 100%;">
|
496 |
-
<div class="premiumImg"><img src="<?php echo SFSI_PLUGURL; ?>images/ultimate-icon.png" /></div>
|
497 |
-
<div class="premiumFeatures">
|
498 |
-
<ul>
|
499 |
-
<li>Better design</li>
|
500 |
-
<li>Faster loading</li>
|
501 |
-
<li>Mobile optimized</li>
|
502 |
-
<li>Better placement</li>
|
503 |
-
</ul>
|
504 |
-
|
505 |
-
<ul>
|
506 |
-
<li>More platforms</li>
|
507 |
-
<li>Friendly support</li>
|
508 |
-
<li>More shares</li>
|
509 |
-
<li>…and <span class="linkPremium">so much more</span></li>
|
510 |
-
</ul>
|
511 |
-
</div>
|
512 |
-
</div>
|
513 |
-
|
514 |
-
<div class="premiumTxt chkbutton"><a href="https://www.ultimatelysocial.com/usm-premium/?utm_source=usmi_settings_page&utm_campaign=do_you_like_your_website&utm_medium=banner" target="_blank">Check it out ></a></div>
|
515 |
-
<!-- <div class="premiumTxt priceTxt">To make it available for all people pricing is <strong>super-fair</strong>, starting at 15.98 USD only</div> -->
|
516 |
-
</div>
|
517 |
-
</div>
|
518 |
-
|
519 |
-
|
520 |
-
|
521 |
-
<!-- <div class="pop-overlay read-overlay" >
|
522 |
-
<div class="pop_up_box sfsi_pop_up" >
|
523 |
-
<img src="<?php echo SFSI_PLUGURL; ?>images/close.jpg" id="close_popup" class="sfsicloseBtn" />
|
524 |
-
<h4 id="readmore_text">Note: Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</h4>
|
525 |
</div>
|
526 |
-
</div> -->
|
1 |
+
<style>
|
2 |
+
.banner_support_forum{margin: 50px auto;text-align: center;width: 80%;}
|
3 |
+
.banner_support_forum .banner-1 img{width: 100%;}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
</style>
|
5 |
|
6 |
+
<div class="banner_support_forum">
|
7 |
+
<a target="_blank" href="https://wordpress.org/support/plugin/ultimate-social-media-icons#no-topic-0" class="banner-1">
|
8 |
+
<img src="<?php echo SFSI_PLUGURL; ?>images/banner_support_forum.png">
|
9 |
+
</a>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
</div>
|
|