I was following this answer,
https://[stackoverflow.com/questions/12936608/magento-howto-overwrite-one-template-file][1]
The file I’m trying to overwrite is,
app/design/frontend/base/default/template/customer/form/register.phtml
I copied that file to
app/design/frontend/mycompany/default/template/customer/form/register.phtml
I set,
System -> Configuration -> Design -> Package = mycompany
I flushed the buffer and refreshed and so forth, but
app/design/frontend/base/default/template/customer/form/register.phtml
is still being used. According to the answers, this is supposed to overwrite the base template, but it doesn’t. What do I need to do to make the Magento used the new register.phtml?
2
Answers
I was able to make this work by modifying local.xml from,
To the following,
and I copied app/design/frontend/base/default/template/customer/form/register.phtml to app/design/frontend/base/default/template/mycompany/form/register.phtml.
Firstly you will have to check which package and theme is using in frontend and then copied the file from
app/design/frontend/base/default/template/customer/form/register.phtml to the path
app/design/frontend/mycompany/default/template/customer/form/register.phtml
(which package is using on frontend. )