Harshad
Forum Replies Created
-
@techmuz 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.
@mikehermary 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.
@jennyrigsjo Could you please submit a ticket here: https://getwpo.com/ask-pre-sales-question/
So that we can check the settings on your site.
@dg78 You can use
wpo_pre_cache_bufferhook to alter content to be cachedadd_filter('wpo_pre_cache_buffer', 'function_to_filter'): function function_to_filter($buffer) { // alter the $buffer return $buffer; }You may purge cache on
wp_loginandwp_logoutactionsSince it is header content I think the caches are continuously generated.
If, All you want to do is to serve different version of cached file for logged in users and logged out users, then you can buy our premium version and enable cache per role option
@thetallone I’ll check this with our devlopment team to futher test the function and if there’s an issue with will be fixed in future release.
@malthead 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.
@emilycestmoi 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; } );@ittone 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.
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; } );@marketwo WP-optimize scan the sitemap.xml for urls, so it takes time to preload the urls, at the moment there’s no option to speed up the process.’
Multiple page cannot be loaded at once at the moment.
@jennyrigsjo The purge cache option only appears when there are pages cached.
Make sure you you have enabled cache from WP-Optimize > Cache.
You can purge the minified files from WP-Optimize > Minify, in-order to delete the mifiy files from the server.
Or 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; } );@emilycestmoi Its by design, WP-optimize creates separate files for each page.
You can however, purge the minified files from WP-Optimize > Minify.
@ittone Could you please try to purge minified files from WP-Optimize > Minify and check if you still get 404 errors?
@kumar314 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.