Bertie
Bertie

Reputation: 165

How to customize magento onepage checkout form

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

Answers (3)

Mononootje
Mononootje

Reputation: 43

Oh and don't forget app\design\frontend\base\default\template\customer\address\edit.phtml

Upvotes: 1

Jon Poulter
Jon Poulter

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

Vedran Subotić
Vedran Subotić

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

Related Questions