|
We just did this, you need to overload it with a module.
You need to create this directory structure:
app/code/local/MyCompany/Customer/etc
(where \"MyCompany\" is what ever you like)
copy the config.xml into app/code/local/MyCompany/Customer/etc and in config.xml change the Mage_Customer block to MyCompany_Customer. e.g.
<config> <modules> <MyCompany_Customer> <version>0.1</version> </MyCompany_Customer> </modules> <global> <customer> blah blah...
Then we created this file to activate the new module:
app/etc/modules/MyCompany_All.xml
with this in it:
<?xml version=\"1.0\"?> <config> <modules> <MyCompany_Customer> <active>true</active> <codePool>local</codePool> <version>0.1.0</version> </MyCompany_Customer> </modules> </config>
note, you only need to include the blocks you change in the new config.xml file.
Cheers,
G&C;
|