Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Change checkout steps order in Magento checkout

Tags:

magento

I'd like to know if it's possible to change the checkout steps order. By default, the steps are: - Billing address - Shipping address - Delivery methods - Payment method - Order review.

I'd like to put the billing address in third place, so it would be: - Shipping address - Delivery methods - Billing address ...

Is that possible?

Thanks

like image 257
PauGNU Avatar asked May 15 '12 07:05

PauGNU


1 Answers

You can go to:

app/code/core/mage/checkout/block/onepage.php

change the line

$stepCodes = array('billing', 'shipping', 'shipping_method', 'payment', 'review');
like image 116
Le Manh Tu Avatar answered Oct 18 '22 12:10

Le Manh Tu