1. On the checkout2.php page, place the {REDIRECT-NEXT-CHECKOUT-PAGE} on any of the checkout HTML templates in order to advance the customer to the next page of the checkout process. This can also be used with conditional QuickCode Tags in order to bypass specific checkout pages if certain conditions are met.
2. Example: This will automatically redirect the customer to checkout3 from checkout1 if their basket does not contain any products that require shipping.
{IF-ORDER-USES-SHIPPING-BEGIN}{ELSE}{REDIRECT-NEXT-CHECKOUT-PAGE}{IF-ORDER-USES-SHIPPING-END}
3. If the customer's basket contained no shippable products, the customer will redirected from checkout1 to checkout3 automatically. Otherwise they would go from checkout1 to checkout2. |