Nadja Posted March 2, 2006 Posted March 2, 2006 Hi all, Anybody would know how to disable shipping during the checkout? I have no need for delivery. I tried by enabling download to enable virtual products but that doesn't work for me either. Is there any way to sell "virtual products" which are not downloadable, such as services? Thank you in advance Quote
Guest Posted March 2, 2006 Posted March 2, 2006 go to your catalog\checkout_shipping.php file change this code: // if the order contains only virtual products, forward the customer to the billing page as // a shipping address is not needed if ($order->content_type == 'virtual') { if (!tep_session_is_registered('shipping')) tep_session_register('shipping'); $shipping = false; $sendto = false; tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, '', 'SSL')); } to this and try it // Force virtual products, forward the customer to the billing page as // a shipping address is not needed if (!tep_session_is_registered('shipping')) tep_session_register('shipping'); $shipping = false; $sendto = false; tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, '', 'SSL')); Quote
Nadja Posted March 3, 2006 Author Posted March 3, 2006 go to your catalog\checkout_shipping.php file change this code: // if the order contains only virtual products, forward the customer to the billing page as // a shipping address is not needed if ($order->content_type == 'virtual') { if (!tep_session_is_registered('shipping')) tep_session_register('shipping'); $shipping = false; $sendto = false; tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, '', 'SSL')); } to this and try it // Force virtual products, forward the customer to the billing page as // a shipping address is not needed if (!tep_session_is_registered('shipping')) tep_session_register('shipping'); $shipping = false; $sendto = false; tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, '', 'SSL')); ...Should have looked at your reply earlier, would have save me some time. I did exactly the sane and it does work. Thanks! Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.