rla128 0 Posted April 14, 2005 I installed PWA .82, and it works fine. However, on the page after you click checkout, where it gives you the option to "Proceed Directly to Checkout" is it possible to remove the two fields above that completely? Share this post Link to post Share on other sites
jeffers 0 Posted April 16, 2005 Yes it is possible...I believe if you check the contribution Purchase without account there is a updated file that allow you to do this. Anyone? <{POST_SNAPBACK}> Share this post Link to post Share on other sites
rla128 0 Posted April 18, 2005 I did this: //Very easy installation for this add-on. //Copy the file redirect.php to catalog/ //Go to and edit catalog/login.php //before line 12 ?require('includes/application_top.php');? copy and paste //Login redirect to checkout require('./redirect.php'); ... And I now get this: vDeck error 404 not found The requested resource could not be found. Share this post Link to post Share on other sites
eghydro 0 Posted April 18, 2005 (edited) take out the redirect edits...and open up shopping_cart.php and on line 41 Change: <td width="100%" valign="top"><?php echo tep_draw_form('cart_quantity', tep_href_link(FILENAME_SHOPPING_CART, 'action=update_product')); ?><table border="0" width="100%" cellspacing="0" cellpadding="0"> to this: <td width="100%" valign="top"><?php echo tep_draw_form('cart_quantity', tep_href_link(FILENAME_ORDER_INFO, 'action=update_product')); ?><table border="0" width="100%" cellspacing="0" cellpadding="0"> do that and you will be taken right to the order details :) now what I'm trying to do is take out the " NOTE: If you already have an account with us, please login at the login page."....anyone? Edited April 18, 2005 by eghydro Share this post Link to post Share on other sites
rla128 0 Posted April 28, 2005 Again, that edit doesn't change a thing. Share this post Link to post Share on other sites
rla128 0 Posted May 2, 2005 Please! I have everything working except this stupid redirect! Share this post Link to post Share on other sites
m0oo0m 0 Posted May 3, 2005 Please! I have everything working except this stupid redirect! <{POST_SNAPBACK}> do you have the PWA working with downloadable content? Share this post Link to post Share on other sites
mazza 0 Posted May 3, 2005 This little hack sends customers straight to order info instead of making him choose between the 3 options. if (PWA_ON == 'false') { require(DIR_WS_INCLUDES . FILENAME_PWA_ACC_LOGIN); } else { tep_redirect(tep_href_link(FILENAME_CHECKOUT, '', 'SSL')); } "Use no way as way, have no limitation as limitation." - Bruce Lee Share this post Link to post Share on other sites
rla128 0 Posted May 4, 2005 What file do I add that to? Share this post Link to post Share on other sites