服务报价 | 域名主机 | 网络营销 | 软件工具| [加入收藏]
 热线电话: #
当前位置: 主页 > php教程 > magento教程 >

Magento把侧栏币种切换放到头部

时间:2016-12-16 10:44来源:未知 作者:最模板 点击:
默认magento货币选择切换是显示在左边,有时候我们需要让其显示在头部。在directory.xml里找到: block type=directory/currency name=currency before=catalog.leftnav template=directory/currency.phtml/ 复制好后,

默认magento货币选择切换是显示在左边,有时候我们需要让其显示在头部。在directory.xml里找到:

<block type="directory/currency" name="currency" before="catalog.leftnav" template="directory/currency.phtml"/>

复制好后,把它贴到page.xml的:<block type=”page/html_header” name=”header” as=”header”>里,并加上as=”currency_top”。

然后在头部适当的位置添加:<?php echo $this->getChildHtml(‘currency_top’)?>

如果不显示,需要设置一些东西:

在 system—>configuration—->general—>currency setup中
1.基础货币 Base currency
2.默认显示货币 Default display currency
3.允许出现的货币 Allowed currencies

在 system—>transactional currency rates
4.汇率设置 System–>manage currency rates

在 system—>cache management—->选refresh,点击保存
5.刷新缓存

(责任编辑:最模板)
顶一下
(0)
0%
踩一下
(0)
0%
------分隔线----------------------------