Version Description
- CSS & JAVASCRIPT files are added in footer instead of header
Download this release
Release Info
Developer | socialdude |
Plugin | Social Media Share Buttons & Social Sharing Icons |
Version | 1.8.0 |
Comparing to | |
See all releases |
Code changes from version 1.7.9 to 1.8.0
- libs/sfsi_Init_JqueryCss.php +1 -1
- libs/sfsi_install_uninstall.php +1 -1
- readme.txt +7 -3
- ultimate_social_media_icons.php +2 -2
libs/sfsi_Init_JqueryCss.php
CHANGED
@@ -83,7 +83,7 @@ function theme_front_enqueue_script()
|
|
83 |
wp_localize_script( 'SFSICustomJs', 'ajax_object', array( 'ajax_url' => admin_url( 'admin-ajax.php' ),'plugin_url'=> SFSI_PLUGURL) );
|
84 |
|
85 |
/* include CSS for front-end and backend */
|
86 |
-
wp_enqueue_style("SFSImainCss", SFSI_PLUGURL . 'css/sfsi-style.css' );
|
87 |
|
88 |
//including floating option css
|
89 |
$option5= unserialize(get_option('sfsi_section5_options',false));
|
83 |
wp_localize_script( 'SFSICustomJs', 'ajax_object', array( 'ajax_url' => admin_url( 'admin-ajax.php' ),'plugin_url'=> SFSI_PLUGURL) );
|
84 |
|
85 |
/* include CSS for front-end and backend */
|
86 |
+
wp_enqueue_style("SFSImainCss", SFSI_PLUGURL . 'css/sfsi-style.css', true);
|
87 |
|
88 |
//including floating option css
|
89 |
$option5= unserialize(get_option('sfsi_section5_options',false));
|
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 |
if(!get_option('sfsi_serverphpVersionnotification'))
|
18 |
{
|
12 |
}
|
13 |
|
14 |
//Install version
|
15 |
+
update_option("sfsi_pluginVersion", "1.80");
|
16 |
|
17 |
if(!get_option('sfsi_serverphpVersionnotification'))
|
18 |
{
|
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
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.
|
6 |
-
Stable tag: 1.
|
7 |
License: GPLv2
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -267,6 +267,10 @@ You cannot use the same plugin twice, however you can install both the USM as we
|
|
267 |
|
268 |
== Changelog ==
|
269 |
|
|
|
|
|
|
|
|
|
270 |
= 1.7.9 =
|
271 |
* Banners added
|
272 |
* Spelling mistakes corrected
|
@@ -637,5 +641,5 @@ You cannot use the same plugin twice, however you can install both the USM as we
|
|
637 |
|
638 |
== Upgrade Notice ==
|
639 |
|
640 |
-
= 1.
|
641 |
Please upgrade
|
2 |
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
|
6 |
+
Stable tag: 1.8.0
|
7 |
License: GPLv2
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
267 |
|
268 |
== Changelog ==
|
269 |
|
270 |
+
|
271 |
+
= 1.8.0 =
|
272 |
+
* CSS & JAVASCRIPT files are added in footer instead of header
|
273 |
+
|
274 |
= 1.7.9 =
|
275 |
* Banners added
|
276 |
* Spelling mistakes corrected
|
641 |
|
642 |
== Upgrade Notice ==
|
643 |
|
644 |
+
= 1.8.0 =
|
645 |
Please upgrade
|
ultimate_social_media_icons.php
CHANGED
@@ -5,7 +5,7 @@ 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;
|
@@ -253,7 +253,7 @@ function string_sanitize($s) {
|
|
253 |
}
|
254 |
|
255 |
//Add Subscriber form css
|
256 |
-
add_action("
|
257 |
function addStyleFunction()
|
258 |
{
|
259 |
$option8 = unserialize(get_option('sfsi_section8_options',false));
|
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.8.0
|
9 |
License: GPLv2 or later
|
10 |
*/
|
11 |
global $wpdb;
|
253 |
}
|
254 |
|
255 |
//Add Subscriber form css
|
256 |
+
add_action("wp_footer", "addStyleFunction");
|
257 |
function addStyleFunction()
|
258 |
{
|
259 |
$option8 = unserialize(get_option('sfsi_section8_options',false));
|