magento disable cache for price block

后端 未结 5 1859
情歌与酒
情歌与酒 2021-01-07 11:04

In my project we are using Magento Enterprise Edition 1.14.1. The prices in store are changed dynamically direct from Database. So the problem is Magento cache every thing (

5条回答
  •  -上瘾入骨i
    2021-01-07 11:44

    You can see this link cache disable follwing method is added in this file Mage/Catalog/Block/Product/Price.php

    protected function _construct()
    {
        $this->addData(
          array('cache_lifetime'    => false,)
        );
    }
    

提交回复
热议问题