Version Description
- Non-numeric value errors fixed
Download this release
Release Info
Developer | socialdude |
Plugin | Social Share Icons & Social Share Buttons |
Version | 2.8.2 |
Comparing to | |
See all releases |
Code changes from version 2.8.0 to 2.8.2
- libs/controllers/sfsi_frontpopUp.php +3 -3
- libs/sfsi_install_uninstall.php +3 -4
- readme.txt +5 -2
- ultimate_social_media_icons.php +9 -4
- views/sfsi_options_view.php +2 -2
- views/sfsi_section_for_premium.php +7 -398
libs/controllers/sfsi_frontpopUp.php
CHANGED
@@ -60,7 +60,7 @@ function sfsi_plus_check_PopUp($content)
|
|
60 |
}
|
61 |
if($sfsi_plus_section7_options['sfsi_plus_Shown_pop']=="ETscroll")
|
62 |
{
|
63 |
-
$time_popUp = $sfsi_plus_section7_options['sfsi_plus_Shown_popupOnceTime'];
|
64 |
$time_popUp = $time_popUp*1000;
|
65 |
ob_start();
|
66 |
?>
|
@@ -103,8 +103,8 @@ function sfsi_plus_check_PopUp($content)
|
|
103 |
}
|
104 |
if($sfsi_plus_section7_options['sfsi_plus_Shown_pop']=="LimitPopUp")
|
105 |
{
|
106 |
-
$time_popUp = $sfsi_plus_section7_options['sfsi_plus_Shown_popuplimitPerUserTime'];
|
107 |
-
$end_time
|
108 |
$time_popUp = $time_popUp*1000;
|
109 |
|
110 |
if(!empty($end_time))
|
60 |
}
|
61 |
if($sfsi_plus_section7_options['sfsi_plus_Shown_pop']=="ETscroll")
|
62 |
{
|
63 |
+
$time_popUp = (int) $sfsi_plus_section7_options['sfsi_plus_Shown_popupOnceTime'];
|
64 |
$time_popUp = $time_popUp*1000;
|
65 |
ob_start();
|
66 |
?>
|
103 |
}
|
104 |
if($sfsi_plus_section7_options['sfsi_plus_Shown_pop']=="LimitPopUp")
|
105 |
{
|
106 |
+
$time_popUp = (int) $sfsi_plus_section7_options['sfsi_plus_Shown_popuplimitPerUserTime'];
|
107 |
+
$end_time = (int) $_COOKIE['sfsi_socialPopUp']+($time_popUp*60);
|
108 |
$time_popUp = $time_popUp*1000;
|
109 |
|
110 |
if(!empty($end_time))
|
libs/sfsi_install_uninstall.php
CHANGED
@@ -12,7 +12,7 @@ function sfsi_plus_update_plugin()
|
|
12 |
}
|
13 |
|
14 |
//Install version
|
15 |
-
update_option("sfsi_plus_pluginVersion", "2.
|
16 |
|
17 |
if(!get_option('sfsi_plus_serverphpVersionnotification'))
|
18 |
{
|
@@ -745,11 +745,10 @@ function sfsi_plus_rating_msg()
|
|
745 |
{
|
746 |
echo '
|
747 |
<div class="sfwp_fivestar updated notice notice-success is-dismissible">
|
748 |
-
<p>'.__('We noticed you\'ve been using the Ultimate Social Media PLUS Plugin for more than 30 days. If you\'re happy with it, could you please do us a BIG favor and
|
749 |
<ul class="sfwp_fivestar_ul">
|
750 |
-
<li><a href="https://wordpress.org/support/plugin/ultimate-social-media-plus
|
751 |
<li><a href="javascript:void(0);" class="sfsiHideRating" title="I already did">'.__('I already did', SFSI_PLUS_DOMAIN).'</a></li>
|
752 |
-
<li><a href="javascript:void(0);" class="sfsiHideRating" title="No, not good enough">'.__('No, not good enough', SFSI_PLUS_DOMAIN).'</a></li>
|
753 |
</ul>
|
754 |
</div>
|
755 |
<script>
|
12 |
}
|
13 |
|
14 |
//Install version
|
15 |
+
update_option("sfsi_plus_pluginVersion", "2.82");
|
16 |
|
17 |
if(!get_option('sfsi_plus_serverphpVersionnotification'))
|
18 |
{
|
745 |
{
|
746 |
echo '
|
747 |
<div class="sfwp_fivestar updated notice notice-success is-dismissible">
|
748 |
+
<p>'.__('We noticed you\'ve been using the Ultimate Social Media PLUS 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!?', SFSI_PLUS_DOMAIN).'</p>
|
749 |
<ul class="sfwp_fivestar_ul">
|
750 |
+
<li><a href="https://wordpress.org/support/plugin/ultimate-social-media-plus#new-topic-0" target="_new" title="Yes, that\'s fair, let me give feedback!">'.__('Yes, that\'s fair, let me give feedback!', SFSI_PLUS_DOMAIN).'</a></li>
|
751 |
<li><a href="javascript:void(0);" class="sfsiHideRating" title="I already did">'.__('I already did', SFSI_PLUS_DOMAIN).'</a></li>
|
|
|
752 |
</ul>
|
753 |
</div>
|
754 |
<script>
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: socialsharepro
|
|
3 |
Tags: Share, sharing, share buttons, share button, share social media, share icons, social buttons, sharing buttons, sharing icons, social media icons, social share, social sharing
|
4 |
Requires at least: 3.0
|
5 |
Tested up to: 4.9.4
|
6 |
-
Stable tag: 2.8.
|
7 |
License: GPLv2
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -432,6 +432,9 @@ The premium plugin offrs many more social buttons from other social media platfo
|
|
432 |
|
433 |
== Changelog ==
|
434 |
|
|
|
|
|
|
|
435 |
= 2.8.0 =
|
436 |
* Removed error log files
|
437 |
* Follow icon sometimes showed too large - fixed
|
@@ -721,5 +724,5 @@ The premium plugin offrs many more social buttons from other social media platfo
|
|
721 |
|
722 |
== Upgrade Notice ==
|
723 |
|
724 |
-
= 2.8.
|
725 |
* Please update
|
3 |
Tags: Share, sharing, share buttons, share button, share social media, share icons, social buttons, sharing buttons, sharing icons, social media icons, social share, social sharing
|
4 |
Requires at least: 3.0
|
5 |
Tested up to: 4.9.4
|
6 |
+
Stable tag: 2.8.2
|
7 |
License: GPLv2
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
432 |
|
433 |
== Changelog ==
|
434 |
|
435 |
+
= 2.8.2 =
|
436 |
+
* Non-numeric value errors fixed
|
437 |
+
|
438 |
= 2.8.0 =
|
439 |
* Removed error log files
|
440 |
* Follow icon sometimes showed too large - fixed
|
724 |
|
725 |
== Upgrade Notice ==
|
726 |
|
727 |
+
= 2.8.2 =
|
728 |
* Please update
|
ultimate_social_media_icons.php
CHANGED
@@ -3,11 +3,11 @@
|
|
3 |
Plugin Name: Ultimate Social Media PLUS
|
4 |
Plugin URI: http://ultimatelysocial.com
|
5 |
Description: The best social media plugin on the market. And 100% FREE. Allows you to add social media & share icons to your blog (esp. Facebook, Twitter, Email, RSS, Pinterest, Instagram, Google+, LinkedIn, Share-button). It offers a wide range of design options and other features.
|
6 |
-
Author:
|
7 |
Text Domain: ultimate-social-media-plus
|
8 |
Domain Path: /languages
|
9 |
Author URI: http://ultimatelysocial.com
|
10 |
-
Version: 2.8.
|
11 |
License: GPLv2
|
12 |
*/
|
13 |
|
@@ -92,7 +92,7 @@ register_deactivation_hook(__FILE__, 'sfsi_plus_deactivate_plugin');
|
|
92 |
//register_uninstall_hook(__FILE__, 'sfsi_plus_Unistall_plugin');
|
93 |
|
94 |
/*Plugin version setup*/
|
95 |
-
if(!get_option('sfsi_plus_pluginVersion') || get_option('sfsi_plus_pluginVersion') < 2.
|
96 |
{
|
97 |
add_action("init", "sfsi_plus_update_plugin");
|
98 |
}
|
@@ -859,10 +859,15 @@ function sfsi_plus_get_bloginfo($url)
|
|
859 |
add_filter( 'plugin_action_links_' . plugin_basename(__FILE__), 'sfsi_plus_action_links', 3 );
|
860 |
function sfsi_plus_action_links ( $mylinks )
|
861 |
{
|
862 |
-
$
|
|
|
863 |
$mylinks[] = @$mylinks['edit'];
|
864 |
$mylinks[] = '<a href="'.admin_url("/admin.php?page=sfsi-plus-options").'">Settings</a>';
|
865 |
unset ($mylinks['edit']);
|
|
|
|
|
|
|
|
|
866 |
return $mylinks;
|
867 |
}
|
868 |
|
3 |
Plugin Name: Ultimate Social Media PLUS
|
4 |
Plugin URI: http://ultimatelysocial.com
|
5 |
Description: The best social media plugin on the market. And 100% FREE. Allows you to add social media & share icons to your blog (esp. Facebook, Twitter, Email, RSS, Pinterest, Instagram, Google+, LinkedIn, Share-button). It offers a wide range of design options and other features.
|
6 |
+
Author: Social Share Pro
|
7 |
Text Domain: ultimate-social-media-plus
|
8 |
Domain Path: /languages
|
9 |
Author URI: http://ultimatelysocial.com
|
10 |
+
Version: 2.8.2
|
11 |
License: GPLv2
|
12 |
*/
|
13 |
|
92 |
//register_uninstall_hook(__FILE__, 'sfsi_plus_Unistall_plugin');
|
93 |
|
94 |
/*Plugin version setup*/
|
95 |
+
if(!get_option('sfsi_plus_pluginVersion') || get_option('sfsi_plus_pluginVersion') < 2.82)
|
96 |
{
|
97 |
add_action("init", "sfsi_plus_update_plugin");
|
98 |
}
|
859 |
add_filter( 'plugin_action_links_' . plugin_basename(__FILE__), 'sfsi_plus_action_links', 3 );
|
860 |
function sfsi_plus_action_links ( $mylinks )
|
861 |
{
|
862 |
+
$linkQuestion = '<a target="_blank" href="https://wordpress.org/support/plugin/ultimate-social-media-plus#new-topic-0" style="color:#FF0000;"><b>Need help?</b></a>';
|
863 |
+
$linkProVersion = '<a href="https://www.ultimatelysocial.com/usm-premium/?utm_source=usmplus_manage_plugin_page&utm_campaign=check_out_pro_version&utm_medium=banner" style="color:#38B54A;"><b>Check out pro version</b></a>';
|
864 |
$mylinks[] = @$mylinks['edit'];
|
865 |
$mylinks[] = '<a href="'.admin_url("/admin.php?page=sfsi-plus-options").'">Settings</a>';
|
866 |
unset ($mylinks['edit']);
|
867 |
+
|
868 |
+
array_unshift($mylinks, $linkProVersion);
|
869 |
+
array_unshift($mylinks, $linkQuestion);
|
870 |
+
|
871 |
return $mylinks;
|
872 |
}
|
873 |
|
views/sfsi_options_view.php
CHANGED
@@ -71,7 +71,7 @@
|
|
71 |
<p><a style="text-decoration: none;" href="javascript:void(0)"><?php _e( 'New:', SFSI_PLUS_DOMAIN ); ?> </a><?php _e('Our new Premium Plugin allows many more placement options, better sharing features (e.g. define which text & images will get shared), optimization for mobile, more icon design styles, themed icons, and much more.', SFSI_PLUS_DOMAIN ); ?> <a href="https://www.ultimatelysocial.com/usm-premium/?utm_source=usmplus_settings_page&utm_campaign=notification_banner&utm_medium=banner" target="_blank"><?php _e('See all features', SFSI_PLUS_DOMAIN ); ?></a></p>
|
72 |
|
73 |
|
74 |
-
<p><?php _e( 'Please', SFSI_PLUS_DOMAIN ); ?> <a target="_blank" style="text-decoration: underline;" href="https://wordpress.org/support/plugin/ultimate-social-media-plus
|
75 |
|
76 |
</div>
|
77 |
|
@@ -83,7 +83,7 @@
|
|
83 |
<p class="ask-question">Ask them in the...</p>
|
84 |
</div>
|
85 |
<div class="support-forum-green-div">
|
86 |
-
<a target="_blank" href="https://wordpress.org/support/plugin/ultimate-social-media-plus" class="support-forum-green-bg">
|
87 |
<img src="<?php echo SFSI_PLUS_PLUGURL ?>images/support.png">
|
88 |
<p class="support-forum">Support Forum</p>
|
89 |
</a>
|
71 |
<p><a style="text-decoration: none;" href="javascript:void(0)"><?php _e( 'New:', SFSI_PLUS_DOMAIN ); ?> </a><?php _e('Our new Premium Plugin allows many more placement options, better sharing features (e.g. define which text & images will get shared), optimization for mobile, more icon design styles, themed icons, and much more.', SFSI_PLUS_DOMAIN ); ?> <a href="https://www.ultimatelysocial.com/usm-premium/?utm_source=usmplus_settings_page&utm_campaign=notification_banner&utm_medium=banner" target="_blank"><?php _e('See all features', SFSI_PLUS_DOMAIN ); ?></a></p>
|
72 |
|
73 |
|
74 |
+
<p><?php _e( 'Please', SFSI_PLUS_DOMAIN ); ?> <a target="_blank" style="text-decoration: underline;" href="https://wordpress.org/support/plugin/ultimate-social-media-plus#no-topic-0"><?php _e( 'give us feedback,', SFSI_PLUS_DOMAIN ); ?></a><?php _e( ' and tell us how we can make the plugin better. Thank you!.', SFSI_PLUS_DOMAIN ); ?></p>
|
75 |
|
76 |
</div>
|
77 |
|
83 |
<p class="ask-question">Ask them in the...</p>
|
84 |
</div>
|
85 |
<div class="support-forum-green-div">
|
86 |
+
<a target="_blank" href="https://wordpress.org/support/plugin/ultimate-social-media-plus#no-topic-0" class="support-forum-green-bg">
|
87 |
<img src="<?php echo SFSI_PLUS_PLUGURL ?>images/support.png">
|
88 |
<p class="support-forum">Support Forum</p>
|
89 |
</a>
|
views/sfsi_section_for_premium.php
CHANGED
@@ -1,401 +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 |
-
font-family: helveticaregular;
|
16 |
-
}
|
17 |
-
#premiumSlide1 .premiumSection1 .premiumTxt img{
|
18 |
-
vertical-align: middle;
|
19 |
-
}
|
20 |
-
.premiumButtonsContainer {
|
21 |
-
float: right;
|
22 |
-
width: 41%;
|
23 |
-
}
|
24 |
-
.premiumComponent{
|
25 |
-
width: 55%;
|
26 |
-
padding: 12px;
|
27 |
-
display: inline-block;
|
28 |
-
text-align: center;
|
29 |
-
font-size: 25px;
|
30 |
-
line-height: 28px;
|
31 |
-
cursor: pointer;
|
32 |
-
float: left;
|
33 |
-
min-height: 74px;
|
34 |
-
}
|
35 |
-
.premiumTxt {
|
36 |
-
line-height: 40px;
|
37 |
-
color: #000;
|
38 |
-
font-weight: 500;
|
39 |
-
font-size: 30px;
|
40 |
-
}
|
41 |
-
.premiumSection1 .premiumTxt {
|
42 |
-
width: 100%;
|
43 |
-
text-align: center;
|
44 |
-
font-size: 39px;
|
45 |
-
line-height: 50px;
|
46 |
-
}
|
47 |
-
.premiumSection2 .premiumTxt{
|
48 |
-
vertical-align: middle;
|
49 |
-
text-align: center;
|
50 |
-
min-height: 80px;
|
51 |
-
line-height: 80px;
|
52 |
-
color: #fff;
|
53 |
-
font-weight: 500;
|
54 |
-
letter-spacing: 2px;
|
55 |
-
}
|
56 |
-
.premiumSection2 {
|
57 |
-
vertical-align: top;
|
58 |
-
background-image: url(<?php echo SFSI_PLUS_PLUGURL; ?>images/yesBtnBg.png);
|
59 |
-
background-repeat: no-repeat;
|
60 |
-
width: 41%;
|
61 |
-
padding: 18px 12px 24px 12px;
|
62 |
-
}
|
63 |
-
.premiumSection3 {
|
64 |
-
vertical-align: top;
|
65 |
-
background-image: url(<?php echo SFSI_PLUS_PLUGURL; ?>images/noBtnBg.png);
|
66 |
-
background-repeat: no-repeat;
|
67 |
-
width: 41%;
|
68 |
-
padding-top: 34px;
|
69 |
-
margin-left: 9px;
|
70 |
-
}
|
71 |
-
#premiumSlide3 .premiumSection1{
|
72 |
-
width: 100%;
|
73 |
-
}
|
74 |
-
.premiumSection3 .premiumTxt{
|
75 |
-
color: #fff;
|
76 |
-
}
|
77 |
-
#premiumSlide1 .premiumSection1 .premiumTxt:nth-child(1){
|
78 |
-
font-size: 39px;
|
79 |
-
}
|
80 |
-
#premiumSlide1 .premiumSection3 .premiumTxt:nth-child(2){
|
81 |
-
line-height: 21px;
|
82 |
-
}
|
83 |
-
.premiumSection3 .premiumTxt:nth-child(2),.premiumSection3 .premiumTxt:nth-child(3){
|
84 |
-
font-size: 16px;
|
85 |
-
line-height: 20px;
|
86 |
-
}
|
87 |
-
.premFrTxt{
|
88 |
-
cursor: default;
|
89 |
-
}
|
90 |
-
#premiumSlide1 .premFrTxt{
|
91 |
-
padding-top: 2px;
|
92 |
-
}
|
93 |
-
.txtb{
|
94 |
-
font-size 39px;
|
95 |
-
}
|
96 |
-
#premiumSlide2 .premiumSection3 {
|
97 |
-
padding-top:20px;
|
98 |
-
padding-bottom: 20px;
|
99 |
-
}
|
100 |
-
.show{
|
101 |
-
display: block;
|
102 |
-
}
|
103 |
-
.hide{
|
104 |
-
display: none;
|
105 |
-
}
|
106 |
-
.premiumFeatures {
|
107 |
-
float: left;
|
108 |
-
margin-top: 15px;
|
109 |
-
margin-left: 48px;
|
110 |
-
width: 64%;
|
111 |
-
}
|
112 |
-
.premiumFeatures ul{
|
113 |
-
float: left;
|
114 |
-
width: 45%;
|
115 |
-
text-align: left;
|
116 |
-
line-height: 38px;
|
117 |
-
font-size: 23px;
|
118 |
-
list-style-image: url(<?php echo SFSI_PLUS_PLUGURL; ?>images/tick.png);
|
119 |
-
font-weight: 600;
|
120 |
-
color: #000;
|
121 |
-
margin-right: 27px;
|
122 |
-
}
|
123 |
-
.premiumFeatures ul li{
|
124 |
-
padding-left:4px;
|
125 |
-
}
|
126 |
-
.premiumFeatures ul:nth-child(2) li:last-child span{
|
127 |
-
color: #00b050;
|
128 |
-
}
|
129 |
-
.premiumImg {
|
130 |
-
float: left;
|
131 |
-
}
|
132 |
-
.chkbutton{
|
133 |
-
/* float: left; */
|
134 |
-
width: 90%;
|
135 |
-
/* margin-top: 40px; */
|
136 |
-
/* margin-bottom: 20px; */
|
137 |
-
text-align: center;
|
138 |
-
margin: 0px auto;
|
139 |
-
}
|
140 |
-
.chkbutton a {
|
141 |
-
width: 98%;
|
142 |
-
background: rgb(0,200,83);
|
143 |
-
float: left;
|
144 |
-
color: white;
|
145 |
-
text-decoration: none;
|
146 |
-
padding: 13px 4px 13px 5px;
|
147 |
-
margin: 24px 0 7px 0;
|
148 |
-
font-weight: 600;
|
149 |
-
letter-spacing: 2px;
|
150 |
-
font-size: 32px;
|
151 |
-
}
|
152 |
-
.priceTxt {
|
153 |
-
text-align: center;
|
154 |
-
font-size: 19px;
|
155 |
-
clear: both;
|
156 |
-
}
|
157 |
-
.premFrTxt span{
|
158 |
-
text-decoration: underline;
|
159 |
-
}
|
160 |
-
#premiumSlide1 .premFrTxt .premiumTxt:nth-child(2){
|
161 |
-
width: 88%;
|
162 |
-
line-height: 24px;
|
163 |
-
}
|
164 |
-
.premiumImg img {
|
165 |
-
width: 70%;
|
166 |
-
margin-top: 6px;
|
167 |
-
}
|
168 |
-
#premiumSlide3 .premiumSection1 .premiumTxt:first-child span{
|
169 |
-
text-decoration: underline;
|
170 |
-
}
|
171 |
-
.linkPremium{
|
172 |
-
cursor: pointer;
|
173 |
-
}
|
174 |
-
|
175 |
-
|
176 |
-
@media screen and (min-width: 360px) and (max-width: 360px){
|
177 |
-
#sfpageLoad {left:0px;}
|
178 |
-
.wapper { width: 95%; padding: 0px;}
|
179 |
-
|
180 |
-
#sectionPremium { width: 90%;margin: 50px 5px;}
|
181 |
-
.premiumComponent{ width: 88%;}
|
182 |
-
.premiumButtonsContainer { float: left;width: 100%;margin-top: 10px;}
|
183 |
-
.premiumSection2,.premiumSection3{ width: 39%;}
|
184 |
-
#premiumSlide2 .premiumSection1 .premiumTxt { font-size: 22px;line-height: 30px;width: 100%; }
|
185 |
-
#premiumSlide1 .premiumSection1 .premiumTxt:nth-child(1) {font-size: 26px;}
|
186 |
-
#premiumSlide1 .premFrTxt .premiumTxt:nth-child(2) {width: 78%;line-height: 24px;font-size: 26px;}
|
187 |
-
#premiumSlide2 .premiumSection1 {padding-bottom: 0px;}
|
188 |
-
#premiumSlide2 .premiumSection1 .premiumButtonsContainer { margin-top: 10px;}
|
189 |
-
.premiumFeatures { margin-left: 6px;width: 100%;}
|
190 |
-
.premiumFeatures ul { width: 60%;float: left;font-size: 18px;margin: 0px auto;}
|
191 |
-
|
192 |
-
#premiumSlide3 .premiumSection1 {width: 89%;}
|
193 |
-
#premiumSlide3 .premiumSection1 .premiumTxt { width: 100%;font-size: 30px;line-height: 40px;}
|
194 |
-
#premiumSlide3 .premiumSection1 strong { width: 95%;text-align: center;float: left;}
|
195 |
-
.priceTxtwidth { width:79%;text-align: center;margin: 0px auto; }
|
196 |
-
.chkbutton { width:95%;}
|
197 |
-
.priceTxt { margin: 0 auto;width: 74%;line-height: 23px;font-size: 15px;}
|
198 |
-
#premiumSlide3 .premiumButtonsContainer {width: 97% !important;}
|
199 |
-
}
|
200 |
-
|
201 |
-
|
202 |
-
/*Iphone 5*/
|
203 |
-
@media screen and (min-width: 320px){
|
204 |
-
|
205 |
-
}
|
206 |
-
/*Iphone 6*/
|
207 |
-
@media screen and (min-width: 375px){
|
208 |
-
|
209 |
-
}
|
210 |
-
/*Iphone 6 Plus*/
|
211 |
-
@media screen and (min-width: 414px){
|
212 |
-
|
213 |
-
}
|
214 |
-
/*iPad*/
|
215 |
-
@media screen and (min-width: 768px) and (max-width: 1023px){
|
216 |
-
#sectionPremium { width: 95%;margin: 50px 5px;}
|
217 |
-
.premiumComponent{ width: 50%;}
|
218 |
-
.premiumButtonsContainer { float: left;width: 46%;}
|
219 |
-
.premiumSection2,.premiumSection3{ width: 38%;}
|
220 |
-
#premiumSlide2 .premiumSection1 .premiumTxt { font-size: 26px; }
|
221 |
-
#premiumSlide1 .premiumSection1 .premiumTxt:nth-child(1) {
|
222 |
-
font-size: 26px;
|
223 |
-
}
|
224 |
-
#premiumSlide1 .premFrTxt .premiumTxt:nth-child(2) {
|
225 |
-
width: 83%;
|
226 |
-
line-height: 24px;
|
227 |
-
font-size: 26px;
|
228 |
-
}
|
229 |
-
.premiumFeatures { margin-left: 6px;width: 58%;}
|
230 |
-
.premiumFeatures ul {width: 50%;float: left;margin-right: 0px;font-size: 18px;}
|
231 |
-
#premiumSlide3 .premiumSection1 .premiumTxt { width: 98%;font-size: 30px;}
|
232 |
-
#premiumSlide3 .premiumSection1 strong { width: 95%;text-align: center;float: left;}
|
233 |
-
.priceTxtwidth { width:79%;text-align: center;margin: 0px auto; }
|
234 |
-
.chkbutton {width:95%;}
|
235 |
-
.priceTxt {margin: 0 auto;width: 79%;}
|
236 |
-
#premiumSlide3 .premiumButtonsContainer {width: 97% !important;}
|
237 |
-
|
238 |
-
.wapper { padding: 28px; }
|
239 |
-
}
|
240 |
-
/*iPad Pro*/
|
241 |
-
@media screen and (min-width: 1024px) and (max-width: 1366px){
|
242 |
-
#sectionPremium { width: 97%;margin: 50px auto;}
|
243 |
-
.premiumComponent{ width: 48%;}
|
244 |
-
.premiumButtonsContainer { float: left;}
|
245 |
-
.premiumSection2,.premiumSection3{ width: 40%;}
|
246 |
-
.premiumFeatures { margin-left: 6px;width: 58%;}
|
247 |
-
.premiumFeatures ul {width: 50%;float: left;margin-right: 0px;font-size: 19px;}
|
248 |
-
#premiumSlide3 .premiumSection1 .premiumTxt { width: 94%}
|
249 |
-
#premiumSlide3 .premiumSection1 strong { width: 95%;text-align: center;float: left;}
|
250 |
-
.priceTxtwidth { width:79%;text-align: center;margin: 0px auto; }
|
251 |
-
.chkbutton {width:95%;}
|
252 |
-
.priceTxt {margin: 0 auto;width: 79%;}
|
253 |
-
}
|
254 |
-
@media screen and (min-width: 1024px) and (max-width: 1366px) and (orientation : landscape) {
|
255 |
-
#sectionPremium {
|
256 |
-
width: 80%;
|
257 |
-
}
|
258 |
-
.premiumButtonsContainer {
|
259 |
-
float: right;
|
260 |
-
}
|
261 |
-
.premiumComponent {
|
262 |
-
width: 56%;
|
263 |
-
}
|
264 |
-
#premiumSlide3 .premiumSection1 {
|
265 |
-
width: 95%;
|
266 |
-
}
|
267 |
-
.premiumFeatures{
|
268 |
-
width: 69%;
|
269 |
-
}
|
270 |
-
.premiumSection2,.premiumSection3{ width: 38%;}
|
271 |
-
.premiumFeatures ul {
|
272 |
-
width: 50%;
|
273 |
-
float: left;
|
274 |
-
margin-right: 0px;
|
275 |
-
font-size: 23px;
|
276 |
-
line-height: 40px;
|
277 |
-
}
|
278 |
-
}
|
279 |
</style>
|
280 |
|
281 |
-
<
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
jQuery("#premiumSlide1 .premiumSection2 .premiumTxt").click(function(){
|
286 |
-
jQuery("#premiumSlide1").removeClass("show");
|
287 |
-
jQuery("#premiumSlide1").addClass("hide");
|
288 |
-
jQuery("#premiumSlide2").removeClass("hide");
|
289 |
-
jQuery("#premiumSlide2").addClass("show");
|
290 |
-
});
|
291 |
-
|
292 |
-
jQuery("#premiumSlide1 .premiumSection3 .premiumTxt").click(function(){
|
293 |
-
jQuery("#premiumSlide1").removeClass("show");
|
294 |
-
jQuery("#premiumSlide1").addClass("hide");
|
295 |
-
jQuery("#premiumSlide3").removeClass("hide");
|
296 |
-
jQuery("#premiumSlide3").addClass("show");
|
297 |
-
|
298 |
-
jQuery("#premiumSlide3 .premiumSection1 .premiumTxt:first-child").text("Then make your site much better with our");
|
299 |
-
});
|
300 |
-
|
301 |
-
jQuery("#premiumSlide2 .premiumSection2 .premiumTxt").click(function(){
|
302 |
-
jQuery("#premiumSlide2").removeClass("show");
|
303 |
-
jQuery("#premiumSlide2").addClass("hide");
|
304 |
-
jQuery("#premiumSlide3").removeClass("hide");
|
305 |
-
jQuery("#premiumSlide3").addClass("show");
|
306 |
-
});
|
307 |
-
|
308 |
-
jQuery("#premiumSlide2 .premiumSection3 .premiumTxt").click(function(){
|
309 |
-
jQuery("#premiumSlide2").removeClass("show");
|
310 |
-
jQuery("#premiumSlide2").addClass("hide");
|
311 |
-
jQuery("#premiumSlide3").removeClass("hide");
|
312 |
-
jQuery("#premiumSlide3").addClass("show");
|
313 |
-
|
314 |
-
jQuery("#premiumSlide3 .premiumSection1 .premiumTxt:first-child").html("Then do <span>yourself</span> a favor by getting our");
|
315 |
-
});
|
316 |
-
|
317 |
-
jQuery(".linkPremium").click(function(){
|
318 |
-
window.open('https://www.ultimatelysocial.com/usm-premium/?utm_source=usmplus_settings_page&utm_campaign=do_you_like_your_website&utm_medium=banner','_blank');
|
319 |
-
});
|
320 |
-
});
|
321 |
-
</script>
|
322 |
-
|
323 |
-
<div id="sectionPremium">
|
324 |
-
|
325 |
-
<div id="premiumSlide1" class="show slide">
|
326 |
-
|
327 |
-
<div class="premiumSection1 premiumComponent premFrTxt">
|
328 |
-
<div class="premiumTxt">Do you love <img src="<?php echo SFSI_PLUS_PLUGURL; ?>images/heart.png"></div>
|
329 |
-
<div class="premiumTxt"><span>your</span> website?</div>
|
330 |
-
</div>
|
331 |
-
|
332 |
-
<div class="premiumButtonsContainer">
|
333 |
-
|
334 |
-
<div class="premiumSection2 premiumComponent"><div class="premiumTxt">Yes!</div></div>
|
335 |
-
|
336 |
-
<div class="premiumSection3 premiumComponent">
|
337 |
-
<div class="premiumTxt">No,</div>
|
338 |
-
<div class="premiumTxt">it's horrible</div>
|
339 |
-
</div>
|
340 |
-
</div>
|
341 |
-
|
342 |
-
</div>
|
343 |
-
|
344 |
-
<div id="premiumSlide2" class="hide slide">
|
345 |
-
|
346 |
-
<div class="premiumSection1 premiumComponent premFrTxt">
|
347 |
-
<div class="premiumTxt txtb">And things you love should</div>
|
348 |
-
<div class="premiumTxt"><strong>only get the best,</strong> right?</div>
|
349 |
-
</div>
|
350 |
-
|
351 |
-
<div class="premiumButtonsContainer">
|
352 |
-
<div class="premiumSection2 premiumComponent"><div class="premiumTxt">Yes!</div></div>
|
353 |
-
|
354 |
-
<div class="premiumSection3 premiumComponent">
|
355 |
-
<div class="premiumTxt">No,</div>
|
356 |
-
<div class="premiumTxt">it’s only about</div>
|
357 |
-
<div class="premiumTxt">me me me</div>
|
358 |
-
</div>
|
359 |
-
</div>
|
360 |
-
|
361 |
-
</div>
|
362 |
-
|
363 |
-
<div id="premiumSlide3" class="hide slide">
|
364 |
-
|
365 |
-
<div class="premiumSection1 premiumComponent premFrTxt">
|
366 |
-
<div class="premiumTxt">Then give your site a treat with our</div>
|
367 |
-
<div class="premiumTxt"><strong>premium plugin</strong></div>
|
368 |
-
</div>
|
369 |
-
|
370 |
-
<div class="premiumButtonsContainer" style="width: 100%;">
|
371 |
-
<div class="premiumImg"><img src="<?php echo SFSI_PLUS_PLUGURL; ?>images/ultimate-icon.png" /></div>
|
372 |
-
<div class="premiumFeatures">
|
373 |
-
<ul>
|
374 |
-
<li>Better design</li>
|
375 |
-
<li>Faster loading</li>
|
376 |
-
<li>Mobile optimized</li>
|
377 |
-
<li>Better placement</li>
|
378 |
-
</ul>
|
379 |
-
|
380 |
-
<ul>
|
381 |
-
<li>More platforms</li>
|
382 |
-
<li>Friendly support</li>
|
383 |
-
<li>More shares</li>
|
384 |
-
<li>…and <span class="linkPremium">so much more</span></li>
|
385 |
-
</ul>
|
386 |
-
</div>
|
387 |
-
</div>
|
388 |
-
|
389 |
-
<div class="premiumTxt chkbutton"><a href="https://www.ultimatelysocial.com/usm-premium/?utm_source=usmplus_settings_page&utm_campaign=do_you_like_your_website&utm_medium=banner" target="_blank">Check it out ></a></div>
|
390 |
-
<!--<div class="premiumTxt priceTxt">To make it available for all people pricing is <strong>super-fair</strong>, starting at 15.98 USD only</div>-->
|
391 |
-
</div>
|
392 |
-
</div>
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
<!-- <div class="pop-overlay read-overlay" >
|
397 |
-
<div class="pop_up_box sfsi_pop_up" >
|
398 |
-
<img src="<?php echo SFSI_PLUGURL; ?>images/close.jpg" id="close_popup" class="sfsicloseBtn" />
|
399 |
-
<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>
|
400 |
</div>
|
401 |
-
</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-plus#no-topic-0" class="banner-1">
|
8 |
+
<img src="<?php echo SFSI_PLUGURL; ?>images/banner_support_forum.png">
|
9 |
+
</a>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
</div>
|
|