Version Description
- New: Added mouse-over effects for the responsive icons, sticky bar icons and original icons - similar as it works now with the round icons
- Fixed: Some minor fixes
Download this release
Release Info
Developer | socialdude |
Plugin | Social Media Share Buttons & Social Sharing Icons |
Version | 2.7.5 |
Comparing to | |
See all releases |
Code changes from version 2.7.4 to 2.7.5
- libs/sfsi_install_uninstall.php +1 -1
- readme.txt +9 -5
- ultimate_social_media_icons.php +3 -3
libs/sfsi_install_uninstall.php
CHANGED
@@ -43,7 +43,7 @@ function sfsi_update_plugin()
|
|
43 |
}
|
44 |
|
45 |
//Install version
|
46 |
-
update_option("sfsi_pluginVersion", "2.
|
47 |
|
48 |
if (!get_option('sfsi_serverphpVersionnotification')) {
|
49 |
add_option("sfsi_serverphpVersionnotification", "yes");
|
43 |
}
|
44 |
|
45 |
//Install version
|
46 |
+
update_option("sfsi_pluginVersion", "2.75");
|
47 |
|
48 |
if (!get_option('sfsi_serverphpVersionnotification')) {
|
49 |
add_option("sfsi_serverphpVersionnotification", "yes");
|
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: socialdude, socialtech
|
3 |
Tags: share, social, share icons, social media, widget, sharing icons, sharing buttons, social share, sharing
|
4 |
Requires at least: 3.5
|
5 |
-
Tested up to:
|
6 |
-
Stable tag: 2.7.
|
7 |
License: GPLv2
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -11,7 +11,8 @@ Share buttons and pop up share icons for social media sharing
|
|
11 |
|
12 |
== Description ==
|
13 |
|
14 |
-
**Try it out on your free dummy site: Click here => [https://tastewp.com/
|
|
|
15 |
|
16 |
Social media plugin which let's you add share icons for RSS, Email, Facebook, Twitter, LinkedIn, Pinterest, Instagram, Youtube, 'Share' (covering 200+ other social media platforms) and upload custom share icons of your choice.
|
17 |
|
@@ -300,8 +301,11 @@ It depends on which language you speak :) however probably the answer is “yes
|
|
300 |
|
301 |
|
302 |
== Changelog ==
|
303 |
-
= 2.7.
|
304 |
* New: Added mouse-over effects for the responsive icons, sticky bar icons and original icons - similar as it works now with the round icons
|
|
|
|
|
|
|
305 |
* Update: Check WordPress 5.9.3 compatibility
|
306 |
* Update: Tooltip remain open when click on round icons
|
307 |
* Fixed: Some minor fixes
|
@@ -1065,5 +1069,5 @@ It depends on which language you speak :) however probably the answer is “yes
|
|
1065 |
|
1066 |
== Upgrade Notice ==
|
1067 |
|
1068 |
-
= 2.7.
|
1069 |
Please upgrade
|
2 |
Contributors: socialdude, socialtech
|
3 |
Tags: share, social, share icons, social media, widget, sharing icons, sharing buttons, social share, sharing
|
4 |
Requires at least: 3.5
|
5 |
+
Tested up to: 6.0
|
6 |
+
Stable tag: 2.7.5
|
7 |
License: GPLv2
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
11 |
|
12 |
== Description ==
|
13 |
|
14 |
+
**Try it out on your free dummy site: Click here => [https://tastewp.com/plugins/ultimate-social-media-icons](https://tastewp.com/plugins/ultimate-social-media-icons)**
|
15 |
+
(this trick works for all plugins - just replace "wordpress" with "tastewp" in the plugin's WP repo URL)
|
16 |
|
17 |
Social media plugin which let's you add share icons for RSS, Email, Facebook, Twitter, LinkedIn, Pinterest, Instagram, Youtube, 'Share' (covering 200+ other social media platforms) and upload custom share icons of your choice.
|
18 |
|
301 |
|
302 |
|
303 |
== Changelog ==
|
304 |
+
= 2.7.5 =
|
305 |
* New: Added mouse-over effects for the responsive icons, sticky bar icons and original icons - similar as it works now with the round icons
|
306 |
+
* Fixed: Some minor fixes
|
307 |
+
|
308 |
+
= 2.7.4 =
|
309 |
* Update: Check WordPress 5.9.3 compatibility
|
310 |
* Update: Tooltip remain open when click on round icons
|
311 |
* Fixed: Some minor fixes
|
1069 |
|
1070 |
== Upgrade Notice ==
|
1071 |
|
1072 |
+
= 2.7.5 =
|
1073 |
Please upgrade
|
ultimate_social_media_icons.php
CHANGED
@@ -7,7 +7,7 @@ Author: UltimatelySocial
|
|
7 |
Author URI: http://ultimatelysocial.com
|
8 |
Text Domain: ultimate-social-media-icons
|
9 |
Domain Path: /languages
|
10 |
-
Version: 2.7.
|
11 |
License: GPLv2 or later
|
12 |
*/
|
13 |
require_once 'analyst/main.php';
|
@@ -23,7 +23,7 @@ sfsi_error_reporting();
|
|
23 |
|
24 |
global $wpdb;
|
25 |
/* define the Root for URL and Document */
|
26 |
-
define( 'SFSI_PLUGIN_VERSION', '2.7.
|
27 |
define( 'SFSI_DOCROOT', dirname( __FILE__ ) );
|
28 |
|
29 |
define( 'SFSI_PLUGURL', plugin_dir_url( __FILE__ ) );
|
@@ -89,7 +89,7 @@ register_deactivation_hook(__FILE__, 'sfsi_deactivate_plugin');
|
|
89 |
|
90 |
register_uninstall_hook(__FILE__, 'sfsi_Unistall_plugin');
|
91 |
|
92 |
-
if (!get_option('sfsi_pluginVersion') || get_option('sfsi_pluginVersion') < 2.
|
93 |
add_action( 'init', 'sfsi_update_plugin' );
|
94 |
}
|
95 |
/* redirect setting page hook */
|
7 |
Author URI: http://ultimatelysocial.com
|
8 |
Text Domain: ultimate-social-media-icons
|
9 |
Domain Path: /languages
|
10 |
+
Version: 2.7.5
|
11 |
License: GPLv2 or later
|
12 |
*/
|
13 |
require_once 'analyst/main.php';
|
23 |
|
24 |
global $wpdb;
|
25 |
/* define the Root for URL and Document */
|
26 |
+
define( 'SFSI_PLUGIN_VERSION', '2.7.5' );
|
27 |
define( 'SFSI_DOCROOT', dirname( __FILE__ ) );
|
28 |
|
29 |
define( 'SFSI_PLUGURL', plugin_dir_url( __FILE__ ) );
|
89 |
|
90 |
register_uninstall_hook(__FILE__, 'sfsi_Unistall_plugin');
|
91 |
|
92 |
+
if (!get_option('sfsi_pluginVersion') || get_option('sfsi_pluginVersion') < 2.75) {
|
93 |
add_action( 'init', 'sfsi_update_plugin' );
|
94 |
}
|
95 |
/* redirect setting page hook */
|