Is it possible to redirect the browser to nth step in the onepage checkout? If so, how would one go about doing it?
I\'m working on a payment module and have a sort
I wanted to do the same thing, but couldn't figure out how to make the one page checkout open at the payment step.
In the end, I used jQuery and an ajax call so I could call javascript code after changing the page:
jQuery('body').load(failure, {}, function () {
// set the magento onepage checkout accordion to the payment section
checkout.gotoSection('payment');
});