Reputation: 282
I have enable multi currency switcher on my magento store. Currency changes everywhere when i switch except for the new products slider. how can i fix this?
Upvotes: 3
Views: 974
Reputation: 105
Add a cache block, in xml layout (cms.xml or page.xml) page where new product blongs.
<block type="catalog/product_new" name="newproducts" products_count="20" template="catalog/product/new.phtml">
<action method="setCacheLifetime"><s>0</s></action> // add this line
Upvotes: 3
Reputation: 182
To fix this behaviour you need to disable caching for this particular block. It can be done by adding cache_lifetime=”1″ parameter to our shortcode.
{{block type="catalog/product_new" template="catalog/product/new.phtml" cache_lifetime="1"}}
I found it here - http://nwdthemes.com/2014/10/16/magento-new-products-block-change-currency/
Upvotes: 3