如何使用自定义模块覆盖minicart phtml文件

时间:2015-06-04 13:17:04

标签: php magento shopping-cart magento-1.9

我试图覆盖minicart phtml文件, 在config.xml->

中使用此代码
<layout>
    <updates>
        <rakesh_webr module="Webr">
            <file>webr.xml</file>
        </rakesh_webr>
    </updates>
</layout>

这在我的布局配置文件(webr.xml) - &gt;

<layout>
     <sales_order_view>
       <reference name="sales.order.view">
          <action method="setTemplate">
             <template>webr/sales/order/view.phtml</template>
          </action>
       </reference>`enter code here`
    </sales_order_view>
    <sales_order_print>
       <reference name="sales.order.print">
          <action method="setTemplate">
             <template>webr/sales/order/print.phtml</template>
          </action>
       </reference>
   </sales_order_print>
</layout>

并且我已将模板放在正确的文件夹中但没有任何工作

1 个答案:

答案 0 :(得分:0)

您可以使用以下代码。

在你的布局中添加xml文件。

在magento root\app\design\frontend\base\default\layout\yourcompany.xml

中添加此内容
<?xml version="1.0"?>   
<layout version="0.1.0">
    <default>
        <reference name="header">
            <block type="checkout/cart_minicart" name="minicart_head" template="checkout/cart/minicart.phtml" before="-">
                <block type="checkout/cart_sidebar" name="minicart_content" template="checkout/cart/minicart/items.phtml">
                    <action method="addItemRender"><type>configurable</type><block>checkout/cart_item_renderer_configurable</block><template>yourcompany/checkout/cart/minicart/default.phtml</template></action>
                    <action method="addItemRender"><type>default</type><block>checkout/cart_item_renderer_configurable</block><template>yourcompany/checkout/cart/minicart/default.phtml</template></action>
                </block>
            </block>
        </reference>
    </default>
</layout>

然后在magento root\app\design\frontend\base\default\template\yourcompany\checkout\cart\minicart\default.phtml

中创建文件
//Write your magic code here