AddToAny Share Buttons - Version 1.2.7.9

Version Description

  • Fix Print icon
Download this release

Release Info

Developer micropat
Plugin Icon 128x128 AddToAny Share Buttons
Version 1.2.7.9
Comparing to
See all releases

Code changes from version 1.2.7.8 to 1.2.7.9

Files changed (2) hide show
  1. README.txt +5 -2
  2. add-to-any.php +3 -2
README.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: micropat
3
  Tags: sharing, share, sharethis, bookmarking, social, social bookmarking, social bookmarks, bookmark, bookmarks, save, Post, posts, page, pages, images, image, admin, statistics, stats, links, plugin, sidebar, widget, email, e-mail, seo, button, delicious, google, tumblr, linkedin, digg, reddit, facebook, facebook like, like, myspace, twitter, tweet, +1, plus 1, google plus, google plus one, plus one, pinterest, pin, pin it, pinit, messenger, stumbleupon, technorati, lockerz, addthis, sexybookmarks, sociable, sharedaddy, shareaholic, icon, icons, vector, SVG, wpmu, Add to Any, AddToAny
4
  Requires at least: 2.8
5
  Tested up to: 3.8
6
- Stable tag: 1.2.7.8
7
 
8
  Share buttons for WordPress including AddToAny's universal sharing button, Facebook, Twitter, Google+, Pinterest, StumbleUpon and many more.
9
 
@@ -17,7 +17,7 @@ Social share icons let you optimize your blog posts & pages for specific social
17
 
18
  This sharing plugin lets you customize the AddToAny universal Smart Menu, which places the services visitors use at the top of the menu based on each visitor's usage. The Email tab makes it easy to share via Google Gmail, Yahoo! Mail, Outlook.com (Hotmail), AOL Mail, and any other web-based emailer or desktop program.
19
 
20
- * **New**: Large vector sharing buttons!
21
  * SVG sharing icons for the most popular services (and more to come)
22
  * Smart Menu & Kit with individual share links
23
  * Choose exactly where you want AddToAny to appear
@@ -236,6 +236,9 @@ Upload the plugin directory (including all files and directories within) to the
236
 
237
  == Changelog ==
238
 
 
 
 
239
  = 1.2.7.8 =
240
  * Update Google+ Share button
241
  * Update Google +1 button
3
  Tags: sharing, share, sharethis, bookmarking, social, social bookmarking, social bookmarks, bookmark, bookmarks, save, Post, posts, page, pages, images, image, admin, statistics, stats, links, plugin, sidebar, widget, email, e-mail, seo, button, delicious, google, tumblr, linkedin, digg, reddit, facebook, facebook like, like, myspace, twitter, tweet, +1, plus 1, google plus, google plus one, plus one, pinterest, pin, pin it, pinit, messenger, stumbleupon, technorati, lockerz, addthis, sexybookmarks, sociable, sharedaddy, shareaholic, icon, icons, vector, SVG, wpmu, Add to Any, AddToAny
4
  Requires at least: 2.8
5
  Tested up to: 3.8
6
+ Stable tag: 1.2.7.9
7
 
8
  Share buttons for WordPress including AddToAny's universal sharing button, Facebook, Twitter, Google+, Pinterest, StumbleUpon and many more.
9
 
17
 
18
  This sharing plugin lets you customize the AddToAny universal Smart Menu, which places the services visitors use at the top of the menu based on each visitor's usage. The Email tab makes it easy to share via Google Gmail, Yahoo! Mail, Outlook.com (Hotmail), AOL Mail, and any other web-based emailer or desktop program.
19
 
20
+ * **New**: Vector sharing buttons
21
  * SVG sharing icons for the most popular services (and more to come)
22
  * Smart Menu & Kit with individual share links
23
  * Choose exactly where you want AddToAny to appear
236
 
237
  == Changelog ==
238
 
239
+ = 1.2.7.9 =
240
+ * Fix Print icon
241
+
242
  = 1.2.7.8 =
243
  * Update Google+ Share button
244
  * Update Google +1 button
add-to-any.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Share Buttons by AddToAny
4
  Plugin URI: http://www.addtoany.com/
5
  Description: Share buttons for your pages including AddToAny's universal sharing button, Facebook, Twitter, Google+, Pinterest, StumbleUpon and many more. [<a href="options-general.php?page=add-to-any.php">Settings</a>]
6
- Version: 1.2.7.8
7
  Author: micropat
8
  Author URI: http://www.addtoany.com/
9
  */
@@ -204,7 +204,8 @@ function ADDTOANY_SHARE_SAVE_ICONS( $args = array() ) {
204
  $safe_name = $active_service;
205
  $name = $service['name'];
206
 
207
- if (isset($service['href'])) {
 
208
  $custom_service = TRUE;
209
  $href = $service['href'];
210
  if (isset($service['href_js_esc'])) {
3
  Plugin Name: Share Buttons by AddToAny
4
  Plugin URI: http://www.addtoany.com/
5
  Description: Share buttons for your pages including AddToAny's universal sharing button, Facebook, Twitter, Google+, Pinterest, StumbleUpon and many more. [<a href="options-general.php?page=add-to-any.php">Settings</a>]
6
+ Version: 1.2.7.9
7
  Author: micropat
8
  Author URI: http://www.addtoany.com/
9
  */
204
  $safe_name = $active_service;
205
  $name = $service['name'];
206
 
207
+ // If HREF specified, presume custom service (except if it's "print")
208
+ if ( isset( $service['href'] ) && $safe_name != 'print' ) {
209
  $custom_service = TRUE;
210
  $href = $service['href'];
211
  if (isset($service['href_js_esc'])) {