Guest Posted December 16, 2005 Posted December 16, 2005 IF somebody has something in their cart... how can i get rid of the "your account has been created..." page and take them directly to the checkout_shipping page?
♥yesudo Posted December 16, 2005 Posted December 16, 2005 Put the code to check the cart in the top of create_account_success.php. You can then redirect the customer if the cart has anything in it - if cart empty then the create_account_success.php page continues to load. Your online success is Paramount.
Guest Posted December 16, 2005 Posted December 16, 2005 how can i check if they have anything in their cart?
♥yesudo Posted December 16, 2005 Posted December 16, 2005 Try: if ($cart->count_contents() > 0) { tep_redirect(tep_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL')); } Your online success is Paramount.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.