user403008
user403008

Reputation: 1

How do i add some more fields in Magento -> System -> My Account

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 ???

Upvotes: 0

Views: 1319

Answers (2)

Janus Tøndering
Janus Tøndering

Reputation: 924

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)); ?>

Upvotes: 1

Hackbard
Hackbard

Reputation: 450

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

Upvotes: 0

Related Questions