Harshad
Forum Replies Created
-
@kumar314 Could you please add the /checkout/ page to exclude cache list in WP-Optimize > Cache > Advanced settings and check if it helps to fix the issue?
@zyzz3031 Can you please enable debugging mode, Please add following lines to wp-config.php just before where it says: /* That’s all, stop editing! Happy publishing. */
define( 'WP_DEBUG', true ); define( 'WP_DEBUG_DISPLAY', false ); define( 'WP_DEBUG_LOG', true );Then try to reload the page.
A debug.log file should be created inside wp-content folder,which should contain error information in it, Please share the file with us.
@pumpaxxl 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.
@pinkivy Could you please try to use it with
initand check if it works?add_action("init", "purge_cache"); function purge_cache() { WP_Optimize()->get_page_cache()->purge(); }@pixello Could you please try to turn on the minify option and uncheck the option enable merging of JS files and enable merging of CSS files from WP-Optimize > Minify > JS and CSS and check if it helps to fix the issue?
@zyzz3031 Could you please try to add the following code to your active child theme’s functions.php file and check if it helps to fix the issue?
add_action('init','purge_cache'); function purge_cache(){ if ( function_exists( ‘WP_Optimize()->get_page_cache()->purge’ ) ) { WP_Optimize()->get_page_cache()->purge(); } }@okvee Thanks for reporting the issue, I’ll share the same with our development team for further investigation and it should get fixed in future release.
@pumpaxxl Please try to add the function to a hook instead.
add_action('init','purge_cache'); function purge_cache(){ if ( function_exists( ‘WP_Optimize()->get_page_cache()->purge’ ) ) { WP_Optimize()->get_page_cache()->purge(); } }Let us know if above code helps to fix the issue?
@pumpaxxl Please make sure you have the permalinks set to other than default one, please try to set the permalinks to /%postname%/ and check if it helps to fix the issue?
@pengi123 Yes if adding cookie works, you can exclude that cookie from WP Optimize
@pixello Could you please try to turn off Minify option and then check the results in Google PageSpeed Insights?
@wtshop Reducing font size is not a feature yet in WP-Optimize.
However, I’ll discuss this with our development team and check if this feature can be implemented in future release.
@pengi123 Could you please try add absolute path instead like this?
/wp-content/plugins/jet-compare-wishlist/assets/js/jet-cw.min.js
@pengi123 Could you please remove
?ver=1.4.3from the file path and check if it works?