Hi I have AffiliantePlus Module in Magento 1.7. I want overwrite register.phtml block.
In affiliate plus /app/design/frontend/mytheme/default/layout/affiliateplus.xml about register
<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>
In /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>
I tryed with mymodule/account_edit, mymodule_register
Block is overwrited but my block is show twice. It's problem because I can't change oryginal block.