Version Description
- Fix simplified initial
a2a_config
JS so overlays are not enabled by default
Download this release
Release Info
Developer | micropat |
Plugin | AddToAny Share Buttons |
Version | 1.7.21 |
Comparing to | |
See all releases |
Code changes from version 1.7.20 to 1.7.21
- README.txt +4 -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.9
|
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 |
|
@@ -351,6 +351,9 @@ Upload (or move) the `add-to-any` plugin directory into the `/wp-content/mu-plug
|
|
351 |
|
352 |
== Changelog ==
|
353 |
|
|
|
|
|
|
|
354 |
= 1.7.20 =
|
355 |
* Show the optional sharing header for WooCommerce standard share buttons placement
|
356 |
* Harden the "Show sharing buttons" checkbox so it works when other plugins conflict
|
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.9
|
6 |
+
Stable tag: 1.7.21
|
7 |
|
8 |
Share buttons for WordPress including the AddToAny sharing button, Facebook, Twitter, Google+, Pinterest, WhatsApp, many more, and follow icons too.
|
9 |
|
351 |
|
352 |
== Changelog ==
|
353 |
|
354 |
+
= 1.7.21 =
|
355 |
+
* Fix simplified initial `a2a_config` JS so overlays are not enabled by default
|
356 |
+
|
357 |
= 1.7.20 =
|
358 |
* Show the optional sharing header for WooCommerce standard share buttons placement
|
359 |
* Harden the "Show sharing buttons" checkbox so it works when other plugins conflict
|
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
|
@@ -769,7 +769,7 @@ function A2A_SHARE_SAVE_head_script() {
|
|
769 |
$javascript_header = "\n" . '<script type="text/javascript">' . "\n"
|
770 |
|
771 |
. 'window.a2a_config=window.a2a_config||{};'
|
772 |
-
. 'a2a_config.callbacks=a2a_config.overlays=[];'
|
773 |
. 'a2a_config.templates={};'
|
774 |
. A2A_menu_locale()
|
775 |
. $script_configs
|
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.21
|
7 |
Author: AddToAny
|
8 |
Author URI: https://www.addtoany.com/
|
9 |
Text Domain: add-to-any
|
769 |
$javascript_header = "\n" . '<script type="text/javascript">' . "\n"
|
770 |
|
771 |
. 'window.a2a_config=window.a2a_config||{};'
|
772 |
+
. 'a2a_config.callbacks=[];a2a_config.overlays=[];'
|
773 |
. 'a2a_config.templates={};'
|
774 |
. A2A_menu_locale()
|
775 |
. $script_configs
|