新产品没有发生货币转换

时间:2014-10-16 08:33:11

标签: magento

我在magento商店启用了多种货币切换器。除了新产品滑块之外,当我切换时,货币随处可见。我该如何解决这个问题?

2 个答案:

答案 0 :(得分:2)

要解决此问题,您需要禁用此特定块的缓存。可以通过在我们的短代码中添加cache_lifetime =“1”参数来完成。

{{block type="catalog/product_new" template="catalog/product/new.phtml" cache_lifetime="1"}}

我在这里找到了它 - http://nwdthemes.com/2014/10/16/magento-new-products-block-change-currency/

答案 1 :(得分:2)

在xml布局(cms.xml或page.xml)页面中添加一个缓存块,新产品会在这里显示。

<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