What is the name of the domain?
yachay.bg
What is the issue you’re encountering
A cached checkout page appears despite purging everything and setting up rules.
What steps have you taken to resolve the issue?
A broken cached version of my website´s checkout page loads intermittently and prevents customer from purchasing… I´ve been dealing with this for a few days and the hosting company can´t even help.
I’ve added bypass rules for the checkout page and purged in every possible way. I deleted the LiteSpeed plugin. I’ve purged the cache from cPanel and disabled Redis there. I even added the following code to functions.php:
"add_filter(‘wp_cache’, function($caching) {
if (is_checkout()) {
return false;
}
return $caching;
});
add_action(‘wp’, function() {
if (is_checkout()) {
header(“Cache-Control: no-store, no-cache, must-revalidate, max-age=0”);
header(“Pragma: no-cache”);
header(“Expires: Wed, 11 Jan 1984 05:00:00 GMT”);
}
});"
However, the issue persists when the A name (yachay.bg) is proxied.
Any suggestions would be greatly appreciated.
What are the steps to reproduce the issue?
The up-to-date checkout page should include a text field to add a note for the shipment and should not contain fields to enter an address (an office locator is present instead).