Harshad
Forum Replies Created
-
@francoc30 These are warnings, there’s nothing to worry about, it will not stop the functionality of your site or WP-Optimize plugin.
However, I’ll report this issue to our development team for further investigation.
- This reply was modified 4 years, 4 months ago by Harshad.
@myilraj05 You can add the search page url to “URLs to exclude from caching” from WP-Optimize > Cache > Advanced settings.
@mrmatteastwood No there are no drawbacks, it will just not merge the JS and CSS files.
@wipx I’ll check this issue with one of our Development team and update you.
@gogetita You’ll have to use the filter outside the hook function call.
add_filter( 'wpo_purge_all_cache_on_update', '__return_true' );So it will purge all the cache whenever you update the post/page or create a new post/page.
@mrmatteastwood Could you please uncheck the option “Enable merging of JS files” and “Enable merging of CSS files” from WP-Optimize > Minify > Javascript and WP-Optimize > Minify > CSS and check if it helps to fix the issue?
@francoc30 Please check this article on how you can improve you site speed which also covers the features in WP-Optimize: https://getwpo.com/how-to-increase-website-speed-with-wp-optimize-plugin/
@francoc30 Yes it will start 12:01 midnight local time
@rgralexandre Sorry at the moment this is not a feature yet.
@rgralexandre Have you performed a conflict test yet?
Try deactivating all plugins except for WP-Optimize and see if it is resolved.
If so, reactivate each plugin one at a time until you find the culprit. You can check for the issue between activating each plugin, so you can see which one is causing problems.
Please let us know your findings.
@francoc30 Yes the minified files will get recreated once deleted and user visits the site.
WP-Optimize by default preloads the minification process every 24 hours, so even if you don’t manually preload the minified files it will get created when user visits the site.
@kengray20 Have you tried to add the snippet to your child themes functions.php file and see if the files get deleted after 3 days?
@mejstro You should find at top right corner in WordPress admin, please check this link for screenshot: https://prnt.sc/URDxoDpz_UIh
@rgralexandre Could you please explain more about the issue, what makes you feel the minification of JS doesn’t work?
@kengray20 Sorry to hear about your issue.
Please use following snippet and add it to your active child themes functions.php file, it will automatically delete the minified files after 3 days
add_filter( 'wp_optimize_minify_cache_expiry_time', function( $original_value ) { return time() - 86400 * 3; } );