Zoya
Zoya

Reputation: 282

Currency switching not happening for new products

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

Answers (2)

Tufail Shaikh
Tufail Shaikh

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

Sergey Korzhov
Sergey Korzhov

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

Related Questions