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

Version Description

We update this plugin regularly so we can make it better for you. Update to the latest version for all of the available features and improvements. Thanks for using Shareaholic!

Download this release

Release Info

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

Code changes from version 9.0.1 to 9.1.0

Files changed (3) hide show
  1. public.php +2 -2
  2. readme.txt +5 -2
  3. shareaholic.php +3 -3
public.php CHANGED
@@ -400,11 +400,11 @@ class ShareaholicPublic {
400
  // check individual post prefs
401
  if ( ! get_post_meta( get_the_ID(), "shareaholic_disable_{$app}", true ) ) {
402
  // check if ABOVE location is turned on
403
- if ( isset( $settings[ $app ][ "{$page_type}_above_content" ] ) && $settings[ $app ][ "{$page_type}_above_content" ] == 'on' ) {
404
  $content = self::canvas( null, $app, "{$page_type}_above_content" ) . $content;
405
  }
406
  // check if BELOW location is turned on
407
- if ( isset( $settings[ $app ][ "{$page_type}_below_content" ] ) && $settings[ $app ][ "{$page_type}_below_content" ] == 'on' ) {
408
  $content .= self::canvas( null, $app, "{$page_type}_below_content" );
409
  }
410
  }
400
  // check individual post prefs
401
  if ( ! get_post_meta( get_the_ID(), "shareaholic_disable_{$app}", true ) ) {
402
  // check if ABOVE location is turned on
403
+ if ( isset( $settings[ $app ][ "{$page_type}_above_content" ] ) ) {
404
  $content = self::canvas( null, $app, "{$page_type}_above_content" ) . $content;
405
  }
406
  // check if BELOW location is turned on
407
+ if ( isset( $settings[ $app ][ "{$page_type}_below_content" ] ) ) {
408
  $content .= self::canvas( null, $app, "{$page_type}_below_content" );
409
  }
410
  }
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: social, social sharing, google analytics, pinterest, twitter, share butto
4
  Requires at least: 3.7
5
  Tested up to: 5.3
6
  Requires PHP: 5.3
7
- Stable tag: 9.0.1
8
 
9
 
10
  Boost Audience Engagement with Award Winning Speed Optimized Social Tools: Share Buttons, Related Posts, Monetization & Google Analytics.
@@ -310,6 +310,9 @@ The default Shareaholic thumbnail width is 640px with dynamic height and no crop
310
  Each time you change Shareaholic's thumbnail dimensions like this, you will probably want to have WordPress regenerate appropriate sized thumbnails for all of your images. We highly recommend the [Regenerate Thumbnails](https://wordpress.org/plugins/regenerate-thumbnails/) plugin for this purpose.
311
 
312
  == Changelog ==
 
 
 
313
  = 9.0.1 (2020-02-20) =
314
  * Enhancement: Sync In-Page block app status between Plugin ↔ Shareaholic Cloud
315
  * Enhancement: Removed additional duplicate options from legacy dashboard
@@ -1033,7 +1036,7 @@ Each time you change Shareaholic's thumbnail dimensions like this, you will prob
1033
  * Show Related Posts data status
1034
 
1035
  == Upgrade Notice ==
1036
- = 9.0.1 =
1037
  We update this plugin regularly so we can make it better for you. Update to the latest version for all of the available features and improvements. Thanks for using Shareaholic!
1038
 
1039
  = 8.12.1 =
4
  Requires at least: 3.7
5
  Tested up to: 5.3
6
  Requires PHP: 5.3
7
+ Stable tag: 9.1.0
8
 
9
 
10
  Boost Audience Engagement with Award Winning Speed Optimized Social Tools: Share Buttons, Related Posts, Monetization & Google Analytics.
310
  Each time you change Shareaholic's thumbnail dimensions like this, you will probably want to have WordPress regenerate appropriate sized thumbnails for all of your images. We highly recommend the [Regenerate Thumbnails](https://wordpress.org/plugins/regenerate-thumbnails/) plugin for this purpose.
311
 
312
  == Changelog ==
313
+ = 9.1.0 (2020-02-21) =
314
+ * Enhancement: The Cloud Dashboard can now 100% adjust all In-Page block status! Your marketing team now has superpowers to make changes to all app settings without developer help.
315
+
316
  = 9.0.1 (2020-02-20) =
317
  * Enhancement: Sync In-Page block app status between Plugin ↔ Shareaholic Cloud
318
  * Enhancement: Removed additional duplicate options from legacy dashboard
1036
  * Show Related Posts data status
1037
 
1038
  == Upgrade Notice ==
1039
+ = 9.1.0 =
1040
  We update this plugin regularly so we can make it better for you. Update to the latest version for all of the available features and improvements. Thanks for using Shareaholic!
1041
 
1042
  = 8.12.1 =
shareaholic.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Shareaholic - Grow and Engage Your Audience
4
  Plugin URI: https://www.shareaholic.com/website-tools/
5
  Description: Shareaholic’s official WordPress plugin allows you to add Award-Winning Social Share Buttons, Related Posts, Content Analytics, Ad Monetization, and more to your website.
6
- Version: 9.0.1
7
  Author: Shareaholic
8
  Author URI: https://www.shareaholic.com
9
  Text Domain: shareaholic
@@ -14,7 +14,7 @@ Domain Path: /languages
14
  * The main file!
15
  *
16
  * @package shareaholic
17
- * @version 9.0.1
18
  */
19
 
20
  /**
@@ -71,7 +71,7 @@ if ( ! class_exists( 'Shareaholic' ) ) {
71
  const API_URL = 'https://web.shareaholic.com'; // uses static IPs for firewall whitelisting
72
  const CM_API_URL = 'https://cm-web.shareaholic.com'; // uses static IPs for firewall whitelisting
73
 
74
- const VERSION = '9.0.1';
75
 
76
  /**
77
  * Starts off as false so that ::get_instance() returns
3
  Plugin Name: Shareaholic - Grow and Engage Your Audience
4
  Plugin URI: https://www.shareaholic.com/website-tools/
5
  Description: Shareaholic’s official WordPress plugin allows you to add Award-Winning Social Share Buttons, Related Posts, Content Analytics, Ad Monetization, and more to your website.
6
+ Version: 9.1.0
7
  Author: Shareaholic
8
  Author URI: https://www.shareaholic.com
9
  Text Domain: shareaholic
14
  * The main file!
15
  *
16
  * @package shareaholic
17
+ * @version 9.1.0
18
  */
19
 
20
  /**
71
  const API_URL = 'https://web.shareaholic.com'; // uses static IPs for firewall whitelisting
72
  const CM_API_URL = 'https://cm-web.shareaholic.com'; // uses static IPs for firewall whitelisting
73
 
74
+ const VERSION = '9.1.0';
75
 
76
  /**
77
  * Starts off as false so that ::get_instance() returns