Hi I am trying to reoder my onepage checkout. First I am trying this by modifying the core files and when this works, I am overriding them in my files, so I can update them. I can reorder my onepage checkout to the desired form:
'shipping_method','shipping','billing','payment', 'review'
My checkout is now in this desired output, but the shipping method is not loaded. I Modified the files:
Block/onepage.phtml -
$stepCodes = array('shipping_method','shipping','billing','payment', 'review');
opcheckout.js -
this.steps = ['shipping_method','shipping','billing','payment', 'review'];
this.currentStep = 'shipping_method';
What did I do wrong, that the shipping method is not loaded?