AddToAny Share Buttons - Version 1.7.8

Version Description

  • AddToAny Follow widgets will now use full URLs when specified for a service ID
  • Add Papaly
  • Add Refind
  • Update Pinterest icon
Download this release

Release Info

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

Code changes from version 1.7.7 to 1.7.8

README.txt CHANGED
@@ -1,9 +1,9 @@
1
  === AddToAny Share Buttons ===
2
  Contributors: micropat, addtoany
3
- Tags: AddToAny, share, sharing, social, share button, share buttons, social media, media, marketing, links, email, seo, woocommerce, ecommerce, google, linkedin, reddit, facebook, like, twitter, pinterest, whatsapp, instagram, youtube, addthis, share this, sharethis, feed, icons
4
  Requires at least: 3.7
5
  Tested up to: 4.7
6
- Stable tag: 1.7.7
7
 
8
  Share buttons for WordPress including the AddToAny sharing button, Facebook, Twitter, Google+, Pinterest, WhatsApp, many more, and follow icons too.
9
 
@@ -63,7 +63,7 @@ AddToAny is the universal sharing platform, and AddToAny's plugin is the most po
63
  = Wide Support =
64
 
65
  * Over 10 years of development
66
- * Over 5.6 million downloads
67
  * Translated into dozens of languages
68
  * Ongoing support from the community
69
 
@@ -117,15 +117,19 @@ Try another web browser, device, and/or Internet connection to see if the button
117
  = What is the shortcode for sharing? =
118
 
119
  You can place your share buttons exactly where you want them by inserting the following shortcode:
 
120
  `[addtoany]`
121
 
122
  Customize the shared URL like so:
 
123
  `[addtoany url="https://www.example.com/page.html" title="Some Example Page"]`
124
 
125
  Display specific share buttons by specifying comma-separated <a href="https://www.addtoany.com/services/">service codes</a>:
 
126
  `[addtoany buttons="facebook,twitter,google_plus"]`
127
 
128
  Share a specific image or video to certain services that accept arbitrary media (Pinterest, Yummly):
 
129
  `[addtoany buttons="pinterest,yummly" media="https://www.example.com/media/picture.jpg"]`
130
 
131
  = For Facebook sharing, how can I set the thumbnail image and description Facebook uses? =
@@ -149,9 +153,11 @@ Upload sharing icons in a single directory to a public location, and make sure t
149
  = How can I place the share buttons in a specific area of my site? =
150
 
151
  In the Theme Editor (or another code editor), place this code block where you want the button and individual icons to appear in your theme:
 
152
  `<?php if ( function_exists( 'ADDTOANY_SHARE_SAVE_KIT' ) ) { ADDTOANY_SHARE_SAVE_KIT(); } ?>`
153
 
154
  You can specify [AddToAny service code(s)](https://www.addtoany.com/services/) to show specific share buttons, for example:
 
155
  `<?php if ( function_exists( 'ADDTOANY_SHARE_SAVE_KIT' ) ) {
156
  ADDTOANY_SHARE_SAVE_KIT( array(
157
  'buttons' => array( 'facebook', 'twitter', 'google_plus', 'whatsapp' ),
@@ -159,6 +165,7 @@ You can specify [AddToAny service code(s)](https://www.addtoany.com/services/) t
159
  } ?>`
160
 
161
  To customize the shared URL and title:
 
162
  `<?php if ( function_exists( 'ADDTOANY_SHARE_SAVE_KIT' ) ) {
163
  ADDTOANY_SHARE_SAVE_KIT( array(
164
  'linkname' => 'Example Page',
@@ -167,11 +174,13 @@ To customize the shared URL and title:
167
  } ?>`
168
 
169
  To share the current URL and title (detected on the client-side):
 
170
  `<?php if ( function_exists( 'ADDTOANY_SHARE_SAVE_KIT' ) ) {
171
  ADDTOANY_SHARE_SAVE_KIT( array( 'use_current_page' => true ) );
172
  } ?>`
173
 
174
  To hardcode the shared current URL and modify the title (server-side):
 
175
  `<?php if ( function_exists( 'ADDTOANY_SHARE_SAVE_KIT' ) ) {
176
  ADDTOANY_SHARE_SAVE_KIT( array(
177
  'linkname' => is_home() ? get_bloginfo( 'description' ) : wp_title( '', false ),
@@ -180,6 +189,7 @@ To hardcode the shared current URL and modify the title (server-side):
180
  } ?>`
181
 
182
  To share a specific image or video to certain services that accept arbitrary media (Pinterest, Yummly):
 
183
  `<?php if ( function_exists( 'ADDTOANY_SHARE_SAVE_KIT' ) ) {
184
  ADDTOANY_SHARE_SAVE_KIT( array(
185
  'buttons' => array( 'pinterest', 'yummly' ),
@@ -192,6 +202,7 @@ To share a specific image or video to certain services that accept arbitrary med
192
  = How can I place the follow buttons in a specific area of my site? =
193
 
194
  See the [supported follow services](https://www.addtoany.com/buttons/customize/follow_buttons) for service code names, then place this example code in your theme's file(s) where you want the follow buttons to appear:
 
195
  `<?php if ( function_exists( 'ADDTOANY_FOLLOW_KIT' ) ) {
196
  ADDTOANY_FOLLOW_KIT( array(
197
  'buttons' => array(
@@ -236,9 +247,11 @@ add_filter( 'A2A_FOLLOW_services', 'addtoany_add_follow_services', 10, 1 );`
236
  It depends on your theme, but you can try adding the following CSS code to your Additional CSS box in Settings > AddToAny.
237
 
238
  To align right:
 
239
  `.addtoany_share_save_container { text-align:right; }`
240
 
241
  To align center:
 
242
  `.addtoany_share_save_container { text-align:center; }`
243
 
244
  = How can I remove the button(s) from individual posts and pages? =
@@ -262,6 +275,7 @@ Go to `Settings` > `AddToAny` > uncheck `Display at the top or bottom of posts o
262
  In your theme's `functions.php`, you can add a filter to disable AddToAny sharing.
263
 
264
  Disable AddToAny sharing in specific categories, for example:
 
265
  `function addtoany_disable_sharing_in_some_categories() {
266
  // Examples of in_category usage: https://codex.wordpress.org/Function_Reference/in_category
267
  if ( in_category( array( 'my_category_1_slug', 'my_category_2_slug' ) ) ) {
@@ -271,6 +285,7 @@ Disable AddToAny sharing in specific categories, for example:
271
  add_filter( 'addtoany_sharing_disabled', 'addtoany_disable_sharing_in_some_categories' );`
272
 
273
  Disable AddToAny sharing on a custom post type, for example:
 
274
  `function addtoany_disable_sharing_on_my_custom_post_type() {
275
  if ( 'my_custom_post_type' == get_post_type() ) {
276
  return true;
@@ -305,15 +320,15 @@ The Google+ Share Button width can be changed using CSS code, for instance: `.a2
305
 
306
  Yes, this plugin outputs 100% W3C valid HTML5 and W3C valid CSS 3 by default.
307
 
308
- = How can I load the buttons after content insertion with AJAX and infinite scroll? =
309
 
310
- Fire the standard `post-load` event to have the plugin initiate AddToAny buttons:
311
- `jQuery( 'body' ).trigger( 'post-load' );`
312
 
313
- A couple prerequisites:
314
 
315
- * The request has an `HTTP_X_REQUESTED_WITH` header set to `xmlhttprequest`
316
- * `jQuery` available
 
317
 
318
  = Why does the menu appear behind embedded objects (like Flash)? =
319
 
@@ -322,18 +337,25 @@ Please read <a href="https://www.addtoany.com/buttons/customize/show_over_embeds
322
  = How can I set the plugin as a "Must-Use" plugin that is autoloaded and activated for all sites? =
323
 
324
  Upload (or move) the `add-to-any` plugin directory into the `/wp-content/mu-plugins/` directory. Then create a proxy PHP loader file (such as `load.php`) in your `mu-plugins` directory, for example:
 
325
  `<?php require WPMU_PLUGIN_DIR . '/add-to-any/add-to-any.php';`
326
 
327
  == Screenshots ==
328
 
329
  1. AddToAny vector share buttons (SVG icons) are pixel-perfect on Retina and high-PPI dispays
330
- 2. Traditional Share/Save button features Facebook, Twitter, and a generic share icon
331
- 3. Mini share menu that drops down when visitors use the universal share button
332
- 4. Full universal share menu modal that includes all services
333
- 5. Settings panel
334
 
335
  == Changelog ==
336
 
 
 
 
 
 
 
337
  = 1.7.7 =
338
  * Resolve syntax issue with [out-of-date PHP versions](https://secure.php.net/eol.php) below PHP 5.3
339
 
1
  === AddToAny Share Buttons ===
2
  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.7
6
+ Stable tag: 1.7.8
7
 
8
  Share buttons for WordPress including the AddToAny sharing button, Facebook, Twitter, Google+, Pinterest, WhatsApp, many more, and follow icons too.
9
 
63
  = Wide Support =
64
 
65
  * Over 10 years of development
66
+ * Over 6 million downloads
67
  * Translated into dozens of languages
68
  * Ongoing support from the community
69
 
117
  = What is the shortcode for sharing? =
118
 
119
  You can place your share buttons exactly where you want them by inserting the following shortcode:
120
+
121
  `[addtoany]`
122
 
123
  Customize the shared URL like so:
124
+
125
  `[addtoany url="https://www.example.com/page.html" title="Some Example Page"]`
126
 
127
  Display specific share buttons by specifying comma-separated <a href="https://www.addtoany.com/services/">service codes</a>:
128
+
129
  `[addtoany buttons="facebook,twitter,google_plus"]`
130
 
131
  Share a specific image or video to certain services that accept arbitrary media (Pinterest, Yummly):
132
+
133
  `[addtoany buttons="pinterest,yummly" media="https://www.example.com/media/picture.jpg"]`
134
 
135
  = For Facebook sharing, how can I set the thumbnail image and description Facebook uses? =
153
  = How can I place the share buttons in a specific area of my site? =
154
 
155
  In the Theme Editor (or another code editor), place this code block where you want the button and individual icons to appear in your theme:
156
+
157
  `<?php if ( function_exists( 'ADDTOANY_SHARE_SAVE_KIT' ) ) { ADDTOANY_SHARE_SAVE_KIT(); } ?>`
158
 
159
  You can specify [AddToAny service code(s)](https://www.addtoany.com/services/) to show specific share buttons, for example:
160
+
161
  `<?php if ( function_exists( 'ADDTOANY_SHARE_SAVE_KIT' ) ) {
162
  ADDTOANY_SHARE_SAVE_KIT( array(
163
  'buttons' => array( 'facebook', 'twitter', 'google_plus', 'whatsapp' ),
165
  } ?>`
166
 
167
  To customize the shared URL and title:
168
+
169
  `<?php if ( function_exists( 'ADDTOANY_SHARE_SAVE_KIT' ) ) {
170
  ADDTOANY_SHARE_SAVE_KIT( array(
171
  'linkname' => 'Example Page',
174
  } ?>`
175
 
176
  To share the current URL and title (detected on the client-side):
177
+
178
  `<?php if ( function_exists( 'ADDTOANY_SHARE_SAVE_KIT' ) ) {
179
  ADDTOANY_SHARE_SAVE_KIT( array( 'use_current_page' => true ) );
180
  } ?>`
181
 
182
  To hardcode the shared current URL and modify the title (server-side):
183
+
184
  `<?php if ( function_exists( 'ADDTOANY_SHARE_SAVE_KIT' ) ) {
185
  ADDTOANY_SHARE_SAVE_KIT( array(
186
  'linkname' => is_home() ? get_bloginfo( 'description' ) : wp_title( '', false ),
189
  } ?>`
190
 
191
  To share a specific image or video to certain services that accept arbitrary media (Pinterest, Yummly):
192
+
193
  `<?php if ( function_exists( 'ADDTOANY_SHARE_SAVE_KIT' ) ) {
194
  ADDTOANY_SHARE_SAVE_KIT( array(
195
  'buttons' => array( 'pinterest', 'yummly' ),
202
  = How can I place the follow buttons in a specific area of my site? =
203
 
204
  See the [supported follow services](https://www.addtoany.com/buttons/customize/follow_buttons) for service code names, then place this example code in your theme's file(s) where you want the follow buttons to appear:
205
+
206
  `<?php if ( function_exists( 'ADDTOANY_FOLLOW_KIT' ) ) {
207
  ADDTOANY_FOLLOW_KIT( array(
208
  'buttons' => array(
247
  It depends on your theme, but you can try adding the following CSS code to your Additional CSS box in Settings > AddToAny.
248
 
249
  To align right:
250
+
251
  `.addtoany_share_save_container { text-align:right; }`
252
 
253
  To align center:
254
+
255
  `.addtoany_share_save_container { text-align:center; }`
256
 
257
  = How can I remove the button(s) from individual posts and pages? =
275
  In your theme's `functions.php`, you can add a filter to disable AddToAny sharing.
276
 
277
  Disable AddToAny sharing in specific categories, for example:
278
+
279
  `function addtoany_disable_sharing_in_some_categories() {
280
  // Examples of in_category usage: https://codex.wordpress.org/Function_Reference/in_category
281
  if ( in_category( array( 'my_category_1_slug', 'my_category_2_slug' ) ) ) {
285
  add_filter( 'addtoany_sharing_disabled', 'addtoany_disable_sharing_in_some_categories' );`
286
 
287
  Disable AddToAny sharing on a custom post type, for example:
288
+
289
  `function addtoany_disable_sharing_on_my_custom_post_type() {
290
  if ( 'my_custom_post_type' == get_post_type() ) {
291
  return true;
320
 
321
  Yes, this plugin outputs 100% W3C valid HTML5 and W3C valid CSS 3 by default.
322
 
323
+ = How can I load the buttons after content insertion with Ajax and infinite scroll? =
324
 
325
+ AddToAny supports the <a href="https://codex.wordpress.org/AJAX_in_Plugins#The_post-load_JavaScript_Event">standard `post-load` event</a>.
 
326
 
327
+ Ajax and infinite scroll plugins should always fire the `post-load` event after content insertion, so request <a href="https://codex.wordpress.org/AJAX_in_Plugins#The_post-load_JavaScript_Event">standard `post-load` support</a> from plugin authors as needed.
328
 
329
+ Use the following line to dispatch the `post-load` event for AddToAny and other plugins:
330
+
331
+ `jQuery( 'body' ).trigger( 'post-load' );`
332
 
333
  = Why does the menu appear behind embedded objects (like Flash)? =
334
 
337
  = How can I set the plugin as a "Must-Use" plugin that is autoloaded and activated for all sites? =
338
 
339
  Upload (or move) the `add-to-any` plugin directory into the `/wp-content/mu-plugins/` directory. Then create a proxy PHP loader file (such as `load.php`) in your `mu-plugins` directory, for example:
340
+
341
  `<?php require WPMU_PLUGIN_DIR . '/add-to-any/add-to-any.php';`
342
 
343
  == Screenshots ==
344
 
345
  1. AddToAny vector share buttons (SVG icons) are pixel-perfect on Retina and high-PPI dispays
346
+ 2. Mini share menu that drops down when visitors use the universal share button
347
+ 3. Full universal share menu modal that includes all services
348
+ 4. Standard Settings
349
+ 5. Floating Settings
350
 
351
  == Changelog ==
352
 
353
+ = 1.7.8 =
354
+ * AddToAny Follow widgets will now use full URLs when specified for a service ID
355
+ * Add Papaly
356
+ * Add Refind
357
+ * Update Pinterest icon
358
+
359
  = 1.7.7 =
360
  * Resolve syntax issue with [out-of-date PHP versions](https://secure.php.net/eol.php) below PHP 5.3
361
 
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
7
  Author: AddToAny
8
  Author URI: https://www.addtoany.com/
9
  Text Domain: add-to-any
@@ -278,11 +278,14 @@ function ADDTOANY_SHARE_SAVE_ICONS( $args = array() ) {
278
  // If Follow kit and HREF specified
279
  if ( $is_follow && isset( $service['href'] ) ) {
280
  $follow_id = $buttons[ $active_service ]['id'];
281
- if ( 'feed' == $safe_name ) {
282
- // For "feed" service, stored ID value is actually the URL
 
 
 
283
  $href = $follow_id;
284
  } else {
285
- // For all other services, replace
286
  $href = str_replace( '${id}', $follow_id, $service['href'] );
287
  }
288
  $href = ( 'feed' == $safe_name ) ? $follow_id : $href;
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.8
7
  Author: AddToAny
8
  Author URI: https://www.addtoany.com/
9
  Text Domain: add-to-any
278
  // If Follow kit and HREF specified
279
  if ( $is_follow && isset( $service['href'] ) ) {
280
  $follow_id = $buttons[ $active_service ]['id'];
281
+ $is_url = in_array( parse_url( $follow_id, PHP_URL_SCHEME ), array( 'http', 'https' ) );
282
+
283
+ // If it's a URL instead of a service ID
284
+ if ( $is_url ) {
285
+ // Just use the given URL instead of the URL template
286
  $href = $follow_id;
287
  } else {
288
+ // Replace the ID placeholder in the URL template
289
  $href = str_replace( '${id}', $follow_id, $service['href'] );
290
  }
291
  $href = ( 'feed' == $safe_name ) ? $follow_id : $href;
addtoany.admin.php CHANGED
@@ -643,7 +643,7 @@ function A2A_SHARE_SAVE_options_page() {
643
 
644
  <br/><br/>
645
  <div class="setting-description">
646
- <?php _e("See <a href=\"widgets.php\" title=\"Theme Widgets\">Widgets</a> and <a href=\"options-general.php?page=addtoany&action=floating\" title=\"AddToAny Floating Share Buttons\">Floating</a> for additional placement options. For advanced placement, see <a href=\"http://wordpress.org/plugins/add-to-any/faq/\">the FAQs</a>.", 'add-to-any'); ?>
647
  </div>
648
  </fieldset></td>
649
  </tr>
@@ -834,12 +834,12 @@ function A2A_SHARE_SAVE_options_page() {
834
  </form>
835
 
836
  <h2><?php _e('Like this plugin?','add-to-any'); ?></h2>
837
- <p><?php _e('<a href="https://wordpress.org/support/view/plugin-reviews/add-to-any#postform" target="_blank">Give it a 5 star rating</a> on WordPress.org.','add-to-any'); ?></p>
838
- <p><?php _e('<a href="https://www.addtoany.com/share_save#title=WordPress%20Share%20Plugin%20by%20AddToAny.com&amp;url=http%3A%2F%2Fwordpress.org%2Fplugins%2Fadd-to-any%2F">Share it</a> and follow <a href="https://www.addtoany.com/">AddToAny</a> on <a href="https://www.facebook.com/AddToAny" target="_blank">Facebook</a> &amp; <a href="https://twitter.com/AddToAny" target="_blank">Twitter</a>.','add-to-any'); ?></p>
839
 
840
  <h2><?php _e('Need support?','add-to-any'); ?></h2>
841
- <p><?php _e('See the <a href="http://wordpress.org/extend/plugins/add-to-any/faq/">FAQs</a>.','add-to-any'); ?></p>
842
- <p><?php _e('Search the <a href="http://wordpress.org/tags/add-to-any">support forums</a>.','add-to-any'); ?></p>
843
  </div>
844
 
845
  <script src="http<?php if ( is_ssl() ) echo 's'; ?>://static.addtoany.com/menu/page.js"></script>
643
 
644
  <br/><br/>
645
  <div class="setting-description">
646
+ <?php _e("See <a href=\"widgets.php\" title=\"Theme Widgets\">Widgets</a> and <a href=\"options-general.php?page=addtoany&action=floating\" title=\"AddToAny Floating Share Buttons\">Floating</a> for additional placement options. For advanced placement, see <a href=\"https://wordpress.org/plugins/add-to-any/faq/\">the FAQs</a>.", 'add-to-any'); ?>
647
  </div>
648
  </fieldset></td>
649
  </tr>
834
  </form>
835
 
836
  <h2><?php _e('Like this plugin?','add-to-any'); ?></h2>
837
+ <p><?php _e('<a href="https://wordpress.org/support/plugin/add-to-any/reviews/#new-post" target="_blank">Give it a 5 star rating</a> on WordPress.org.','add-to-any'); ?></p>
838
+ <p><?php _e('<a href="https://www.addtoany.com/share#title=WordPress%20Share%20Plugin%20by%20AddToAny.com&amp;url=https%3A%2F%2Fwordpress.org%2Fplugins%2Fadd-to-any%2F">Share it</a> and follow <a href="https://www.addtoany.com/">AddToAny</a> on <a href="https://www.facebook.com/AddToAny" target="_blank">Facebook</a> &amp; <a href="https://twitter.com/AddToAny" target="_blank">Twitter</a>.','add-to-any'); ?></p>
839
 
840
  <h2><?php _e('Need support?','add-to-any'); ?></h2>
841
+ <p><?php _e('See the <a href="https://wordpress.org/plugins/add-to-any/faq/">FAQs</a>.','add-to-any'); ?></p>
842
+ <p><?php _e('Search the <a href="https://wordpress.org/support/plugin/add-to-any">support forums</a>.','add-to-any'); ?></p>
843
  </div>
844
 
845
  <script src="http<?php if ( is_ssl() ) echo 's'; ?>://static.addtoany.com/menu/page.js"></script>
addtoany.services.php CHANGED
@@ -337,6 +337,11 @@ $A2A_SHARE_SAVE_services = array(
337
  "icon" => "outlook_com",
338
  "color" => "0072C6",
339
  ),
 
 
 
 
 
340
  "pinboard" => array(
341
  "name" => "Pinboard",
342
  "icon" => "pinboard",
@@ -387,6 +392,11 @@ $A2A_SHARE_SAVE_services = array(
387
  "icon" => "rediff",
388
  "color" => "D20000",
389
  ),
 
 
 
 
 
390
  "renren" => array(
391
  "name" => "Renren",
392
  "icon" => "renren",
337
  "icon" => "outlook_com",
338
  "color" => "0072C6",
339
  ),
340
+ "papaly" => array(
341
+ "name" => "Papaly",
342
+ "icon" => "papaly",
343
+ "color" => "3AC0F6",
344
+ ),
345
  "pinboard" => array(
346
  "name" => "Pinboard",
347
  "icon" => "pinboard",
392
  "icon" => "rediff",
393
  "color" => "D20000",
394
  ),
395
+ "refind" => array(
396
+ "name" => "Refind",
397
+ "icon" => "refind",
398
+ "color" => "1492ef",
399
+ ),
400
  "renren" => array(
401
  "name" => "Renren",
402
  "icon" => "renren",
icons/papaly.svg ADDED
@@ -0,0 +1 @@
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path fill="#FFF" d="M20.744 8.217c1.112 0 2.296.519 3.106 1.329l.185.185c1.361 1.361 1.402 4.432.042 5.792l-3.103 2.787L16 22.777l-4.974-4.467-3.103-2.787c-1.361-1.361-1.319-4.432.042-5.792l.185-.185c.81-.81 1.994-1.329 3.106-1.329.756 0 1.48.24 2.03.79L16 12.291l2.714-3.284c.55-.55 1.274-.79 2.03-.79m0-2.921c-1.58 0-3.035.585-4.096 1.646l-.098.098-.088.107-.462.558-.462-.559-.088-.106-.098-.098c-1.061-1.061-2.516-1.646-4.096-1.646-1.871 0-3.804.816-5.172 2.184l-.185.185c-2.515 2.515-2.535 7.43-.042 9.924l.055.055.058.052 3.103 2.787 4.974 4.467L16 26.704l1.952-1.753 4.974-4.467 3.103-2.787.058-.052.055-.055c2.494-2.494 2.473-7.409-.042-9.924l-.184-.186c-1.368-1.368-3.301-2.184-5.172-2.184z"/></svg>
icons/pinterest.svg CHANGED
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M16.56 4C10 4 6.71 8.7 6.71 12.61c0 2.37.9 4.48 2.82 5.27a.47.47 0 0 0 .69-.34l.28-1.11a.67.67 0 0 0-.2-.77A4 4 0 0 1 9.4 13a6.53 6.53 0 0 1 6.79-6.6c3.7 0 5.74 2.26 5.74 5.28 0 4-1.76 7.33-4.37 7.33a2.13 2.13 0 0 1-2.18-2.66c.41-1.75 1.22-3.63 1.22-4.89a1.85 1.85 0 0 0-1.86-2.07c-1.47 0-2.66 1.53-2.66 3.57a5.31 5.31 0 0 0 .44 2.18l-1.77 7.51a15.45 15.45 0 0 0 0 5.24.18.18 0 0 0 .33.08 14.71 14.71 0 0 0 2.49-4.51c.17-.61 1-3.79 1-3.79a4 4 0 0 0 3.37 1.72c4.43 0 7.44-4 7.44-9.45C25.29 7.81 21.83 4 16.56 4z" fill="#fff"/></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path fill="#FFF" d="M16.539 4.5c-6.277 0-9.442 4.5-9.442 8.253 0 2.272.86 4.293 2.705 5.046.303.125.574.005.662-.33.061-.231.205-.816.27-1.06.088-.331.053-.447-.191-.736-.532-.627-.873-1.439-.873-2.591 0-3.338 2.498-6.327 6.505-6.327 3.548 0 5.497 2.168 5.497 5.062 0 3.81-1.686 7.025-4.188 7.025-1.382 0-2.416-1.142-2.085-2.545.397-1.674 1.166-3.48 1.166-4.689 0-1.081-.581-1.983-1.782-1.983-1.413 0-2.548 1.462-2.548 3.419 0 1.247.421 2.091.421 2.091l-1.699 7.199c-.505 2.137-.076 4.755-.039 5.019.021.158.223.196.314.077.13-.17 1.813-2.247 2.384-4.324.162-.587.929-3.631.929-3.631.46.876 1.801 1.646 3.227 1.646 4.247 0 7.128-3.871 7.128-9.053.003-3.918-3.317-7.568-8.361-7.568z"/></svg>
icons/refind.svg ADDED
@@ -0,0 +1 @@
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><g fill="#FFF"><path d="M16 21.256c-2.891 0-5.256-2.365-5.256-5.255 0-2.891 2.365-5.255 5.255-5.255 2.891 0 5.255 2.365 5.255 5.255.002 2.89-2.363 5.255-5.254 5.255z"/><path d="M20.664 23.676A8.91 8.91 0 0 1 16 25c-4.95 0-9-4.05-9-9s4.05-9 9-9 9 4.05 9 9a8.912 8.912 0 0 1-1.302 4.628l2.293 1.991A11.908 11.908 0 0 0 28 16c0-6.6-5.4-12-12-12S4 9.4 4 16s5.4 12 12 12c2.456 0 4.745-.75 6.652-2.029l-1.988-2.295z"/></g></svg>