Disable template caching for development in OpenCart 3

后端 未结 8 552
我寻月下人不归
我寻月下人不归 2020-12-02 01:41

I am making changes in my theme templates in OpenCart 3. Due to template caching I have to clear cache every time under \"storage/cache\" directory. It is very annoying when

8条回答
  •  抹茶落季
    2020-12-02 02:12

    Scott's answer is best but in case it's not available due to version or you want to disable it programmatically you can do this anywhere before the twig is rendered:

    $this->config->set('template_cache', false);
    

提交回复
热议问题