Version Description
- Enabled faster answering of support questions
Download this release
Release Info
Developer | socialdude |
Plugin | Social Share Icons & Social Share Buttons |
Version | 2.9.7 |
Comparing to | |
See all releases |
Code changes from version 2.9.6 to 2.9.7
- helpers/common_helper.php +12 -1
- libs/sfsi_install_uninstall.php +1 -1
- readme.txt +5 -2
- ultimate_social_media_icons.php +2 -2
- views/sfsi_options_view.php +5 -0
helpers/common_helper.php
CHANGED
@@ -111,7 +111,18 @@ if(!function_exists('sfsi_plus_get_icon_image')){
|
|
111 |
}
|
112 |
else
|
113 |
{
|
114 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
115 |
$icon = $icons_baseUrl.$active_theme."_".$iconImgName.".png";
|
116 |
}
|
117 |
|
111 |
}
|
112 |
else
|
113 |
{
|
114 |
+
switch (strtolower($icon_name)) {
|
115 |
+
|
116 |
+
case 'facebook':
|
117 |
+
$custom_icon_name = "fb";
|
118 |
+
break;
|
119 |
+
|
120 |
+
default:
|
121 |
+
$custom_icon_name = $icon_name;
|
122 |
+
break;
|
123 |
+
}
|
124 |
+
|
125 |
+
$iconImgName = false != $iconImgName ? $iconImgName: $custom_icon_name;
|
126 |
$icon = $icons_baseUrl.$active_theme."_".$iconImgName.".png";
|
127 |
}
|
128 |
|
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 |
{
|
12 |
}
|
13 |
|
14 |
//Install version
|
15 |
+
update_option("sfsi_plus_pluginVersion", "2.97");
|
16 |
|
17 |
if(!get_option('sfsi_plus_serverphpVersionnotification'))
|
18 |
{
|
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: 5.0
|
6 |
-
Stable tag: 2.9.
|
7 |
License: GPLv2
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -445,6 +445,9 @@ The premium plugin offrs many more social buttons from other social media platfo
|
|
445 |
|
446 |
== Changelog ==
|
447 |
|
|
|
|
|
|
|
448 |
= 2.9.6 =
|
449 |
* Image not showing error fixed for banner in animation section in Question 4 added
|
450 |
|
@@ -784,5 +787,5 @@ The premium plugin offrs many more social buttons from other social media platfo
|
|
784 |
|
785 |
== Upgrade Notice ==
|
786 |
|
787 |
-
= 2.9.
|
788 |
* 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: 5.0
|
6 |
+
Stable tag: 2.9.7
|
7 |
License: GPLv2
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
445 |
|
446 |
== Changelog ==
|
447 |
|
448 |
+
= 2.9.7 =
|
449 |
+
* Enabled faster answering of support questions
|
450 |
+
|
451 |
= 2.9.6 =
|
452 |
* Image not showing error fixed for banner in animation section in Question 4 added
|
453 |
|
787 |
|
788 |
== Upgrade Notice ==
|
789 |
|
790 |
+
= 2.9.7 =
|
791 |
* 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: 2.9.
|
11 |
License: GPLv2
|
12 |
*/
|
13 |
|
@@ -103,7 +103,7 @@ register_deactivation_hook(__FILE__, 'sfsi_plus_deactivate_plugin');
|
|
103 |
//register_uninstall_hook(__FILE__, 'sfsi_plus_Unistall_plugin');
|
104 |
|
105 |
/*Plugin version setup*/
|
106 |
-
if(!get_option('sfsi_plus_pluginVersion') || get_option('sfsi_plus_pluginVersion') < 2.
|
107 |
{
|
108 |
add_action("init", "sfsi_plus_update_plugin");
|
109 |
}
|
7 |
Text Domain: ultimate-social-media-plus
|
8 |
Domain Path: /languages
|
9 |
Author URI: http://socialshare.pro/
|
10 |
+
Version: 2.9.7
|
11 |
License: GPLv2
|
12 |
*/
|
13 |
|
103 |
//register_uninstall_hook(__FILE__, 'sfsi_plus_Unistall_plugin');
|
104 |
|
105 |
/*Plugin version setup*/
|
106 |
+
if(!get_option('sfsi_plus_pluginVersion') || get_option('sfsi_plus_pluginVersion') < 2.97)
|
107 |
{
|
108 |
add_action("init", "sfsi_plus_update_plugin");
|
109 |
}
|
views/sfsi_options_view.php
CHANGED
@@ -235,3 +235,8 @@
|
|
235 |
}
|
236 |
});
|
237 |
</script>
|
|
|
|
|
|
|
|
|
|
235 |
}
|
236 |
});
|
237 |
</script>
|
238 |
+
<!-- BEGIN JIVOSITE CODE {literal} -->
|
239 |
+
<script type='text/javascript'>
|
240 |
+
(function(){ var widget_id = 'g9lexlJ3Wa';var d=document;var w=window;function l(){var s = document.createElement('script'); s.type = 'text/javascript'; s.async = true;s.src = '//code.jivosite.com/script/widget/'+widget_id; var ss = document.getElementsByTagName('script')[0]; ss.parentNode.insertBefore(s, ss);}if(d.readyState=='complete'){l();}else{if(w.attachEvent){w.attachEvent('onload',l);}else{w.addEventListener('load',l,false);}}})();
|
241 |
+
</script>
|
242 |
+
<!-- {/literal} END JIVOSITE CODE -->
|