Version Description
- Add MeWe
- Update Evernote icon color
- Replace Google+ with Email as a default share button
Download this release
Release Info
Developer | micropat |
Plugin | AddToAny Share Buttons |
Version | 1.7.34 |
Comparing to | |
See all releases |
Code changes from version 1.7.33 to 1.7.34
- README.txt +11 -6
- add-to-any.php +2 -2
- addtoany.admin.php +1 -1
- addtoany.services.php +11 -6
- icons/mewe.svg +1 -0
README.txt
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
Contributors: micropat, addtoany
|
3 |
Tags: buttons, share, icons, social media, share buttons, sharing, share button, media, social, marketing, links, email, seo, woocommerce, google, linkedin, reddit, facebook, twitter, pinterest, whatsapp, instagram, youtube, share this, sharethis, feed
|
4 |
Requires at least: 3.7
|
5 |
-
Tested up to: 5.
|
6 |
Requires PHP: 5.2
|
7 |
-
Stable tag: 1.7.
|
8 |
|
9 |
Share buttons for WordPress including the AddToAny sharing button, Facebook, Twitter, Google+, Pinterest, WhatsApp, many more, and follow icons too.
|
10 |
|
@@ -63,7 +63,7 @@ AddToAny is the home of universal sharing, and the AddToAny plugin is the most p
|
|
63 |
= Wide Support =
|
64 |
|
65 |
* Over 10 years of development
|
66 |
-
* Over
|
67 |
* Translated into dozens of languages
|
68 |
* Ongoing support from the community
|
69 |
|
@@ -129,7 +129,7 @@ Customize the shared URL like so:
|
|
129 |
|
130 |
Display specific share buttons by specifying comma-separated <a href="https://www.addtoany.com/services/">service codes</a>:
|
131 |
|
132 |
-
`[addtoany buttons="facebook,twitter,
|
133 |
|
134 |
Share a specific image or video to certain services that accept arbitrary media (Pinterest, Yummly, Houzz):
|
135 |
|
@@ -167,7 +167,7 @@ You can specify [AddToAny service code(s)](https://www.addtoany.com/services/) t
|
|
167 |
|
168 |
`<?php if ( function_exists( 'ADDTOANY_SHARE_SAVE_KIT' ) ) {
|
169 |
ADDTOANY_SHARE_SAVE_KIT( array(
|
170 |
-
'buttons' => array( 'facebook', 'twitter', '
|
171 |
) );
|
172 |
} ?>`
|
173 |
|
@@ -350,6 +350,11 @@ Upload (or move) the `add-to-any` plugin directory into the `/wp-content/mu-plug
|
|
350 |
|
351 |
== Changelog ==
|
352 |
|
|
|
|
|
|
|
|
|
|
|
353 |
= 1.7.33 =
|
354 |
* New translatable strings for the optional [post-share modal](https://www.addtoany.com/buttons/customize/wordpress/thanks)
|
355 |
* "Thanks for sharing!"
|
@@ -587,7 +592,7 @@ Upload (or move) the `add-to-any` plugin directory into the `/wp-content/mu-plug
|
|
587 |
|
588 |
= 1.6.11 =
|
589 |
* Update `[addtoany]` shortcode to accept specific share buttons
|
590 |
-
* Specify [AddToAny service codes](https://www.addtoany.com/services/) in the `buttons` attribute like: `[addtoany buttons="facebook,twitter,
|
591 |
* Add SMS share button
|
592 |
* Add Telegram share button
|
593 |
* Add Google Classroom share button
|
2 |
Contributors: micropat, addtoany
|
3 |
Tags: buttons, share, icons, social media, share buttons, sharing, share button, media, social, marketing, links, email, seo, woocommerce, google, linkedin, reddit, facebook, twitter, pinterest, whatsapp, instagram, youtube, share this, sharethis, feed
|
4 |
Requires at least: 3.7
|
5 |
+
Tested up to: 5.1
|
6 |
Requires PHP: 5.2
|
7 |
+
Stable tag: 1.7.34
|
8 |
|
9 |
Share buttons for WordPress including the AddToAny sharing button, Facebook, Twitter, Google+, Pinterest, WhatsApp, many more, and follow icons too.
|
10 |
|
63 |
= Wide Support =
|
64 |
|
65 |
* Over 10 years of development
|
66 |
+
* Over 10 million downloads
|
67 |
* Translated into dozens of languages
|
68 |
* Ongoing support from the community
|
69 |
|
129 |
|
130 |
Display specific share buttons by specifying comma-separated <a href="https://www.addtoany.com/services/">service codes</a>:
|
131 |
|
132 |
+
`[addtoany buttons="facebook,twitter,email"]`
|
133 |
|
134 |
Share a specific image or video to certain services that accept arbitrary media (Pinterest, Yummly, Houzz):
|
135 |
|
167 |
|
168 |
`<?php if ( function_exists( 'ADDTOANY_SHARE_SAVE_KIT' ) ) {
|
169 |
ADDTOANY_SHARE_SAVE_KIT( array(
|
170 |
+
'buttons' => array( 'facebook', 'twitter', 'email', 'whatsapp' ),
|
171 |
) );
|
172 |
} ?>`
|
173 |
|
350 |
|
351 |
== Changelog ==
|
352 |
|
353 |
+
= 1.7.34 =
|
354 |
+
* Add MeWe
|
355 |
+
* Update Evernote icon color
|
356 |
+
* Replace Google+ with Email as a default share button
|
357 |
+
|
358 |
= 1.7.33 =
|
359 |
* New translatable strings for the optional [post-share modal](https://www.addtoany.com/buttons/customize/wordpress/thanks)
|
360 |
* "Thanks for sharing!"
|
592 |
|
593 |
= 1.6.11 =
|
594 |
* Update `[addtoany]` shortcode to accept specific share buttons
|
595 |
+
* Specify [AddToAny service codes](https://www.addtoany.com/services/) in the `buttons` attribute like: `[addtoany buttons="facebook,twitter,email"]`
|
596 |
* Add SMS share button
|
597 |
* Add Telegram share button
|
598 |
* Add Google Classroom share button
|
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
|
@@ -252,7 +252,7 @@ function ADDTOANY_SHARE_SAVE_ICONS( $args = array() ) {
|
|
252 |
}
|
253 |
|
254 |
// Use default services if services have not been selected yet
|
255 |
-
$active_services = isset( $options['active_services'] ) ? $options['active_services'] : array( 'facebook', 'twitter', '
|
256 |
// Services set by "buttons" arg? Then use "buttons" arg instead
|
257 |
$active_services = empty( $args['buttons'] ) ? $active_services : $args['buttons'];
|
258 |
}
|
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.34
|
7 |
Author: AddToAny
|
8 |
Author URI: https://www.addtoany.com/
|
9 |
Text Domain: add-to-any
|
252 |
}
|
253 |
|
254 |
// Use default services if services have not been selected yet
|
255 |
+
$active_services = isset( $options['active_services'] ) ? $options['active_services'] : array( 'facebook', 'twitter', 'email' );
|
256 |
// Services set by "buttons" arg? Then use "buttons" arg instead
|
257 |
$active_services = empty( $args['buttons'] ) ? $active_services : $args['buttons'];
|
258 |
}
|
addtoany.admin.php
CHANGED
@@ -1099,7 +1099,7 @@ function A2A_SHARE_SAVE_admin_head() {
|
|
1099 |
$active_services = $options['active_services'];
|
1100 |
} else {
|
1101 |
// Use default services if options have not been set yet (and no services were just saved in the form)
|
1102 |
-
$active_services = array( 'facebook', 'twitter', '
|
1103 |
}
|
1104 |
|
1105 |
$active_services_last = end($active_services);
|
1099 |
$active_services = $options['active_services'];
|
1100 |
} else {
|
1101 |
// Use default services if options have not been set yet (and no services were just saved in the form)
|
1102 |
+
$active_services = array( 'facebook', 'twitter', 'email' );
|
1103 |
}
|
1104 |
|
1105 |
$active_services_last = end($active_services);
|
addtoany.services.php
CHANGED
@@ -160,7 +160,7 @@ $A2A_SHARE_SAVE_services = array(
|
|
160 |
"evernote" => array(
|
161 |
"name" => "Evernote",
|
162 |
"icon" => "evernote",
|
163 |
-
"color" => "
|
164 |
),
|
165 |
"facebook_messenger" => array(
|
166 |
"name" => "Facebook Messenger",
|
@@ -182,6 +182,11 @@ $A2A_SHARE_SAVE_services = array(
|
|
182 |
"icon" => "folkd",
|
183 |
"color" => "0F70B2",
|
184 |
),
|
|
|
|
|
|
|
|
|
|
|
185 |
"google_bookmarks" => array(
|
186 |
"name" => "Google Bookmarks",
|
187 |
"icon" => "google",
|
@@ -192,11 +197,6 @@ $A2A_SHARE_SAVE_services = array(
|
|
192 |
"icon" => "google_classroom",
|
193 |
"color" => "FFC112",
|
194 |
),
|
195 |
-
"google_gmail" => array(
|
196 |
-
"name" => "Google Gmail",
|
197 |
-
"icon" => "gmail",
|
198 |
-
"color" => "DD5347",
|
199 |
-
),
|
200 |
"hacker_news" => array(
|
201 |
"name" => "Hacker News",
|
202 |
"icon" => "y18",
|
@@ -267,6 +267,11 @@ $A2A_SHARE_SAVE_services = array(
|
|
267 |
"icon" => "meneame",
|
268 |
"color" => "FF7D12",
|
269 |
),
|
|
|
|
|
|
|
|
|
|
|
270 |
"mix" => array(
|
271 |
"name" => "Mix",
|
272 |
"icon" => "mix",
|
160 |
"evernote" => array(
|
161 |
"name" => "Evernote",
|
162 |
"icon" => "evernote",
|
163 |
+
"color" => "00A82D",
|
164 |
),
|
165 |
"facebook_messenger" => array(
|
166 |
"name" => "Facebook Messenger",
|
182 |
"icon" => "folkd",
|
183 |
"color" => "0F70B2",
|
184 |
),
|
185 |
+
"google_gmail" => array(
|
186 |
+
"name" => "Gmail",
|
187 |
+
"icon" => "gmail",
|
188 |
+
"color" => "DD5347",
|
189 |
+
),
|
190 |
"google_bookmarks" => array(
|
191 |
"name" => "Google Bookmarks",
|
192 |
"icon" => "google",
|
197 |
"icon" => "google_classroom",
|
198 |
"color" => "FFC112",
|
199 |
),
|
|
|
|
|
|
|
|
|
|
|
200 |
"hacker_news" => array(
|
201 |
"name" => "Hacker News",
|
202 |
"icon" => "y18",
|
267 |
"icon" => "meneame",
|
268 |
"color" => "FF7D12",
|
269 |
),
|
270 |
+
"mewe" => array(
|
271 |
+
"name" => "MeWe",
|
272 |
+
"icon" => "mewe",
|
273 |
+
"color" => "007DA1",
|
274 |
+
),
|
275 |
"mix" => array(
|
276 |
"name" => "Mix",
|
277 |
"icon" => "mix",
|
icons/mewe.svg
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><g fill="#FFF"><path d="M9.636 10.427a1.22 1.22 0 1 1-2.44 0 1.22 1.22 0 1 1 2.44 0zM15.574 10.431a1.22 1.22 0 0 1-2.438 0 1.22 1.22 0 1 1 2.438 0zM22.592 10.431a1.221 1.221 0 1 1-2.443 0 1.221 1.221 0 0 1 2.443 0zM29.605 10.431a1.221 1.221 0 1 1-2.442 0 1.221 1.221 0 0 1 2.442 0zM3.605 13.772c0-.471.374-.859.859-.859h.18c.374 0 .624.194.789.457l2.935 4.597 2.95-4.611c.18-.291.43-.443.774-.443h.18c.485 0 .859.387.859.859v8.113a.843.843 0 0 1-.859.845.857.857 0 0 1-.845-.845V16.07l-2.366 3.559c-.18.276-.402.443-.72.443-.304 0-.526-.167-.706-.443l-2.354-3.53V21.9c0 .471-.374.83-.845.83a.815.815 0 0 1-.83-.83v-8.128h-.001zM14.396 14.055a.9.9 0 0 1-.069-.333c0-.471.402-.83.872-.83.415 0 .735.263.845.624l2.23 6.66 2.187-6.632c.139-.402.428-.678.859-.678h.124c.428 0 .735.278.859.678l2.187 6.632 2.23-6.675c.126-.346.415-.609.83-.609.457 0 .845.361.845.817a.96.96 0 0 1-.083.346l-2.867 8.032c-.152.43-.471.706-.887.706h-.165c-.415 0-.721-.263-.872-.706l-2.161-6.328-2.16 6.328c-.152.443-.47.706-.887.706h-.165c-.415 0-.72-.263-.887-.706l-2.865-8.032z"/></g></svg>
|