In Magento, I can disable cache for static block by add cache_lifetime="null".

{{block type="core/template" cache_lifetime="null" title="BEST SELER!!!" sku="ASS030530010" template="catalog/product/menuproduct.phtml"}}

How can I disable cache for static block on Magento 2?

有帮助吗?

解决方案

You can use this

{{block type="core/template" cacheable="false" title="BEST SELER!!!" sku="ASS030530010" template="catalog/product/menuproduct.phtml"}}

Hope this will help you!

许可以下: CC-BY-SA归因
scroll top