嗨,我在 Magento 1.7 中有 AffiliantePlus 模块。我想覆盖 register.phtml 块。
在affiliate plus /app/design/frontend/mytheme/default/layout/affiliateplus.xml 关于注册
<affiliateplus_account_register>
<update handle="affiliateplus_default" />
<reference name="content">
<block type="affiliateplus/account_edit" name="affiliateplus_register" template="affiliateplus/account/register.phtml" />
</reference>
</affiliateplus_account_register>
<affiliateplus_account_edit>
<update handle="affiliateplus_default" />
<reference name="content">
<block type="affiliateplus/account_edit" name="affiliateplus_register" template="affiliateplus/account/edit.phtml" />
</reference>
</affiliateplus_account_edit>
在 /app/design/frontend/mytheme/defaule/layout/mymodule.xml
<layout varsion="0.1.0">
<affiliateplus_account_register>
<update handle="affiliateplus_default" />
<reference name="content">
<block type="affiliateplus/account_edit" name="affiliateplus_register" template="partner/account/register.phtml"/>
</reference>
</affiliateplus_account_register>
我尝试使用 mymodule/account_edit、mymodule_register
块被覆盖,但我的块显示两次。这是问题,因为我无法更改原始块。