Plugin Support
qtwrk
(@qtwrk)
unfortunately that is not possible , the cache unit is per page , so you can only cache or no-cache per page basis
based on your description, I’d suggest : do a purge cache when store closes/opens
or use javascript on client-side , to display open or close , this way the server side can maintain its cache
Plugin Support
qtwrk
(@qtwrk)
if that open/close plugin has hook , you can hook it with do_action( 'litespeed_purge_all' );
otherwise you can use system cron to call a standalone file with code like
<?php
require('./wp-load.php');
do_action( 'litespeed_purge_all' );
at your close/open time
I am not sure what do you mean by/with nonce here..?
What I mean is that at some point when I have had problems with other sites you have told me to enter additional code in “ESI Settings”
The site in question is https://qr.soluciones724.com/laventanacevichera/
The plugin used is “Store Opening Closing Hours Manager” https://wordpress.org/plugins/store-opening-closing-hours-manager/
Please can you tell me specifically what I could do?
Thank you in advance.
Plugin Support
qtwrk
(@qtwrk)
this doesn’t seem have anything to do with nonce ?
if you don’t want to use system cron method , then I have no more idea, but I just create topic in that plugin’s forum , see if its dev has any hook for me to use to trigger the cache purge when open/close time is reached