views:

133

answers:

2

Hello , I am new to magento and trying to add some more fields there. i am using magento 1.4.1.0 and also trying to so called override methods for block and controller. but i am not able to see the changes. Can anyone help ???

A: 

You have to add the fields in the database, make a migration script and add the thinks you want to the attributes

Illuminat23
A: 

Address fields are already implemented but not activated in the default theme. Have a look at app/design/frontend/base/default/template/customer/form/register.phtml (1.4) or app/design/frontend/default/default/template/customer/form/register.phtml (1.3).

You can enable the address fields by putting this line at the top:

<?php $this->setShowAddressFields(true)); ?>
Janus Tøndering