Google Page Speed
Google Page Speed
Google Page Speed
RESOLVED! See that Sucuri plugin? The DNS for my site points to a Sucuri server which does caching. I logged into the Sucuri site and added an exclusion for the WordPress password protected page to the caching setup using the UI. Now the new password works and the page behaves as expected. No cache busting … Read more
Site speed slows when user logged in
Find the specific AJAX call URL and prevent that being cached with the WP-Rocket advanced rules settings. https://docs.wp-rocket.me/article/54-exclude-pages-from-the-cache. As per your comment, you need a strategy for not having the nonce in a file that can be cached such as javascript files, so as you said, use PHP to generate the nonce and pass it … Read more
How do I disable cache for a certain page?
Pictures randomly replaced by blue question mark
Is there a way to cache mailchimp css on wordpress?
Try changing the version number on .css and .js files when you change them. That can be a real pain while you are developing so you can use a random number. $randomizr = $rand = rand( 1, 99999999999 );// Enqueue scripts and styles wp_enqueue_script( ‘my-script’, get_stylesheet_directory_uri() . ‘/assets/js/my-script.js’, array(‘jquery’), $randomizr, true );
Caching content with query string parameters Varnish hashes the URL and uses this value as its cache key. When a single value in the URL changes, the cache key changes. This would result in a cache miss. Query string parameters are exceptionally prone to this: omitting a parameter, adding a parameter, or changing the order … Read more
In WordPress the current theme and parent theme are stored in the database, as the template (parent theme) and stylesheet (child theme) options in wp_options. These are set when you activate a theme based on the activated theme’s directory name, and the Template: header of the theme’s style.css, if it exists. These options are what’s … Read more