Version Description
- Resolve issue in admin with out-of-date PHP versions below PHP 5.5
- New icon color options in AddToAny settings
- New background color options for floating bars
- The background for floating bars now defaults to
transparent
- Add a tip for AddToAny Follow buttons (Instagram, YouTube, Snapchat, etc.) in Add/Remove Services
- Update YouTube icon
Download this release
Release Info
Developer | micropat |
Plugin | AddToAny Share Buttons |
Version | 1.7.19 |
Comparing to | |
See all releases |
Code changes from version 1.7.18 to 1.7.19
- README.txt +9 -1
- add-to-any.php +1 -1
- addtoany.admin.php +4 -1
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 |
|
@@ -351,6 +351,14 @@ Upload (or move) the `add-to-any` plugin directory into the `/wp-content/mu-plug
|
|
351 |
|
352 |
== Changelog ==
|
353 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
354 |
= 1.7.18 =
|
355 |
* New icon color options in AddToAny settings
|
356 |
* New background color options for floating bars
|
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.19
|
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.19 =
|
355 |
+
* Resolve issue in admin with [out-of-date PHP versions](https://secure.php.net/eol.php) below PHP 5.5
|
356 |
+
* New icon color options in AddToAny settings
|
357 |
+
* New background color options for floating bars
|
358 |
+
* The background for floating bars now defaults to `transparent`
|
359 |
+
* Add a tip for AddToAny Follow buttons (Instagram, YouTube, Snapchat, etc.) in Add/Remove Services
|
360 |
+
* Update YouTube icon
|
361 |
+
|
362 |
= 1.7.18 =
|
363 |
* New icon color options in AddToAny settings
|
364 |
* New background color options for floating bars
|
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
|
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.19
|
7 |
Author: AddToAny
|
8 |
Author URI: https://www.addtoany.com/
|
9 |
Text Domain: add-to-any
|
addtoany.admin.php
CHANGED
@@ -74,8 +74,11 @@ add_action( 'edit_attachment', 'A2A_SHARE_SAVE_meta_box_save' );
|
|
74 |
* Adds feature pointers
|
75 |
*/
|
76 |
function A2A_SHARE_SAVE_enqueue_pointer_script_style( $hook_suffix ) {
|
|
|
|
|
|
|
77 |
// Return if AddToAny options have been set, or WP < 3.3
|
78 |
-
if ( ! empty(
|
79 |
return;
|
80 |
}
|
81 |
|
74 |
* Adds feature pointers
|
75 |
*/
|
76 |
function A2A_SHARE_SAVE_enqueue_pointer_script_style( $hook_suffix ) {
|
77 |
+
// Variable required for PHP < 5.5 because empty() only supports variables
|
78 |
+
$options = get_option( 'addtoany_options', array() );
|
79 |
+
|
80 |
// Return if AddToAny options have been set, or WP < 3.3
|
81 |
+
if ( ! empty( $options ) || get_bloginfo( 'version' ) < '3.3' ) {
|
82 |
return;
|
83 |
}
|
84 |
|