Version Description
- Set the CSS enqueue priority to
20
to load after most theme stylesheets- Resolves lines under buttons (
box-shadow
) caused by CSS such as the default Twenty Seventeen theme's stylesheet
- Resolves lines under buttons (
Download this release
Release Info
Developer | micropat |
Plugin | AddToAny Share Buttons |
Version | 1.7.16 |
Comparing to | |
See all releases |
Code changes from version 1.7.15 to 1.7.16
- README.txt +5 -1
- add-to-any.php +2 -2
README.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: micropat, addtoany
|
|
3 |
Tags: AddToAny, share, sharing, social, share buttons, share button, social media, media, marketing, links, email, seo, woocommerce, google, linkedin, reddit, facebook, like, twitter, pinterest, whatsapp, instagram, youtube, share this, sharethis, feed, icons
|
4 |
Requires at least: 3.7
|
5 |
Tested up to: 4.8
|
6 |
-
Stable tag: 1.7.
|
7 |
|
8 |
Share buttons for WordPress including the AddToAny sharing button, Facebook, Twitter, Google+, Pinterest, WhatsApp, many more, and follow icons too.
|
9 |
|
@@ -349,6 +349,10 @@ Upload (or move) the `add-to-any` plugin directory into the `/wp-content/mu-plug
|
|
349 |
|
350 |
== Changelog ==
|
351 |
|
|
|
|
|
|
|
|
|
352 |
= 1.7.15 =
|
353 |
* Use the `wp_enqueue_scripts` action hook instead of `wp_print_styles` for the plugin's stylesheet
|
354 |
* Use the `home_url()` instead of the `Host` header when generating the current URL to be shared (thanks Paul)
|
3 |
Tags: AddToAny, share, sharing, social, share buttons, share button, social media, media, marketing, links, email, seo, woocommerce, google, linkedin, reddit, facebook, like, twitter, pinterest, whatsapp, instagram, youtube, share this, sharethis, feed, icons
|
4 |
Requires at least: 3.7
|
5 |
Tested up to: 4.8
|
6 |
+
Stable tag: 1.7.16
|
7 |
|
8 |
Share buttons for WordPress including the AddToAny sharing button, Facebook, Twitter, Google+, Pinterest, WhatsApp, many more, and follow icons too.
|
9 |
|
349 |
|
350 |
== Changelog ==
|
351 |
|
352 |
+
= 1.7.16 =
|
353 |
+
* Set the CSS enqueue priority to `20` to load after most theme stylesheets
|
354 |
+
* Resolves lines under buttons (`box-shadow`) caused by CSS such as the default Twenty Seventeen theme's stylesheet
|
355 |
+
|
356 |
= 1.7.15 =
|
357 |
* Use the `wp_enqueue_scripts` action hook instead of `wp_print_styles` for the plugin's stylesheet
|
358 |
* Use the `home_url()` instead of the `Host` header when generating the current URL to be shared (thanks Paul)
|
add-to-any.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: AddToAny Share Buttons
|
4 |
Plugin URI: https://www.addtoany.com/
|
5 |
Description: Share buttons for your pages including AddToAny's universal sharing button, Facebook, Twitter, Google+, Pinterest, WhatsApp and many more.
|
6 |
-
Version: 1.7.
|
7 |
Author: AddToAny
|
8 |
Author URI: https://www.addtoany.com/
|
9 |
Text Domain: add-to-any
|
@@ -993,7 +993,7 @@ function A2A_SHARE_SAVE_stylesheet() {
|
|
993 |
|
994 |
}
|
995 |
|
996 |
-
add_action( 'wp_enqueue_scripts', 'A2A_SHARE_SAVE_stylesheet' );
|
997 |
|
998 |
function A2A_SHARE_SAVE_enqueue_script() {
|
999 |
global $A2A_SHARE_SAVE_plugin_url_path;
|
3 |
Plugin Name: AddToAny Share Buttons
|
4 |
Plugin URI: https://www.addtoany.com/
|
5 |
Description: Share buttons for your pages including AddToAny's universal sharing button, Facebook, Twitter, Google+, Pinterest, WhatsApp and many more.
|
6 |
+
Version: 1.7.16
|
7 |
Author: AddToAny
|
8 |
Author URI: https://www.addtoany.com/
|
9 |
Text Domain: add-to-any
|
993 |
|
994 |
}
|
995 |
|
996 |
+
add_action( 'wp_enqueue_scripts', 'A2A_SHARE_SAVE_stylesheet', 20 );
|
997 |
|
998 |
function A2A_SHARE_SAVE_enqueue_script() {
|
999 |
global $A2A_SHARE_SAVE_plugin_url_path;
|