Cache Checkout Issues

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).

Screenshot of the error

Hi,

Thank you for reaching out to us.

When checking your website yachay.bg I can see the following:

I suggest you request the change of categorisation of your website as the report here suggests:

https://radar.cloudflare.com/domains/feedback/yachay.bg

Please let us know if you still have issues once this is fixed.

This topic was automatically closed after 15 days. New replies are no longer allowed.