This doesn't specifically answer your question and I don't know if there is way to disable the cache for one template file.
You can force the templates to be recompiled but it will increase server load. Under load settings set "Recompile stale style components:" to yes.
Optionally you can set your HTML content as template variable in the appropriate php files. If you need it on most pages at the bottom of includes/functions.php you'll find:
If it's just one page each main file like index.php, viewtopic.php etc. will have it's own list at the bottom.
You can force the templates to be recompiled but it will increase server load. Under load settings set "Recompile stale style components:" to yes.
Optionally you can set your HTML content as template variable in the appropriate php files. If you need it on most pages at the bottom of includes/functions.php you'll find:
Code:
// The following assigns all _common_ variables that may be used at any point in a template.$template->assign_vars(array('SITENAME'=> $config['sitename'],
Statistics: Posted by thecoalman — Tue May 14, 2024 10:34 pm