From b1f8b0dff243d4a7ebb768f44c68f4095562b670 Mon Sep 17 00:00:00 2001 From: Paul Kilmurray Date: Mon, 8 May 2023 09:36:50 +0100 Subject: [PATCH] disable Lite Speed Cache for POS page --- includes/Templates/Frontend.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/includes/Templates/Frontend.php b/includes/Templates/Frontend.php index 877529d..a48d593 100644 --- a/includes/Templates/Frontend.php +++ b/includes/Templates/Frontend.php @@ -192,5 +192,9 @@ private function no_cache(): void { if ( ! \defined( 'DONOTCACHEPAGE' ) ) { \define( 'DONOTCACHEPAGE', 'true' ); } + + // disable Lite Speed Cache + do_action( 'litespeed_control_set_nocache', 'nocache WoCommerce POS web application' ); + } }