0

我正在 magento 中开发一个新的自定义模块。我需要在不影响原始cart.phtml的情况下自定义购物车页面。我的模块名称是 Stallioni。我已将 cart.phtml 放置在 frontend/default/default/template/stallioni/checkout/cart.phtml 中。如何在我的新模块中使用此 cart.phtml 而不是原来的 . 我知道我们应该更改 checkout.XML 或stallioni/layout/stallioni.xml 文件中的某些内容。但不知道,因为我是新手。我用谷歌搜索了一天但找不到。 http://blog.chapagain.com.np/magento-overriding-template-file-from-custom-module/这个链接告诉了一些东西,但它对我不起作用。我需要你的帮助!

4

1 回答 1

0

如果您的 layout.xml 正在工作,请在您的布局中添加此代码

`<checkout_cart_index> 
   <reference name="content">
        <reference name="checkout.cart">
            <action method="setTemplate">               
               <template>default/default/template/stallioni/checkout/cart.phtml</template>
             </action>
        </reference>
    </reference>
</checkout_cart_index>`

它应该工作:)

于 2013-04-27T08:01:40.210 回答