Asset CleanUp: Page Speed Booster - Version 1.2.8

Version Description

  • Bug Fix: PHP code change to properly detect the singular pages had the wrong condition set
Download this release

Release Info

Developer gabelivan
Plugin Icon 128x128 Asset CleanUp: Page Speed Booster
Version 1.2.8
Comparing to
See all releases

Code changes from version 1.2.7.9 to 1.2.8

Files changed (3) hide show
  1. classes/Main.php +1 -1
  2. readme.txt +4 -1
  3. wpacu.php +2 -2
classes/Main.php CHANGED
@@ -1334,7 +1334,7 @@ class Main
1334
  */
1335
  public function isSingularPage()
1336
  {
1337
- return $this->isWooCommerceShopPage && is_singular();
1338
  }
1339
 
1340
  /**
1334
  */
1335
  public function isSingularPage()
1336
  {
1337
+ return ($this->isWooCommerceShopPage || is_singular());
1338
  }
1339
 
1340
  /**
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: speed, pagespeed, page speed, cleanup, remove style, remove script, dequeu
4
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=7GJZCW6RD8ECS
5
  Requires at least: 4.0
6
  Tested up to: 4.9.8
7
- Stable tag: 1.2.7.9
8
  License: GPLv3
9
  License URI: http://www.gnu.org/licenses/gpl.html
10
 
@@ -131,6 +131,9 @@ If that's the case, then it's advisable to consult with a developer (ideally the
131
  4. Scripts (.JS) are selected for site-wide unload
132
 
133
  == Changelog ==
 
 
 
134
  = 1.2.7.9 =
135
  * Improved CSS styling for the assets list to avoid conflicts between other CSS rules from other themes and plugins
136
 
4
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=7GJZCW6RD8ECS
5
  Requires at least: 4.0
6
  Tested up to: 4.9.8
7
+ Stable tag: 1.2.8
8
  License: GPLv3
9
  License URI: http://www.gnu.org/licenses/gpl.html
10
 
131
  4. Scripts (.JS) are selected for site-wide unload
132
 
133
  == Changelog ==
134
+ = 1.2.8 =
135
+ * Bug Fix: PHP code change to properly detect the singular pages had the wrong condition set
136
+
137
  = 1.2.7.9 =
138
  * Improved CSS styling for the assets list to avoid conflicts between other CSS rules from other themes and plugins
139
 
wpacu.php CHANGED
@@ -2,13 +2,13 @@
2
  /*
3
  * Plugin Name: Asset CleanUp: Page Speed Booster
4
  * Plugin URI: https://wordpress.org/plugins/wp-asset-clean-up/
5
- * Version: 1.2.7.9
6
  * Description: Prevent Chosen Scripts & Styles from loading in Posts/Pages to reduce HTTP Requests and have the website load faster
7
  * Author: Gabriel Livan
8
  * Author URI: http://www.gabelivan.com/
9
  */
10
 
11
- define('WPACU_PLUGIN_VERSION', '1.2.7.9');
12
 
13
  // Exit if accessed directly
14
  if (! defined('ABSPATH')) {
2
  /*
3
  * Plugin Name: Asset CleanUp: Page Speed Booster
4
  * Plugin URI: https://wordpress.org/plugins/wp-asset-clean-up/
5
+ * Version: 1.2.8
6
  * Description: Prevent Chosen Scripts & Styles from loading in Posts/Pages to reduce HTTP Requests and have the website load faster
7
  * Author: Gabriel Livan
8
  * Author URI: http://www.gabelivan.com/
9
  */
10
 
11
+ define('WPACU_PLUGIN_VERSION', '1.2.8');
12
 
13
  // Exit if accessed directly
14
  if (! defined('ABSPATH')) {