Version Description
- Update: Solved the Undefined Notice messages.
Download this release
Release Info
Developer | socialdude |
Plugin | Social Share Icons & Social Share Buttons |
Version | 3.1.4 |
Comparing to | |
See all releases |
Code changes from version 3.1.3 to 3.1.4
libs/controllers/sfsi_buttons_controller.php
CHANGED
@@ -1290,7 +1290,7 @@ function sfsi_plus_bannerOption(){
|
|
1290 |
$objThemeCheck->sfsi_plus_bannereHtml(
|
1291 |
$themeDataObj->headline,
|
1292 |
$themeDataObj->themeLink,
|
1293 |
-
SFSI_PLUS_PLUGURL.'images/website_theme/'.$themeName.'.png',
|
1294 |
$themeDataObj->bottomtext
|
1295 |
);
|
1296 |
|
@@ -1320,7 +1320,7 @@ if(!$matchFound){
|
|
1320 |
$objThemeCheck->sfsi_plus_bannereHtml(
|
1321 |
$themeDataObj->headline,
|
1322 |
$themeDataObj->themeLink,
|
1323 |
-
|
1324 |
$themeDataObj->bottomtext
|
1325 |
);
|
1326 |
|
@@ -1350,7 +1350,7 @@ if(!$matchFound){
|
|
1350 |
$objThemeCheck->sfsi_plus_bannereHtml(
|
1351 |
$themeDataObj->headline,
|
1352 |
$themeDataObj->themeLink,
|
1353 |
-
|
1354 |
$themeDataObj->bottomtext
|
1355 |
);
|
1356 |
|
1290 |
$objThemeCheck->sfsi_plus_bannereHtml(
|
1291 |
$themeDataObj->headline,
|
1292 |
$themeDataObj->themeLink,
|
1293 |
+
(SFSI_PLUS_PLUGURL).'images/website_theme/'.$themeName.'.png',
|
1294 |
$themeDataObj->bottomtext
|
1295 |
);
|
1296 |
|
1320 |
$objThemeCheck->sfsi_plus_bannereHtml(
|
1321 |
$themeDataObj->headline,
|
1322 |
$themeDataObj->themeLink,
|
1323 |
+
SFSI_PLUS_PLUGURL.'images/website_theme/'.$themeName.'.png',
|
1324 |
$themeDataObj->bottomtext
|
1325 |
);
|
1326 |
|
1350 |
$objThemeCheck->sfsi_plus_bannereHtml(
|
1351 |
$themeDataObj->headline,
|
1352 |
$themeDataObj->themeLink,
|
1353 |
+
SFSI_PLUS_PLUGURL.'images/website_theme/'.$themeName.'.png',
|
1354 |
$themeDataObj->bottomtext
|
1355 |
);
|
1356 |
|
libs/controllers/sfsi_frontpopUp.php
CHANGED
@@ -167,21 +167,39 @@ function sfsi_plus_FrontPopupDiv()
|
|
167 |
|
168 |
$h_style="font-family:".$div_FontFamily.";font-style:".$div_Fonttyle.";color:".$div_FontColor.";font-size:".$div_FontSize."px";
|
169 |
/* get all icons including custom icons */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
170 |
$custom_icons_order = unserialize($sfsi_section5['sfsi_plus_CustomIcons_order']);
|
171 |
$icons_order = array($sfsi_section5['sfsi_plus_rssIcon_order'] =>'rss',
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
(isset($sfsi_section5['sfsi_plus_houzzIcon_order']))
|
186 |
? $sfsi_section5['sfsi_plus_houzzIcon_order']
|
187 |
: 11 => 'houzz'
|
167 |
|
168 |
$h_style="font-family:".$div_FontFamily.";font-style:".$div_Fonttyle.";color:".$div_FontColor.";font-size:".$div_FontSize."px";
|
169 |
/* get all icons including custom icons */
|
170 |
+
if(!isset($sfsi_section5['sfsi_plus_houzzIcon_order'])){
|
171 |
+
$sfsi_section5['sfsi_plus_houzzIcon_order']=11;
|
172 |
+
}
|
173 |
+
if(!isset($sfsi_section5['sfsi_plus_okIcon_order'])){
|
174 |
+
$sfsi_section5['sfsi_plus_okIcon_order']=22;
|
175 |
+
}
|
176 |
+
if(!isset($sfsi_section5['sfsi_plus_telegramIcon_order'])){
|
177 |
+
$sfsi_section5['sfsi_plus_telegramIcon_order']=23;
|
178 |
+
}
|
179 |
+
if(!isset($sfsi_section5['sfsi_plus_vkIcon_order'])){
|
180 |
+
$sfsi_section5['sfsi_plus_vkIcon_order']=24;
|
181 |
+
}
|
182 |
+
if(!isset($sfsi_section5['sfsi_plus_wechatIcon_order'])){
|
183 |
+
$sfsi_section5['sfsi_plus_wechatIcon_order']=26;
|
184 |
+
}
|
185 |
+
if(!isset($sfsi_section5['sfsi_plus_weiboIcon_order'])){
|
186 |
+
$sfsi_section5['sfsi_plus_weiboIcon_order']=25;
|
187 |
+
}
|
188 |
$custom_icons_order = unserialize($sfsi_section5['sfsi_plus_CustomIcons_order']);
|
189 |
$icons_order = array($sfsi_section5['sfsi_plus_rssIcon_order'] =>'rss',
|
190 |
+
$sfsi_section5['sfsi_plus_emailIcon_order'] =>'email',
|
191 |
+
$sfsi_section5['sfsi_plus_facebookIcon_order'] =>'facebook',
|
192 |
+
$sfsi_section5['sfsi_plus_googleIcon_order'] =>'google',
|
193 |
+
$sfsi_section5['sfsi_plus_twitterIcon_order'] =>'twitter',
|
194 |
+
$sfsi_section5['sfsi_plus_youtubeIcon_order'] =>'youtube',
|
195 |
+
$sfsi_section5['sfsi_plus_pinterestIcon_order']=>'pinterest',
|
196 |
+
$sfsi_section5['sfsi_plus_linkedinIcon_order'] =>'linkedin',
|
197 |
+
$sfsi_section5['sfsi_plus_instagramIcon_order']=>'instagram',
|
198 |
+
$sfsi_section5['sfsi_plus_okIcon_order']=>'ok',
|
199 |
+
$sfsi_section5['sfsi_plus_telegramIcon_order']=>'telegram',
|
200 |
+
$sfsi_section5['sfsi_plus_vkIcon_order']=>'vk',
|
201 |
+
$sfsi_section5['sfsi_plus_weiboIcon_order']=>'weibo',
|
202 |
+
$sfsi_section5['sfsi_plus_wechatIcon_order']=>'wechat',
|
203 |
(isset($sfsi_section5['sfsi_plus_houzzIcon_order']))
|
204 |
? $sfsi_section5['sfsi_plus_houzzIcon_order']
|
205 |
: 11 => 'houzz'
|
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", "3.
|
16 |
|
17 |
if(!get_option('sfsi_plus_serverphpVersionnotification'))
|
18 |
{
|
12 |
}
|
13 |
|
14 |
//Install version
|
15 |
+
update_option("sfsi_plus_pluginVersion", "3.14");
|
16 |
|
17 |
if(!get_option('sfsi_plus_serverphpVersionnotification'))
|
18 |
{
|
readme.txt
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
=== Social Share Icons & Social Share Buttons ===
|
2 |
-
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: 5.
|
6 |
-
Stable tag: 3.1.
|
7 |
License: GPLv2
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -446,12 +446,15 @@ The premium plugin offrs many more social buttons from other social media platfo
|
|
446 |
|
447 |
|
448 |
== Changelog ==
|
|
|
|
|
|
|
449 |
= 3.1.3 =
|
450 |
* Update: Google plus like removed
|
451 |
* Update: Extra debug log removed
|
452 |
-
* Update:
|
453 |
-
* Update:
|
454 |
-
* Update: White background from icons removed
|
455 |
|
456 |
= 3.1.2 =
|
457 |
* Update: updated the new added icons.
|
@@ -863,5 +866,5 @@ The premium plugin offrs many more social buttons from other social media platfo
|
|
863 |
|
864 |
== Upgrade Notice ==
|
865 |
|
866 |
-
= 3.1.
|
867 |
* Please update
|
1 |
=== Social Share Icons & Social Share Buttons ===
|
2 |
+
Contributors: socialsharepro, socialtech
|
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: 5.2
|
6 |
+
Stable tag: 3.1.4
|
7 |
License: GPLv2
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
446 |
|
447 |
|
448 |
== Changelog ==
|
449 |
+
= 3.1.4 =
|
450 |
+
* Update: Solved the Undefined Notice messages.
|
451 |
+
|
452 |
= 3.1.3 =
|
453 |
* Update: Google plus like removed
|
454 |
* Update: Extra debug log removed
|
455 |
+
* Update: Outdated screencast video removed
|
456 |
+
* Update: More icons included
|
457 |
+
* Update: White background from icons removed
|
458 |
|
459 |
= 3.1.2 =
|
460 |
* Update: updated the new added icons.
|
866 |
|
867 |
== Upgrade Notice ==
|
868 |
|
869 |
+
= 3.1.4 =
|
870 |
* Please update
|
ultimate_social_media_icons.php
CHANGED
@@ -7,7 +7,7 @@ Author: social share pro
|
|
7 |
Text Domain: ultimate-social-media-plus
|
8 |
Domain Path: /languages
|
9 |
Author URI: http://socialshare.pro/
|
10 |
-
Version: 3.1.
|
11 |
License: GPLv2
|
12 |
*/
|
13 |
|
@@ -104,7 +104,7 @@ register_deactivation_hook(__FILE__, 'sfsi_plus_deactivate_plugin');
|
|
104 |
//register_uninstall_hook(__FILE__, 'sfsi_plus_Unistall_plugin');
|
105 |
|
106 |
/*Plugin version setup*/
|
107 |
-
if(!get_option('sfsi_plus_pluginVersion') || get_option('sfsi_plus_pluginVersion') < 3.
|
108 |
{
|
109 |
add_action("init", "sfsi_plus_update_plugin");
|
110 |
}
|
7 |
Text Domain: ultimate-social-media-plus
|
8 |
Domain Path: /languages
|
9 |
Author URI: http://socialshare.pro/
|
10 |
+
Version: 3.1.4
|
11 |
License: GPLv2
|
12 |
*/
|
13 |
|
104 |
//register_uninstall_hook(__FILE__, 'sfsi_plus_Unistall_plugin');
|
105 |
|
106 |
/*Plugin version setup*/
|
107 |
+
if(!get_option('sfsi_plus_pluginVersion') || get_option('sfsi_plus_pluginVersion') < 3.14)
|
108 |
{
|
109 |
add_action("init", "sfsi_plus_update_plugin");
|
110 |
}
|