WordPress Social Tools, Related Posts, Monetization – Shareaholic - Version 8.5.1

Version Description

  • Various performance updates and bug fixes
Download this release

Release Info

Developer shareaholic
Plugin Icon 128x128 WordPress Social Tools, Related Posts, Monetization – Shareaholic
Version 8.5.1
Comparing to
See all releases

Code changes from version 8.5.0 to 8.5.1

Files changed (3) hide show
  1. admin.php +3 -3
  2. readme.txt +10 -1
  3. shareaholic.php +3 -3
admin.php CHANGED
@@ -614,9 +614,9 @@ JQUERY;
614
 
615
  public static function admin_notices() {
616
  global $pagenow;
617
- if ($pagenow == 'options-permalink.php') {
618
- $css_class = 'error';
619
- $message = 'WARNING: Updating your permalink structure will reset the social share counts for your pages. <a href="https://shareaholic.com/plans">Upgrade to Shareaholic Premium</a> to enable <a href="https://support.shareaholic.com/hc/en-us/articles/115002083586">Share Count Recovery</a>.';
620
  echo "<div class='$css_class'><p style='font-weight: bold;'>";
621
  _e($message, 'Shareaholic');
622
  echo '</p></div>';
614
 
615
  public static function admin_notices() {
616
  global $pagenow;
617
+ if ($pagenow == 'options-permalink.php' || $pagenow == 'options-general.php') {
618
+ $css_class = 'notice notice-warning is-dismissible';
619
+ $message = 'WARNING: Updating your URL or permalink structure will reset the social share counts for your pages. <a href="https://shareaholic.com/plans">Upgrade to Shareaholic Premium</a> to enable <a href="https://support.shareaholic.com/hc/en-us/articles/115002083586">Share Count Recovery</a>.';
620
  echo "<div class='$css_class'><p style='font-weight: bold;'>";
621
  _e($message, 'Shareaholic');
622
  echo '</p></div>';
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: shareaholic
3
  Tags: share buttons, related content, cookie compliance, eu cookie law, shareaholic, shareholic, sexybookmarks, recommendations, cookie consent, email button, social sharing, social bookmarking, share image, image sharing, follow buttons, floated share buttons, floating share buttons, analytics, social media, social plugin, facebook, twitter, google plus, google bookmarks, gmail, linkedin, pinterest, reddit, tumblr, evernote, digg, delicious, stumbleupon, printfriendly, fancy, amazon, xing, vk, yahoo, mister wong, viadeo, odnoklassniki box.net, diigo, yammer, ycombinator, hotmail, instapaper, mixi, arto, whatsapp, hootsuite, inbound.org, plurk, aim, buffer, meneame, pinboard.in, stumpedia, bitly, blogger, yummly, izeby, kaboodle, weibo, instagram, tinyurl, typepad, weheartit, flipboard, pocket, wanelo, fark, wykop, symphony, kindle, houzz, youtube, sms, onenote, google classroom, disqus, spotify, zillow, feedly, kik, line, livejournal, baidu
4
  Requires at least: 3.0
5
  Tested up to: 4.8
6
- Stable tag: 8.5.0
7
 
8
  World's leading all-in-one Content Amplification Platform that helps grow your site traffic, engagement, conversions & monetization for FREE.
9
 
@@ -195,6 +195,11 @@ Please see here: [Shareaholic Helpdesk](http://support.shareaholic.com/hc/en-us)
195
  Please see here: [Usage & Installation Instructions](http://support.shareaholic.com/hc/en-us/categories/200101476-WordPress-Plugin)
196
 
197
  == Changelog ==
 
 
 
 
 
198
  = 8.5.0 (2017-10-02) =
199
  * Enhancement: **[Social Share Count Recovery](https://blog.shareaholic.com/recover-social-share-counts-https/)** - adds support to recover social share counts in case where permalink structure changes
200
  * Various performance updates
@@ -663,6 +668,10 @@ Please see here: [Usage & Installation Instructions](http://support.shareaholic.
663
  * Show Related Posts data status
664
 
665
  == Upgrade Notice ==
 
 
 
 
666
  = 8.5.0 =
667
  Various enhancements and Social Share Count Recovery in cases where permalink structure changes
668
 
3
  Tags: share buttons, related content, cookie compliance, eu cookie law, shareaholic, shareholic, sexybookmarks, recommendations, cookie consent, email button, social sharing, social bookmarking, share image, image sharing, follow buttons, floated share buttons, floating share buttons, analytics, social media, social plugin, facebook, twitter, google plus, google bookmarks, gmail, linkedin, pinterest, reddit, tumblr, evernote, digg, delicious, stumbleupon, printfriendly, fancy, amazon, xing, vk, yahoo, mister wong, viadeo, odnoklassniki box.net, diigo, yammer, ycombinator, hotmail, instapaper, mixi, arto, whatsapp, hootsuite, inbound.org, plurk, aim, buffer, meneame, pinboard.in, stumpedia, bitly, blogger, yummly, izeby, kaboodle, weibo, instagram, tinyurl, typepad, weheartit, flipboard, pocket, wanelo, fark, wykop, symphony, kindle, houzz, youtube, sms, onenote, google classroom, disqus, spotify, zillow, feedly, kik, line, livejournal, baidu
4
  Requires at least: 3.0
5
  Tested up to: 4.8
6
+ Stable tag: 8.5.1
7
 
8
  World's leading all-in-one Content Amplification Platform that helps grow your site traffic, engagement, conversions & monetization for FREE.
9
 
195
  Please see here: [Usage & Installation Instructions](http://support.shareaholic.com/hc/en-us/categories/200101476-WordPress-Plugin)
196
 
197
  == Changelog ==
198
+ = 8.5.1 (2017-10-23) =
199
+ * Bugfix: Fixed misalignment issue with Floated Share Buttons
200
+ * Bugfix: Fixed issue with single page apps (JavaScript rendered pages) not updating share count on page change
201
+ * Various performance updates and bug fixes
202
+
203
  = 8.5.0 (2017-10-02) =
204
  * Enhancement: **[Social Share Count Recovery](https://blog.shareaholic.com/recover-social-share-counts-https/)** - adds support to recover social share counts in case where permalink structure changes
205
  * Various performance updates
668
  * Show Related Posts data status
669
 
670
  == Upgrade Notice ==
671
+
672
+ = 8.5.1 =
673
+ * Various performance updates and bug fixes
674
+
675
  = 8.5.0 =
676
  Various enhancements and Social Share Count Recovery in cases where permalink structure changes
677
 
shareaholic.php CHANGED
@@ -3,14 +3,14 @@
3
  * The main file!
4
  *
5
  * @package shareaholic
6
- * @version 8.5.0
7
  */
8
 
9
  /*
10
  Plugin Name: Shareaholic | share buttons, analytics, related content
11
  Plugin URI: https://shareaholic.com/publishers/
12
  Description: The world's leading all-in-one Content Amplification Platform that helps grow your website traffic, engagement, conversions & monetization. See <a href="admin.php?page=shareaholic-settings">configuration panel</a> for more settings.
13
- Version: 8.5.0
14
  Author: Shareaholic
15
  Author URI: https://shareaholic.com
16
  Text Domain: shareaholic
@@ -63,7 +63,7 @@ if (!class_exists('Shareaholic')) {
63
  const CM_API_URL = 'https://cm-web.shareaholic.com'; // uses static IPs for firewall whitelisting
64
  const REC_API_URL = 'http://recommendations.shareaholic.com';
65
 
66
- const VERSION = '8.5.0';
67
 
68
  /**
69
  * Starts off as false so that ::get_instance() returns
3
  * The main file!
4
  *
5
  * @package shareaholic
6
+ * @version 8.5.1
7
  */
8
 
9
  /*
10
  Plugin Name: Shareaholic | share buttons, analytics, related content
11
  Plugin URI: https://shareaholic.com/publishers/
12
  Description: The world's leading all-in-one Content Amplification Platform that helps grow your website traffic, engagement, conversions & monetization. See <a href="admin.php?page=shareaholic-settings">configuration panel</a> for more settings.
13
+ Version: 8.5.1
14
  Author: Shareaholic
15
  Author URI: https://shareaholic.com
16
  Text Domain: shareaholic
63
  const CM_API_URL = 'https://cm-web.shareaholic.com'; // uses static IPs for firewall whitelisting
64
  const REC_API_URL = 'http://recommendations.shareaholic.com';
65
 
66
+ const VERSION = '8.5.1';
67
 
68
  /**
69
  * Starts off as false so that ::get_instance() returns