How to set up a magento onepage order form

I am using Magento 1.5.1.0, and I want to configure the address block in one page layout. I want to remove the “fax” input field and put the “region” drop-down list below the “country drop-down list”. Where is this form defined?

Regards, Bertie

+8
checkout magento
source share
4 answers

Go to the themes folder. The default file is located at:

app\design\frontend\base\default\template\checkout\onepage\shipping.phtml 
+15
source share

You may need to modify several files:

As mentioned above:

 app\design\frontend\base\default\template\checkout\onepage\shipping.phtml 

but also...

 app\design\frontend\base\default\template\checkout\onepage\billing.phtml 

and...

 app\design\frontend\base\default\template\persistent\checkout\onepage\billing.phtml 

TA-dah!

+11
source share

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

+1
source share

I found this extension useful: One Step Checkout for Magento 1 . This helps you customize your order. Specify:

  • Theme, color of text and buttons;
  • Custom font;
  • Thumbnail size.
0
source share

All Articles