Version Description
- Facebook icon leading to empty pages (in specific cases) fixed
Download this release
Release Info
Developer | socialdude |
Plugin | Social Share Icons & Social Share Buttons |
Version | 2.5.0 |
Comparing to | |
See all releases |
Code changes from version 2.4.9 to 2.5.0
- libs/sfsi_install_uninstall.php +1 -1
- readme.txt +5 -2
- ultimate_social_media_icons.php +2 -2
- views/sfsi_option_view2.php +1 -1
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 |
/*show notification*/
|
18 |
if(!get_option('sfsi_plus_show_notification'))
|
12 |
}
|
13 |
|
14 |
//Install version
|
15 |
+
update_option("sfsi_plus_pluginVersion", "2.5");
|
16 |
|
17 |
/*show notification*/
|
18 |
if(!get_option('sfsi_plus_show_notification'))
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=seb.r
|
|
4 |
Tags: social media, facebook, instagram, youtube, twitter, share, social share, buttons, counter, pop-up, subscription, icons
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 4.6.1
|
7 |
-
Stable tag: 2.
|
8 |
License: GPLv2
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -75,6 +75,9 @@ Note: This plugin requires CURL to be activated/installed on your server (which
|
|
75 |
|
76 |
== Changelog ==
|
77 |
|
|
|
|
|
|
|
78 |
= 2.4.9 =
|
79 |
* Twitter sharing text issues with forwarded slashes fixed
|
80 |
* Links to review sites adjusted following Wordpress changes in review section
|
@@ -262,5 +265,5 @@ Note: This plugin requires CURL to be activated/installed on your server (which
|
|
262 |
|
263 |
== Upgrade Notice ==
|
264 |
|
265 |
-
= 2.
|
266 |
* Please upgrade
|
4 |
Tags: social media, facebook, instagram, youtube, twitter, share, social share, buttons, counter, pop-up, subscription, icons
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 4.6.1
|
7 |
+
Stable tag: 2.5.0
|
8 |
License: GPLv2
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
75 |
|
76 |
== Changelog ==
|
77 |
|
78 |
+
= 2.5.0 =
|
79 |
+
* Facebook icon leading to empty pages (in specific cases) fixed
|
80 |
+
|
81 |
= 2.4.9 =
|
82 |
* Twitter sharing text issues with forwarded slashes fixed
|
83 |
* Links to review sites adjusted following Wordpress changes in review section
|
265 |
|
266 |
== Upgrade Notice ==
|
267 |
|
268 |
+
= 2.5.0 =
|
269 |
* Please upgrade
|
ultimate_social_media_icons.php
CHANGED
@@ -7,7 +7,7 @@ Author: UltimatelySocial
|
|
7 |
Text Domain: ultimate-social-media-plus
|
8 |
Domain Path: /languages
|
9 |
Author URI: http://ultimatelysocial.com
|
10 |
-
Version: 2.
|
11 |
License: GPLv2
|
12 |
*/
|
13 |
|
@@ -37,7 +37,7 @@ register_deactivation_hook(__FILE__, 'sfsi_plus_deactivate_plugin');
|
|
37 |
register_uninstall_hook(__FILE__, 'sfsi_plus_Unistall_plugin');
|
38 |
|
39 |
/*Plugin version setup*/
|
40 |
-
if(!get_option('sfsi_plus_pluginVersion') || get_option('sfsi_plus_pluginVersion') < 2.
|
41 |
{
|
42 |
add_action("init", "sfsi_plus_update_plugin");
|
43 |
}
|
7 |
Text Domain: ultimate-social-media-plus
|
8 |
Domain Path: /languages
|
9 |
Author URI: http://ultimatelysocial.com
|
10 |
+
Version: 2.5
|
11 |
License: GPLv2
|
12 |
*/
|
13 |
|
37 |
register_uninstall_hook(__FILE__, 'sfsi_plus_Unistall_plugin');
|
38 |
|
39 |
/*Plugin version setup*/
|
40 |
+
if(!get_option('sfsi_plus_pluginVersion') || get_option('sfsi_plus_pluginVersion') < 2.5)
|
41 |
{
|
42 |
add_action("init", "sfsi_plus_update_plugin");
|
43 |
}
|
views/sfsi_option_view2.php
CHANGED
@@ -229,7 +229,7 @@
|
|
229 |
<?php _e( 'Visit my Facebook page at:', SFSI_PLUS_DOMAIN); ?>
|
230 |
</label>
|
231 |
|
232 |
-
<input class="add" name="sfsi_plus_facebookPage_url" type="url" value="<?php echo ($option2['sfsi_plus_facebookPage_url']!='') ? $option2['sfsi_plus_facebookPage_url'] : '
|
233 |
|
234 |
<p class="radio_section fb_url extra_sp">
|
235 |
<input name="sfsi_plus_facebookLike_option" <?php echo ($option2['sfsi_plus_facebookLike_option']=='yes') ? 'checked="true"' : '' ;?> type="checkbox" value="yes" class="styled" />
|
229 |
<?php _e( 'Visit my Facebook page at:', SFSI_PLUS_DOMAIN); ?>
|
230 |
</label>
|
231 |
|
232 |
+
<input class="add" name="sfsi_plus_facebookPage_url" type="url" value="<?php echo ($option2['sfsi_plus_facebookPage_url']!='') ? $option2['sfsi_plus_facebookPage_url'] : '' ;?>" placeholder="E.g https://www.facebook.com/your_page_name" /></p>
|
233 |
|
234 |
<p class="radio_section fb_url extra_sp">
|
235 |
<input name="sfsi_plus_facebookLike_option" <?php echo ($option2['sfsi_plus_facebookLike_option']=='yes') ? 'checked="true"' : '' ;?> type="checkbox" value="yes" class="styled" />
|