AddToAny Share Buttons - Version 1.7.24

Version Description

  • Move JS into a single block to prevent issues caused by some site optimization plugins
  • Simplify file paths & URLs
  • Prevent Cloudflare's experimental Rocket Loader from causing script issues
  • Remove Google+ share count options because Google+ no longer provides counters
  • Remove AIM, BuddyMarks, diHITT, Jamespot, Netlog, NewsVine, NUjij, Segnalo, Stumpedia, YouMob
Download this release

Release Info

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

Code changes from version 1.7.23 to 1.7.24

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.23
7
 
8
  Share buttons for WordPress including the AddToAny sharing button, Facebook, Twitter, Google+, Pinterest, WhatsApp, many more, and follow icons too.
9
 
@@ -61,7 +61,7 @@ AddToAny is the universal sharing platform, and the AddToAny plugin is the most
61
  = Wide Support =
62
 
63
  * Over 10 years of development
64
- * Over 7 million downloads
65
  * Translated into dozens of languages
66
  * Ongoing support from the community
67
 
@@ -351,6 +351,13 @@ Upload (or move) the `add-to-any` plugin directory into the `/wp-content/mu-plug
351
 
352
  == Changelog ==
353
 
 
 
 
 
 
 
 
354
  = 1.7.23 =
355
  * Add `addtoany_content` class name to container in content
356
  * The container's `addtoany_share_save_container` class name will be removed in a future plugin update
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.24
7
 
8
  Share buttons for WordPress including the AddToAny sharing button, Facebook, Twitter, Google+, Pinterest, WhatsApp, many more, and follow icons too.
9
 
61
  = Wide Support =
62
 
63
  * Over 10 years of development
64
+ * Over 8 million downloads
65
  * Translated into dozens of languages
66
  * Ongoing support from the community
67
 
351
 
352
  == Changelog ==
353
 
354
+ = 1.7.24 =
355
+ * Move JS into a single block to prevent issues caused by some site optimization plugins
356
+ * Simplify file paths & URLs
357
+ * Prevent Cloudflare's experimental Rocket Loader from causing script issues
358
+ * Remove Google+ share count options because Google+ no longer provides counters
359
+ * Remove AIM, BuddyMarks, diHITT, Jamespot, Netlog, NewsVine, NUjij, Segnalo, Stumpedia, YouMob
360
+
361
  = 1.7.23 =
362
  * Add `addtoany_content` class name to container in content
363
  * The container's `addtoany_share_save_container` class name will be removed in a future plugin update
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.23
7
  Author: AddToAny
8
  Author URI: https://www.addtoany.com/
9
  Text Domain: add-to-any
@@ -12,15 +12,12 @@ Domain Path: /languages
12
 
13
  // Explicitly globalize to support bootstrapped WordPress
14
  global $A2A_locale, $A2A_FOLLOW_services,
15
- $A2A_SHARE_SAVE_plugin_basename, $A2A_SHARE_SAVE_options, $A2A_SHARE_SAVE_plugin_dir, $A2A_SHARE_SAVE_plugin_url_path,
16
  $A2A_SHARE_SAVE_services, $A2A_SHARE_SAVE_amp_icons_css;
17
 
18
- $A2A_SHARE_SAVE_plugin_basename = plugin_basename( dirname( __FILE__ ) );
19
  $A2A_SHARE_SAVE_plugin_dir = untrailingslashit( plugin_dir_path( __FILE__ ) );
20
- $A2A_SHARE_SAVE_plugin_url_path = untrailingslashit( plugin_dir_url( __FILE__ ) );
21
 
22
- // HTTPS?
23
- $A2A_SHARE_SAVE_plugin_url_path = is_ssl() ? str_replace( 'http:', 'https:', $A2A_SHARE_SAVE_plugin_url_path ) : $A2A_SHARE_SAVE_plugin_url_path;
24
  // Set AddToAny locale (JavaScript)
25
  $A2A_locale = ! isset ( $A2A_locale ) ? '' : $A2A_locale;
26
  // Set plugin options
@@ -31,11 +28,10 @@ include_once $A2A_SHARE_SAVE_plugin_dir . '/addtoany.services.php';
31
 
32
  function A2A_SHARE_SAVE_init() {
33
  global $A2A_SHARE_SAVE_plugin_dir,
34
- $A2A_SHARE_SAVE_plugin_basename,
35
  $A2A_SHARE_SAVE_options;
36
 
37
  // Load the textdomain for translations
38
- load_plugin_textdomain( 'add-to-any', false, $A2A_SHARE_SAVE_plugin_basename . '/languages/' );
39
 
40
  // Update plugin options
41
  $options = $A2A_SHARE_SAVE_options;
@@ -186,8 +182,7 @@ function ADDTOANY_SHARE_SAVE_KIT( $args = array() ) {
186
  function ADDTOANY_SHARE_SAVE_ICONS( $args = array() ) {
187
  // $args array: output_later, html_container_open, html_container_close, html_wrap_open, html_wrap_close, linkname, linkurl
188
 
189
- global $A2A_SHARE_SAVE_plugin_url_path,
190
- $A2A_SHARE_SAVE_services,
191
  $A2A_FOLLOW_services,
192
  $A2A_SHARE_SAVE_amp_icons_css;
193
 
@@ -236,7 +231,7 @@ function ADDTOANY_SHARE_SAVE_ICONS( $args = array() ) {
236
  $custom_icons = true;
237
  } else {
238
  // Default to local SVGs (not an option currently)
239
- $icons_dir = $A2A_SHARE_SAVE_plugin_url_path . '/icons/';
240
  $icons_type = 'svg';
241
  }
242
 
@@ -382,8 +377,6 @@ function ADDTOANY_SHARE_SAVE_ICONS( $args = array() ) {
382
  function ADDTOANY_SHARE_SAVE_BUTTON( $args = array() ) {
383
 
384
  // $args array = output_later, html_container_open, html_container_close, html_wrap_open, html_wrap_close, linkname, linkurl, no_universal_button
385
-
386
- global $A2A_SHARE_SAVE_plugin_url_path;
387
 
388
  $options = get_option( 'addtoany_options', array() );
389
 
@@ -515,13 +508,11 @@ function ADDTOANY_SHARE_SAVE_SPECIAL( $special_service_code, $args = array() ) {
515
  }
516
 
517
  elseif ( $special_service_code == 'google_plusone' ) {
518
- $custom_attributes .= ( $options['special_google_plusone_options']['show_count'] == '1' ) ? '' : ' data-annotation="none"';
519
  $custom_attributes .= ' data-href="' . $linkurl . '"';
520
  $special_html = sprintf( $special_anchor_template, $special_service_code, $custom_attributes );
521
  }
522
 
523
  elseif ( $special_service_code == 'google_plus_share' ) {
524
- $custom_attributes .= ( $options['special_google_plus_share_options']['show_count'] == '1' ) ? '' : ' data-annotation="none"';
525
  $custom_attributes .= ' data-href="' . $linkurl . '"';
526
  $special_html = sprintf( $special_anchor_template, $special_service_code, $custom_attributes );
527
  }
@@ -765,17 +756,22 @@ function A2A_SHARE_SAVE_head_script() {
765
  . ( isset( $options['onclick'] ) && '1' == $options['onclick'] ? "\n" . 'a2a_config.onclick=1;' : '' )
766
  . ( $additional_js ? "\n" . stripslashes( $additional_js ) : '' );
767
 
768
- $javascript_header = "\n" . '<script type="text/javascript">' . "\n"
769
-
770
  . 'window.a2a_config=window.a2a_config||{};'
771
  . 'a2a_config.callbacks=[];a2a_config.overlays=[];'
772
  . 'a2a_config.templates={};'
773
  . A2A_menu_locale()
774
  . $script_configs
775
-
776
- . "\n</script>\n"
777
-
778
- . '<script type="text/javascript" src="' . $static_server . '/page.js" async="async"></script>' . "\n";
 
 
 
 
 
779
 
780
  echo $javascript_header;
781
  }
@@ -934,12 +930,12 @@ add_shortcode( 'addtoany', 'A2A_SHARE_SAVE_shortcode' );
934
 
935
 
936
  function A2A_SHARE_SAVE_stylesheet() {
937
- global $A2A_SHARE_SAVE_options, $A2A_SHARE_SAVE_plugin_url_path;
938
 
939
  $options = $A2A_SHARE_SAVE_options;
940
 
941
  if ( ! is_admin() ) {
942
- wp_enqueue_style( 'addtoany', $A2A_SHARE_SAVE_plugin_url_path . '/addtoany.min.css', false, '1.14' );
943
 
944
  // Prepare inline CSS
945
  $inline_css = '';
@@ -1005,10 +1001,8 @@ function A2A_SHARE_SAVE_stylesheet() {
1005
  add_action( 'wp_enqueue_scripts', 'A2A_SHARE_SAVE_stylesheet', 20 );
1006
 
1007
  function A2A_SHARE_SAVE_enqueue_script() {
1008
- global $A2A_SHARE_SAVE_plugin_url_path;
1009
-
1010
  if ( wp_script_is( 'jquery', 'registered' ) ) {
1011
- wp_enqueue_script( 'addtoany', $A2A_SHARE_SAVE_plugin_url_path . '/addtoany.min.js', array( 'jquery' ), '1.0' );
1012
  }
1013
  }
1014
 
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.24
7
  Author: AddToAny
8
  Author URI: https://www.addtoany.com/
9
  Text Domain: add-to-any
12
 
13
  // Explicitly globalize to support bootstrapped WordPress
14
  global $A2A_locale, $A2A_FOLLOW_services,
15
+ $A2A_SHARE_SAVE_options, $A2A_SHARE_SAVE_plugin_dir, $A2A_SHARE_SAVE_plugin_url,
16
  $A2A_SHARE_SAVE_services, $A2A_SHARE_SAVE_amp_icons_css;
17
 
 
18
  $A2A_SHARE_SAVE_plugin_dir = untrailingslashit( plugin_dir_path( __FILE__ ) );
19
+ $A2A_SHARE_SAVE_plugin_url = untrailingslashit( plugin_dir_url( __FILE__ ) );
20
 
 
 
21
  // Set AddToAny locale (JavaScript)
22
  $A2A_locale = ! isset ( $A2A_locale ) ? '' : $A2A_locale;
23
  // Set plugin options
28
 
29
  function A2A_SHARE_SAVE_init() {
30
  global $A2A_SHARE_SAVE_plugin_dir,
 
31
  $A2A_SHARE_SAVE_options;
32
 
33
  // Load the textdomain for translations
34
+ load_plugin_textdomain( 'add-to-any', false, plugin_basename( dirname( __FILE__ ) ) . '/languages/' );
35
 
36
  // Update plugin options
37
  $options = $A2A_SHARE_SAVE_options;
182
  function ADDTOANY_SHARE_SAVE_ICONS( $args = array() ) {
183
  // $args array: output_later, html_container_open, html_container_close, html_wrap_open, html_wrap_close, linkname, linkurl
184
 
185
+ global $A2A_SHARE_SAVE_services,
 
186
  $A2A_FOLLOW_services,
187
  $A2A_SHARE_SAVE_amp_icons_css;
188
 
231
  $custom_icons = true;
232
  } else {
233
  // Default to local SVGs (not an option currently)
234
+ $icons_dir = plugins_url('/icons/', __FILE__ );
235
  $icons_type = 'svg';
236
  }
237
 
377
  function ADDTOANY_SHARE_SAVE_BUTTON( $args = array() ) {
378
 
379
  // $args array = output_later, html_container_open, html_container_close, html_wrap_open, html_wrap_close, linkname, linkurl, no_universal_button
 
 
380
 
381
  $options = get_option( 'addtoany_options', array() );
382
 
508
  }
509
 
510
  elseif ( $special_service_code == 'google_plusone' ) {
 
511
  $custom_attributes .= ' data-href="' . $linkurl . '"';
512
  $special_html = sprintf( $special_anchor_template, $special_service_code, $custom_attributes );
513
  }
514
 
515
  elseif ( $special_service_code == 'google_plus_share' ) {
 
516
  $custom_attributes .= ' data-href="' . $linkurl . '"';
517
  $special_html = sprintf( $special_anchor_template, $special_service_code, $custom_attributes );
518
  }
756
  . ( isset( $options['onclick'] ) && '1' == $options['onclick'] ? "\n" . 'a2a_config.onclick=1;' : '' )
757
  . ( $additional_js ? "\n" . stripslashes( $additional_js ) : '' );
758
 
759
+ $javascript_header = "\n"
760
+ . '<script data-cfasync="false">' . "\n"
761
  . 'window.a2a_config=window.a2a_config||{};'
762
  . 'a2a_config.callbacks=[];a2a_config.overlays=[];'
763
  . 'a2a_config.templates={};'
764
  . A2A_menu_locale()
765
  . $script_configs
766
+ . "\n"
767
+ . '(function(d,s,a,b){'
768
+ . 'a=d.createElement(s);'
769
+ . 'b=d.getElementsByTagName(s)[0];'
770
+ . 'a.async=1;'
771
+ . 'a.src="' . $static_server . '/page.js";'
772
+ . 'b.parentNode.insertBefore(a,b);'
773
+ . '})(document,"script");'
774
+ . "\n</script>\n";
775
 
776
  echo $javascript_header;
777
  }
930
 
931
 
932
  function A2A_SHARE_SAVE_stylesheet() {
933
+ global $A2A_SHARE_SAVE_options;
934
 
935
  $options = $A2A_SHARE_SAVE_options;
936
 
937
  if ( ! is_admin() ) {
938
+ wp_enqueue_style( 'addtoany', plugins_url('/addtoany.min.css', __FILE__ ), false, '1.14' );
939
 
940
  // Prepare inline CSS
941
  $inline_css = '';
1001
  add_action( 'wp_enqueue_scripts', 'A2A_SHARE_SAVE_stylesheet', 20 );
1002
 
1003
  function A2A_SHARE_SAVE_enqueue_script() {
 
 
1004
  if ( wp_script_is( 'jquery', 'registered' ) ) {
1005
+ wp_enqueue_script( 'addtoany', plugins_url('/addtoany.min.js', __FILE__ ), array( 'jquery' ), '1.0' );
1006
  }
1007
  }
1008
 
addtoany.admin.php CHANGED
@@ -193,7 +193,7 @@ function _a2a_valid_hex_color( $value ) {
193
 
194
  function A2A_SHARE_SAVE_options_page() {
195
 
196
- global $A2A_SHARE_SAVE_plugin_url_path,
197
  $A2A_SHARE_SAVE_services;
198
 
199
  // Require admin privs
@@ -354,12 +354,6 @@ function A2A_SHARE_SAVE_options_page() {
354
  $new_options['special_twitter_tweet_options'] = array(
355
  'show_count' => '-1' // Twitter doesn't provide counts anymore
356
  );
357
- $new_options['special_google_plusone_options'] = array(
358
- 'show_count' => ( ( isset( $_POST['addtoany_google_plusone_show_count'] ) && $_POST['addtoany_google_plusone_show_count'] == '1' ) ? '1' : '-1' )
359
- );
360
- $new_options['special_google_plus_share_options'] = array(
361
- 'show_count' => ( ( isset( $_POST['addtoany_google_plus_share_show_count'] ) && $_POST['addtoany_google_plus_share_show_count'] == '1' ) ? '1' : '-1' )
362
- );
363
  $new_options['special_pinterest_pin_options'] = array(
364
  'show_count' => ( ( isset( $_POST['addtoany_pinterest_pin_show_count'] ) && $_POST['addtoany_pinterest_pin_show_count'] == '1' ) ? '1' : '-1' )
365
  );
@@ -438,7 +432,7 @@ function A2A_SHARE_SAVE_options_page() {
438
  <th scope="row"><?php _e("Share Buttons", 'add-to-any'); ?></th>
439
  <td><fieldset>
440
  <ul id="addtoany_services_sortable" class="addtoany_admin_list addtoany_override">
441
- <li class="dummy"><img src="<?php echo $A2A_SHARE_SAVE_plugin_url_path; ?>/icons/transparent.gif" width="32" height="32" alt="" /></li>
442
  </ul>
443
  <p id="addtoany_services_info"><?php _e("Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above.", 'add-to-any'); ?></p>
444
  <ul id="addtoany_services_selectable" class="addtoany_admin_list">
@@ -457,31 +451,31 @@ function A2A_SHARE_SAVE_options_page() {
457
  ? ' class="addtoany_special_service"' : '';
458
  ?>
459
  <li data-addtoany-icon-name="<?php echo $site['icon']; ?>"<?php echo $special_service; ?> id="a2a_wp_<?php echo $service_safe_name; ?>" title="<?php echo $site['name']; ?>">
460
- <img src="<?php echo (isset($site['icon_url'])) ? $site['icon_url'] : $A2A_SHARE_SAVE_plugin_url_path.'/icons/'.$site['icon'].'.svg'; ?>" width="<?php echo (isset($site['icon_width'])) ? $site['icon_width'] : '24'; ?>" height="<?php echo (isset($site['icon_height'])) ? $site['icon_height'] : '24'; ?>"<?php if ( isset( $site['color'] ) ) : ?> style="background-color:#<?php echo $site['color']; endif; ?>"><?php echo $site['name']; ?>
461
  </li>
462
  <?php
463
  } ?>
464
  <li style="clear:left" id="a2a_wp_facebook_like" class="addtoany_special_service addtoany_3p_button" title="Facebook Like button">
465
- <img src="<?php echo $A2A_SHARE_SAVE_plugin_url_path.'/icons/facebook_like_2x.png'; ?>" width="101" height="40" alt="Facebook Like" />
466
  </li>
467
  <li id="a2a_wp_twitter_tweet" class="addtoany_special_service addtoany_3p_button" title="Twitter Tweet button">
468
- <img src="<?php echo $A2A_SHARE_SAVE_plugin_url_path.'/icons/twitter_tweet_2x.png'; ?>" width="122" height="40" alt="Twitter Tweet" />
469
  </li>
470
  <li id="a2a_wp_google_plusone" class="addtoany_special_service addtoany_3p_button" title="Google +1 button">
471
- <img src="<?php echo $A2A_SHARE_SAVE_plugin_url_path.'/icons/google_plusone_2x.png'; ?>" width="64" height="40" alt="Google +1" />
472
  </li>
473
  <li id="a2a_wp_google_plus_share" class="addtoany_special_service addtoany_3p_button" title="Google+ Share button">
474
- <img src="<?php echo $A2A_SHARE_SAVE_plugin_url_path.'/icons/google_plus_share_2x.png'; ?>" width="113" height="40" alt="Google+ Share" />
475
  </li>
476
  <li id="a2a_wp_pinterest_pin" class="addtoany_special_service addtoany_3p_button" title="Pinterest Pin It button">
477
- <img src="<?php echo $A2A_SHARE_SAVE_plugin_url_path.'/icons/pinterest_pin_2x.png'; ?>" width="80" height="40" alt="Pinterest Pin It" />
478
  </li>
479
  </ul>
480
  <div id="addtoany_services_tip">
481
  <p style="line-height:0">
482
- <img src="<?php echo $A2A_SHARE_SAVE_plugin_url_path; ?>/icons/instagram.svg" width="24" height="24" style="margin-right:8px">
483
- <img src="<?php echo $A2A_SHARE_SAVE_plugin_url_path; ?>/icons/youtube.svg" width="24" height="24" style="margin-right:8px">
484
- <img src="<?php echo $A2A_SHARE_SAVE_plugin_url_path; ?>/icons/snapchat.svg" width="24" height="24">
485
  </p>
486
  <p>You can setup Instagram, YouTube, Snapchat, and other buttons in an AddToAny Follow widget.</p><p>Add the &quot;AddToAny Follow&quot; widget in <a href="customize.php?autofocus[panel]=widgets&amp;return=options-general.php%3Fpage%3Daddtoany">Customize</a> or <a href="widgets.php">Widgets</a>.</p>
487
  </div>
@@ -494,7 +488,7 @@ function A2A_SHARE_SAVE_options_page() {
494
  <div class="addtoany_icon_size_large">
495
  <label class="addtoany_override a2a_kit_size_32">
496
  <input name="A2A_SHARE_SAVE_button" value="A2A_SVG_32" type="radio"<?php if ( ! isset( $options['button'] ) || 'A2A_SVG_32' == $options['button'] ) echo ' checked="checked"'; ?> style="margin:9px 0;vertical-align:middle">
497
- <img src="<?php echo $A2A_SHARE_SAVE_plugin_url_path.'/icons/a2a.svg'; ?>" width="32" height="32" alt="AddToAny" onclick="this.parentNode.firstChild.checked=true" />
498
  </label>
499
  <br>
500
  </div>
@@ -878,8 +872,8 @@ function A2A_SHARE_SAVE_admin_head() {
878
 
879
  // Special service options?
880
  service_name = services_array[i].substr(7);
881
- if (service_name == 'facebook_like' || service_name == 'twitter_tweet' || service_name == 'google_plusone' || service_name == 'google_plus_share' || service_name == 'pinterest_pin') {
882
- if (service_name == 'google_plusone' || service_name == 'google_plus_share' || service_name == 'pinterest_pin') {
883
  show_count_value = (jQuery('#' + services_array[i] + '_show_count').is(':checked')) ? '1' : '-1' ;
884
  jQuery('#addtoany_admin_form').append('<input class="addtoany_hidden_options" name="addtoany_' + service_name + '_show_count" type="hidden" value="' + show_count_value + '"/>');
885
  }
@@ -927,10 +921,7 @@ function A2A_SHARE_SAVE_admin_head() {
927
  + '<option value="like">Like</option>'
928
  + '<option' + checked + ' value="recommend">Recommend</option>'
929
  + '</select>';
930
- } else if ('twitter_tweet' == this_service_name) {
931
- // twitter_tweet doesn't provide counts anymore
932
- } else {
933
- // google_plusone & google_plus_share & pinterest_pin
934
  if (service_options[this_service_name] && service_options[this_service_name].show_count) {
935
  checked = ' checked="checked"';
936
  }
@@ -1034,16 +1025,6 @@ function A2A_SHARE_SAVE_admin_head() {
1034
  && isset( $options['special_facebook_like_options'] ) && $options['special_facebook_like_options']['verb'] == 'recommend' ) {
1035
  ?>service_options.facebook_like = {verb: 'recommend'};<?php
1036
  }
1037
- if ( isset( $_POST['addtoany_google_plusone_show_count'] ) && $_POST['addtoany_google_plusone_show_count'] == '1'
1038
- || ! isset( $_POST['addtoany_google_plusone_show_count'] )
1039
- && isset( $options['special_google_plusone_options'] ) && $options['special_google_plusone_options']['show_count'] == '1' ) {
1040
- ?>service_options.google_plusone = {show_count: 1};<?php
1041
- }
1042
- if ( isset( $_POST['addtoany_google_plus_share_show_count'] ) && $_POST['addtoany_google_plus_share_show_count'] == '1'
1043
- || ! isset( $_POST['addtoany_google_plus_share_show_count'] )
1044
- && isset( $options['special_google_plus_share_options'] ) && $options['special_google_plus_share_options']['show_count'] == '1' ) {
1045
- ?>service_options.google_plus_share = {show_count: 1};<?php
1046
- }
1047
  if ( isset( $_POST['addtoany_pinterest_pin_show_count'] ) && $_POST['addtoany_pinterest_pin_show_count'] == '1'
1048
  || ! isset( $_POST['addtoany_pinterest_pin_show_count'] )
1049
  && isset( $options['special_pinterest_pin_options'] ) && $options['special_pinterest_pin_options']['show_count'] == '1' ) {
193
 
194
  function A2A_SHARE_SAVE_options_page() {
195
 
196
+ global $A2A_SHARE_SAVE_plugin_url,
197
  $A2A_SHARE_SAVE_services;
198
 
199
  // Require admin privs
354
  $new_options['special_twitter_tweet_options'] = array(
355
  'show_count' => '-1' // Twitter doesn't provide counts anymore
356
  );
 
 
 
 
 
 
357
  $new_options['special_pinterest_pin_options'] = array(
358
  'show_count' => ( ( isset( $_POST['addtoany_pinterest_pin_show_count'] ) && $_POST['addtoany_pinterest_pin_show_count'] == '1' ) ? '1' : '-1' )
359
  );
432
  <th scope="row"><?php _e("Share Buttons", 'add-to-any'); ?></th>
433
  <td><fieldset>
434
  <ul id="addtoany_services_sortable" class="addtoany_admin_list addtoany_override">
435
+ <li class="dummy"><img src="<?php echo $A2A_SHARE_SAVE_plugin_url; ?>/icons/transparent.gif" width="32" height="32" alt="" /></li>
436
  </ul>
437
  <p id="addtoany_services_info"><?php _e("Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above.", 'add-to-any'); ?></p>
438
  <ul id="addtoany_services_selectable" class="addtoany_admin_list">
451
  ? ' class="addtoany_special_service"' : '';
452
  ?>
453
  <li data-addtoany-icon-name="<?php echo $site['icon']; ?>"<?php echo $special_service; ?> id="a2a_wp_<?php echo $service_safe_name; ?>" title="<?php echo $site['name']; ?>">
454
+ <img src="<?php echo (isset($site['icon_url'])) ? $site['icon_url'] : $A2A_SHARE_SAVE_plugin_url.'/icons/'.$site['icon'].'.svg'; ?>" width="<?php echo (isset($site['icon_width'])) ? $site['icon_width'] : '24'; ?>" height="<?php echo (isset($site['icon_height'])) ? $site['icon_height'] : '24'; ?>"<?php if ( isset( $site['color'] ) ) : ?> style="background-color:#<?php echo $site['color']; endif; ?>"><?php echo $site['name']; ?>
455
  </li>
456
  <?php
457
  } ?>
458
  <li style="clear:left" id="a2a_wp_facebook_like" class="addtoany_special_service addtoany_3p_button" title="Facebook Like button">
459
+ <img src="<?php echo $A2A_SHARE_SAVE_plugin_url.'/icons/facebook_like_2x.png'; ?>" width="101" height="40" alt="Facebook Like" />
460
  </li>
461
  <li id="a2a_wp_twitter_tweet" class="addtoany_special_service addtoany_3p_button" title="Twitter Tweet button">
462
+ <img src="<?php echo $A2A_SHARE_SAVE_plugin_url.'/icons/twitter_tweet_2x.png'; ?>" width="122" height="40" alt="Twitter Tweet" />
463
  </li>
464
  <li id="a2a_wp_google_plusone" class="addtoany_special_service addtoany_3p_button" title="Google +1 button">
465
+ <img src="<?php echo $A2A_SHARE_SAVE_plugin_url.'/icons/google_plusone_2x.png'; ?>" width="64" height="40" alt="Google +1" />
466
  </li>
467
  <li id="a2a_wp_google_plus_share" class="addtoany_special_service addtoany_3p_button" title="Google+ Share button">
468
+ <img src="<?php echo $A2A_SHARE_SAVE_plugin_url.'/icons/google_plus_share_2x.png'; ?>" width="113" height="40" alt="Google+ Share" />
469
  </li>
470
  <li id="a2a_wp_pinterest_pin" class="addtoany_special_service addtoany_3p_button" title="Pinterest Pin It button">
471
+ <img src="<?php echo $A2A_SHARE_SAVE_plugin_url.'/icons/pinterest_pin_2x.png'; ?>" width="80" height="40" alt="Pinterest Pin It" />
472
  </li>
473
  </ul>
474
  <div id="addtoany_services_tip">
475
  <p style="line-height:0">
476
+ <img src="<?php echo $A2A_SHARE_SAVE_plugin_url; ?>/icons/instagram.svg" width="24" height="24" style="margin-right:8px">
477
+ <img src="<?php echo $A2A_SHARE_SAVE_plugin_url; ?>/icons/youtube.svg" width="24" height="24" style="margin-right:8px">
478
+ <img src="<?php echo $A2A_SHARE_SAVE_plugin_url; ?>/icons/snapchat.svg" width="24" height="24">
479
  </p>
480
  <p>You can setup Instagram, YouTube, Snapchat, and other buttons in an AddToAny Follow widget.</p><p>Add the &quot;AddToAny Follow&quot; widget in <a href="customize.php?autofocus[panel]=widgets&amp;return=options-general.php%3Fpage%3Daddtoany">Customize</a> or <a href="widgets.php">Widgets</a>.</p>
481
  </div>
488
  <div class="addtoany_icon_size_large">
489
  <label class="addtoany_override a2a_kit_size_32">
490
  <input name="A2A_SHARE_SAVE_button" value="A2A_SVG_32" type="radio"<?php if ( ! isset( $options['button'] ) || 'A2A_SVG_32' == $options['button'] ) echo ' checked="checked"'; ?> style="margin:9px 0;vertical-align:middle">
491
+ <img src="<?php echo $A2A_SHARE_SAVE_plugin_url.'/icons/a2a.svg'; ?>" width="32" height="32" alt="AddToAny" onclick="this.parentNode.firstChild.checked=true" />
492
  </label>
493
  <br>
494
  </div>
872
 
873
  // Special service options?
874
  service_name = services_array[i].substr(7);
875
+ if (service_name == 'facebook_like' || service_name == 'twitter_tweet' || service_name == 'pinterest_pin') {
876
+ if (service_name == 'pinterest_pin') {
877
  show_count_value = (jQuery('#' + services_array[i] + '_show_count').is(':checked')) ? '1' : '-1' ;
878
  jQuery('#addtoany_admin_form').append('<input class="addtoany_hidden_options" name="addtoany_' + service_name + '_show_count" type="hidden" value="' + show_count_value + '"/>');
879
  }
921
  + '<option value="like">Like</option>'
922
  + '<option' + checked + ' value="recommend">Recommend</option>'
923
  + '</select>';
924
+ } else if ('pinterest_pin' == this_service_name) {
 
 
 
925
  if (service_options[this_service_name] && service_options[this_service_name].show_count) {
926
  checked = ' checked="checked"';
927
  }
1025
  && isset( $options['special_facebook_like_options'] ) && $options['special_facebook_like_options']['verb'] == 'recommend' ) {
1026
  ?>service_options.facebook_like = {verb: 'recommend'};<?php
1027
  }
 
 
 
 
 
 
 
 
 
 
1028
  if ( isset( $_POST['addtoany_pinterest_pin_show_count'] ) && $_POST['addtoany_pinterest_pin_show_count'] == '1'
1029
  || ! isset( $_POST['addtoany_pinterest_pin_show_count'] )
1030
  && isset( $options['special_pinterest_pin_options'] ) && $options['special_pinterest_pin_options']['show_count'] == '1' ) {
addtoany.services.php CHANGED
@@ -47,11 +47,6 @@ $A2A_SHARE_SAVE_services = array(
47
  "icon" => "whatsapp",
48
  "color" => "12AF0A",
49
  ),
50
- "aim" => array(
51
- "name" => "AIM",
52
- "icon" => "aim",
53
- "color" => "00C2FF",
54
- ),
55
  "amazon_wish_list" => array(
56
  "name" => "Amazon Wish List",
57
  "icon" => "amazon",
@@ -102,11 +97,6 @@ $A2A_SHARE_SAVE_services = array(
102
  "icon" => "box",
103
  "color" => "1A74B0",
104
  ),
105
- "buddymarks" => array(
106
- "name" => "BuddyMarks",
107
- "icon" => "buddymarks",
108
- "color" => "96C044",
109
- ),
110
  "buffer" => array(
111
  "name" => "Buffer",
112
  "icon" => "buffer",
@@ -152,11 +142,6 @@ $A2A_SHARE_SAVE_services = array(
152
  "icon" => "digg",
153
  "color" => "2A2A2A",
154
  ),
155
- "dihitt" => array(
156
- "name" => "diHITT",
157
- "icon" => "dihitt",
158
- "color" => "FF6300",
159
- ),
160
  "diigo" => array(
161
  "name" => "Diigo",
162
  "icon" => "diigo",
@@ -237,11 +222,6 @@ $A2A_SHARE_SAVE_services = array(
237
  "icon" => "instapaper",
238
  "color" => "2A2A2A",
239
  ),
240
- "jamespot" => array(
241
- "name" => "Jamespot",
242
- "icon" => "jamespot",
243
- "color" => "FF9E2C",
244
- ),
245
  "kakao" => array(
246
  "name" => "Kakao",
247
  "icon" => "kakao",
@@ -297,26 +277,11 @@ $A2A_SHARE_SAVE_services = array(
297
  "icon" => "myspace",
298
  "color" => "2A2A2A",
299
  ),
300
- "netlog" => array(
301
- "name" => "Netlog",
302
- "icon" => "netlog",
303
- "color" => "2A2A2A",
304
- ),
305
  "netvouz" => array(
306
  "name" => "Netvouz",
307
  "icon" => "netvouz",
308
  "color" => "6C3",
309
  ),
310
- "newsvine" => array(
311
- "name" => "NewsVine",
312
- "icon" => "newsvine",
313
- "color" => "055D00",
314
- ),
315
- "nujij" => array(
316
- "name" => "NUjij",
317
- "icon" => "nujij",
318
- "color" => "D40000",
319
- ),
320
  "odnoklassniki" => array(
321
  "name" => "Odnoklassniki",
322
  "icon" => "odnoklassniki",
@@ -397,11 +362,6 @@ $A2A_SHARE_SAVE_services = array(
397
  "icon" => "renren",
398
  "color" => "005EAC",
399
  ),
400
- "segnalo" => array(
401
- "name" => "Segnalo",
402
- "icon" => "segnalo",
403
- "color" => "FF6500",
404
- ),
405
  "sina_weibo" => array(
406
  "name" => "Sina Weibo",
407
  "icon" => "sina_weibo",
@@ -437,11 +397,6 @@ $A2A_SHARE_SAVE_services = array(
437
  "icon" => "stumbleupon",
438
  "color" => "EF4E23",
439
  ),
440
- "stumpedia" => array(
441
- "name" => "Stumpedia",
442
- "icon" => "stumpedia",
443
- "color" => "FFC808",
444
- ),
445
  "svejo" => array(
446
  "name" => "Svejo",
447
  "icon" => "svejo",
@@ -542,11 +497,6 @@ $A2A_SHARE_SAVE_services = array(
542
  "icon" => "yoolink",
543
  "color" => "A2C538",
544
  ),
545
- "youmob" => array(
546
- "name" => "YouMob",
547
- "icon" => "youmob",
548
- "color" => "3B599D",
549
- ),
550
  "yummly" => array(
551
  "name" => "Yummly",
552
  "icon" => "yummly",
47
  "icon" => "whatsapp",
48
  "color" => "12AF0A",
49
  ),
 
 
 
 
 
50
  "amazon_wish_list" => array(
51
  "name" => "Amazon Wish List",
52
  "icon" => "amazon",
97
  "icon" => "box",
98
  "color" => "1A74B0",
99
  ),
 
 
 
 
 
100
  "buffer" => array(
101
  "name" => "Buffer",
102
  "icon" => "buffer",
142
  "icon" => "digg",
143
  "color" => "2A2A2A",
144
  ),
 
 
 
 
 
145
  "diigo" => array(
146
  "name" => "Diigo",
147
  "icon" => "diigo",
222
  "icon" => "instapaper",
223
  "color" => "2A2A2A",
224
  ),
 
 
 
 
 
225
  "kakao" => array(
226
  "name" => "Kakao",
227
  "icon" => "kakao",
277
  "icon" => "myspace",
278
  "color" => "2A2A2A",
279
  ),
 
 
 
 
 
280
  "netvouz" => array(
281
  "name" => "Netvouz",
282
  "icon" => "netvouz",
283
  "color" => "6C3",
284
  ),
 
 
 
 
 
 
 
 
 
 
285
  "odnoklassniki" => array(
286
  "name" => "Odnoklassniki",
287
  "icon" => "odnoklassniki",
362
  "icon" => "renren",
363
  "color" => "005EAC",
364
  ),
 
 
 
 
 
365
  "sina_weibo" => array(
366
  "name" => "Sina Weibo",
367
  "icon" => "sina_weibo",
397
  "icon" => "stumbleupon",
398
  "color" => "EF4E23",
399
  ),
 
 
 
 
 
400
  "svejo" => array(
401
  "name" => "Svejo",
402
  "icon" => "svejo",
497
  "icon" => "yoolink",
498
  "color" => "A2C538",
499
  ),
 
 
 
 
 
500
  "yummly" => array(
501
  "name" => "Yummly",
502
  "icon" => "yummly",
addtoany.widgets.php CHANGED
@@ -40,9 +40,6 @@ class A2A_SHARE_SAVE_Widget extends WP_Widget {
40
  * @param array $instance
41
  */
42
  public function widget( $args = array(), $instance ) {
43
-
44
- global $A2A_SHARE_SAVE_plugin_url_path;
45
-
46
  $defaults = array(
47
  'before_widget' => '',
48
  'after_widget' => '',
@@ -130,8 +127,6 @@ class A2A_Follow_Widget extends WP_Widget {
130
  * @param array $instance
131
  */
132
  public function widget( $args = array(), $instance ) {
133
- global $A2A_SHARE_SAVE_plugin_url_path;
134
-
135
  $defaults = array(
136
  'before_widget' => '',
137
  'after_widget' => '',
40
  * @param array $instance
41
  */
42
  public function widget( $args = array(), $instance ) {
 
 
 
43
  $defaults = array(
44
  'before_widget' => '',
45
  'after_widget' => '',
127
  * @param array $instance
128
  */
129
  public function widget( $args = array(), $instance ) {
 
 
130
  $defaults = array(
131
  'before_widget' => '',
132
  'after_widget' => '',
icons/aim.svg DELETED
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M16.75 16.376l-.707 1.645c2.756 1.877 5.48 3.756 7.615 6.457l-2.11 1.43c-.708-.768-1.364-1.59-2.132-2.29-1.047-.958-2.156-1.85-3.557-2.285-.586-.183-.98-.086-1.39.41-1.528 1.86-3.26 3.49-5.477 4.52-1.368.64-1.368.644-1.972-.693-.177-.39-.345-.783-.54-1.224 1.828-.433 3.38-1.246 4.62-2.62.74-.822 1.167-1.716 1.26-2.857.17-2.103.63-4.15 1.83-5.95.533-.797 1.767-.98 2.492-.37.062.046.11.126.13.2.48 1.81 2.08 2.005 3.58 1.63.573-.146 1.118-.404 1.73-.63l1.07 1.483c-1.903 1.72-4.075 1.733-6.444 1.147zm.335-11.054c1.78.02 3.254 1.57 3.22 3.386-.032 1.734-1.62 3.284-3.326 3.246-1.826-.04-3.33-1.604-3.288-3.418.04-1.8 1.555-3.236 3.39-3.214z" fill="#FFF"/></svg>
 
icons/buddymarks.svg DELETED
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><g fill="#FFF"><circle cx="19.587" cy="7.172" r="4.209"/><path d="M21.374 11.668h-3.572c-.085 0-.168.01-.253.013.32.68.51 1.438.51 2.237a5.19 5.19 0 0 1-1.61 3.756 6.416 6.416 0 0 1 4.485 5.08c3.414-.15 5.382-1.114 5.513-1.18l.282-.145h.03V17.06c0-2.97-2.418-5.39-5.39-5.39z"/><circle cx="12.413" cy="13.44" r="4.209"/><path d="M14.198 17.937h-3.57a5.394 5.394 0 0 0-5.39 5.388v4.37l.01.067.303.095c2.84.885 5.3 1.18 7.33 1.18 3.96 0 6.258-1.13 6.4-1.2l.28-.142h.028v-4.37a5.394 5.394 0 0 0-5.388-5.388z"/></g></svg>
 
icons/dihitt.svg DELETED
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path fill="#FFF" d="M23.668 26.125H19.01l.014-2.145h-.09c-.88 1.558-2.582 2.47-4.345 2.47-3.795 0-6.26-3.643-6.26-8.522 0-5.608 3.054-8.665 6.49-8.665 1.763 0 3.026.705 3.583 1.705h.09V5.552h5.17m-5.17 10.79c0-2.29-1.353-2.966-2.232-2.966-1.88 0-2.73 2.055-2.73 4.552 0 2.852 1.114 4.35 2.7 4.35.97 0 2.263-.618 2.263-2.88v-3.055z"/></svg>
 
icons/jamespot.svg DELETED
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path fill="#FFF" d="M12.427 24.073c.677.4 1.633.708 2.927.708 1.848 0 2.587-.83 2.587-2.71V5h2.438v17.13c0 2.745-1.478 4.87-5.176 4.87-1.663 0-2.99-.4-3.572-.678l.8-2.25z"/></svg>
 
icons/netlog.svg DELETED
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path fill="#FFF" d="M16 5.724c-6.33 0-11.46 5.13-11.46 11.46 0 3.71 1.773 7 4.51 9.093 1.658-2.12 4.19-3.48 7.03-3.48 2.807 0 5.314 1.324 6.975 3.404a11.416 11.416 0 0 0 4.404-9.014c0-6.33-5.13-11.46-11.46-11.46zm0 14.327a4.048 4.048 0 0 1-4.05-4.05c0-2.233 1.813-4.05 4.05-4.05s4.05 1.816 4.05 4.05c0 2.24-1.813 4.05-4.05 4.05z"/></svg>
 
icons/newsvine.svg DELETED
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path fill="#FFF" d="M16.828 19.498l2.875-2.084a1.692 1.692 0 0 0 2.599-1.436 1.7 1.7 0 1 0-3.385.21l-2.095 1.516v-4.73l2.896-2.1a1.697 1.697 0 0 0 2.581-1.45 1.7 1.7 0 1 0-3.398 0c0 .08.006.16.018.235l-2.097 1.52V4h-1.656v3.79l-2.11-1.528c.02-.102.032-.205.032-.313 0-.94-.766-1.7-1.7-1.7-.94 0-1.7.76-1.7 1.7 0 .934.76 1.7 1.7 1.7.294 0 .57-.08.813-.21l2.962 2.14v4.73l-2.105-1.52c.017-.094.028-.19.028-.286a1.701 1.701 0 0 0-3.4 0 1.7 1.7 0 0 0 2.54 1.476l2.938 2.13v5.044L13.07 19.63a1.7 1.7 0 0 0-1.677-1.98c-.938 0-1.697.762-1.697 1.7a1.698 1.698 0 0 0 2.543 1.474l2.933 2.124V28h1.655v-1.665l2.87-2.077a1.699 1.699 0 1 0-.791-1.432c0 .067.003.134.01.2l-2.09 1.517v-5.045z"/></svg>
 
icons/nujij.svg DELETED
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M8.223 4h4v4h-4zm0 6.223h4V28h-4zM19.777 4h4v4h-4zm0 6.223h4V28h-4zM14 4h4v4h-4zm0 6.223h4v11.11h-4z" fill="#FFF"/></svg>
 
icons/segnalo.svg DELETED
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M16.65 11.186c-3.252-1.153-6.64-.972-9.263 1.434-2.76 2.53-3.165 7.208-1.02 10.172 1.948 2.695 6.138 3.82 9.284 3.58.79-.062 5.127-1.776 4.16-2.845-.172-.192-.41-.29-.452-.31a.839.839 0 0 0-.136-.038 5.2 5.2 0 0 0-.52-.078c-1.88-.21-3.746.424-5.64-.325-.826-.328-1.675-.668-2.208-1.41-.375-.524-1.086-2.715.16-2.31l7.453 2.404c1.705.55 2.792.626 3.288-1.404.978-3.978-1.35-7.545-5.1-8.875zm-.09 6.423c-.93.044-3.202-.94-3.617-1.078-1.11-.358-2.117-.922-.537-2.053 1.9-1.36 4.214.537 4.51 2.45.038.26-.1.664-.357.677zm4.77-10.64c-1.732.554-3.154 1.85-4.18 3.315-.01.012-.006.018-.012.03-.006.01-.018.02-.02.03-.664 2.168 4.32.844 5.263.54.75-.242 4.84-1.912 4.61-3.078-.36-1.837-4.383-1.247-5.66-.84zm-4.032 2.373C17.42 8.2 17.02 7.21 16.12 6.488c-.645-.518-2.716-1.49-3.358-.383-.317.55.01 1.31.195 1.862a4.572 4.572 0 0 0 1.137 1.835c.764.747 2.385.972 3.01.01.142-.218.186-.44.19-.448 0-.008.004-.013.004-.02z" fill="#FFF"/></svg>
 
icons/stumpedia.svg DELETED
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><g fill="#FFF"><path d="M19.1 6.875s-.13.717-.293.912c-.163.197-.62.166-1.045 0-.427-.162-.85-.195-1.274-.03-.426.162-.785.134-.718-.357.064-.492.326-.983.686-1.016.36-.03 1.11-.163 1.207-.36.1-.194-.07-.456-.23-.718-.16-.26-.455-.652-.585-.555-.13.1-.49-.13-.62.266s-.85 1.403-1.372 1.958c-.523.558-1.21 1.603-.85 2.254.36.654.947.688 1.732.688h1.165s.273.23.238.523c-.03.292.267 2.71.267 3.526s-.033.85.195.85h.39s-.16.652-.652 2.284c-.488 1.633-.88 2.875-1.143 3.202-.26.325-.424.587-.424 1.01 0 .427-.13 1.08-.325 1.44-.196.358-.262.88-.523 1.144-.26.262-.26.328-.356.72-.1.392-.527.882-.656 1.075-.127.2-1.817 1.488-1.915 1.85-.1.358 1.576.53 2.31.44.88-.11 1.134-.01 1.387-.436.274-.46.877-1.508 1.193-2.307.18-.457-.1-.816.294-1.34.39-.522 1.01-1.403 1.434-1.895.425-.49.425-1.075.784-1.796.36-.716.785-1.565 1.11-1.5.327.065.75.456 1.34 1.076.588.62.523.946.62 1.533.1.588.228 1.34.523 1.863.295.524.458 1.014.52 1.47.068.458-.096.88 0 1.405.1.52.56.947.82 1.37.26.425 1.273.394 2.122.425.85.035 1.635.167 1.404-.226-.23-.393-1.044-.917-1.274-1.046-.23-.132-.36-.132-.554-.818-.197-.685-.85-3.722-1.047-4.8-.195-1.078-.65-2.385-1.046-3.104-.39-.716-1.6-2.872-1.6-2.872l-.1-.293h.392s-.163-.69-.262-.85c-.098-.165-.49-1.44-.556-2.09-.065-.655-.197-1.08.13-1.046.326.03 1.567 0 2.32-.197.75-.195.685-.262.716-.88.033-.622 0-1.798-.03-2.58-.034-.784-.296-1.015-.49-1.11-.195-.1-.817.13-.914.326-.1.193-.49.488-.13.75.358.26.424.393.62.457.196.066.196.196.196.36 0 .163.13.913-.196 1.044-.323.134-1.273.036-1.663-.062-.395-.097-1.177-.815-1.503-.782-.325.032-.62-.295-.653-.72-.03-.425.59-.162.686-.815.1-.65.59-2.102-.814-2.45-.785-.19-1.374.426-1.57 1.373-.15.698-.003 1.007.586 1.465z"/><path d="M15.687 6.736c-.183.46-1.135 2.4-1.135 2.4s-1.28-.712-3.423-.712c-1.88 0-3.005.924-3.328 1.962-.176.562-.552 2.19 1.475 3.18 1.415.69 3.286 1.465 4.752 2.45 1.905 1.276 2.81 3.327 2.453 5.87-.41 2.92-2.443 5.56-5.472 5.822-2.402.208-6-.536-6.91-1.314.276-.816.56-1.975.78-2.634 1.006.493 2.72.936 4.185 1.11 2.756.326 4.15-.908 4.552-2.44.284-1.087.332-2.204-.12-3.013-1.093-1.96-3.375-2.244-5.392-3.24-3.016-1.492-3.69-3.54-3.308-5.774.44-2.546 1.92-3.803 4.183-4.356 2.128-.52 4.59-.305 6.703.69z"/></g></svg>
 
icons/youmob.svg DELETED
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M8.52 19.736L5.94 9.468l-.022-.095H3.875v12.97H5.34V14.71c0-.3-.01-.77-.023-1.41l-.013-.78 2.453 9.728.023.095h1.457l2.452-9.823-.015.9c-.008.6-.01 1.03-.01 1.29v7.633h1.463V9.373H11.1L8.52 19.736zm8.995-7.186c-1.02 0-1.84.486-2.44 1.442-.59.94-.89 2.216-.89 3.787 0 1.465.284 2.66.845 3.54.572.892 1.356 1.35 2.333 1.35 1.164 0 2.035-.517 2.59-1.528.54-.988.815-2.255.815-3.764 0-1.564-.314-2.77-.933-3.588-.628-.824-1.41-1.242-2.32-1.242zm-.046 8.528c-.64 0-1.098-.3-1.395-.913-.306-.64-.46-1.452-.46-2.41 0-1.003.155-1.872.462-2.582.296-.682.755-1.013 1.402-1.013.73 0 1.232.392 1.537 1.198.197.525.297 1.22.297 2.065 0 .935-.14 1.798-.413 2.566-.264.73-.733 1.085-1.434 1.085zm9.833-7.256c-.554-.827-1.288-1.246-2.183-1.246a2.15 2.15 0 0 0-1.21.37c-.262.176-.5.41-.71.698V9.33h-1.37v13.012h1.31v-.854c.167.26.324.46.477.603.383.365.856.55 1.41.55.977 0 1.75-.513 2.294-1.52.535-.98.806-2.23.806-3.715 0-1.564-.277-2.768-.82-3.58zm-.612 3.658c0 1.074-.15 1.948-.45 2.597-.292.627-.714.932-1.287.932-.774 0-1.29-.476-1.58-1.447-.158-.533-.24-1.234-.24-2.085 0-1.174.192-2.02.57-2.52.373-.498.792-.74 1.282-.74.553 0 .964.29 1.256.89.3.62.45 1.417.45 2.37z" fill="#FFF"/></svg>
Â