Reputation: 165
i am using Magento 1.5.1.0 and i want to customize the address block in the onepage checkout form. I want to remove the "fax" input field and put the "region" dropdown below the country "dropdown". Where is this form defined?
Kind Regards, Bertie
Upvotes: 8
Views: 39148
Reputation: 43
Oh and don't forget app\design\frontend\base\default\template\customer\address\edit.phtml
Upvotes: 1
Reputation: 111
You might need to change multiple files:
As above:
app\design\frontend\base\default\template\checkout\onepage\shipping.phtml
but also...
app\design\frontend\base\default\template\checkout\onepage\billing.phtml
and also...
app\design\frontend\base\default\template\persistent\checkout\onepage\billing.phtml
Tada!
Upvotes: 11
Reputation: 301
Navigate to your theme folder. The default file is at location:
app\design\frontend\base\default\template\checkout\onepage\shipping.phtml
Upvotes: 15