I thought so anyway and adapted the file to skip this step and I thought I'd share it here.
It's hardcoding the payment method though so any upgrades or changes may break this in future.
You need to edit order.php.
Find the code that says:
case 3:
if(Tools::isSubmit('processCarrier'))
processCarrier();
autoStep(3);
checkFreeOrder();
displayPayment();
break;
and change it to :
case 3:
if(Tools::isSubmit('processCarrier'))
processCarrier();
autoStep(3);
checkFreeOrder();
displayPayment();
Tools::redirect('modules/creditcard/payment.php');
break;
Change the "modules/creditcard/payment.php" to be the url of the payment method module that you are using.




Back to top









