oops123 Posted October 10, 2007 Share Posted October 10, 2007 I want to go directly to checkout without the options in PWA A solution that actually works would be nice Thanks Quote Link to comment Share on other sites More sharing options...
♥toyicebear Posted October 10, 2007 Share Posted October 10, 2007 The "redirect" to the start checkout page is set in checkout_shipping.php Quote Basics for osC 2.2 Design - Basics for Design V2.3+ - Seo & Sef Url's - Meta Tags for Your osC Shop - Steps to prevent Fraud... - MS3 and Team News... - SEO, Meta Tags, SEF Urls and osCommerce - Commercial Support Inquiries - OSC 2.3+ How To To see what more i can do for you check out my profile [click here] Link to comment Share on other sites More sharing options...
oops123 Posted October 10, 2007 Author Share Posted October 10, 2007 The "redirect" to the start checkout page is set in checkout_shipping.php Thanks for your answer but could you be more spesific Im new to all this coding stuff Quote Link to comment Share on other sites More sharing options...
♥toyicebear Posted October 11, 2007 Share Posted October 11, 2007 In checkout_shipping.php you can set which page the customer is sent to when trying to checkout. Default goes to login.php if (!tep_session_is_registered('customer_id')) { $navigation->set_snapshot(); tep_redirect(tep_href_link(FILENAME_LOGIN, '', 'SSL')); } If you want to skip the login page and go straight to the create account page, you can use this instead: if (!tep_session_is_registered('customer_id')) { $navigation->set_snapshot(); tep_redirect(tep_href_link(FILENAME_CREATE_ACCOUNT, '', 'SSL')); } If you use the latest PWA version and want to go straight to the PWA page, you can use this instead: if (!tep_session_is_registered('customer_id')) { $navigation->set_snapshot(); tep_redirect(tep_href_link(FILENAME_CREATE_ACCOUNT, 'guest=guest', 'SSL')); } Quote Basics for osC 2.2 Design - Basics for Design V2.3+ - Seo & Sef Url's - Meta Tags for Your osC Shop - Steps to prevent Fraud... - MS3 and Team News... - SEO, Meta Tags, SEF Urls and osCommerce - Commercial Support Inquiries - OSC 2.3+ How To To see what more i can do for you check out my profile [click here] Link to comment Share on other sites More sharing options...
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.