Is there a way to change the flow of pages so that once the customer clicks on the "Go to Checkout" button on the Shopping Cart page, the next page they see is the Billing information?
Using FireFox Firebug I edited the html code on the shopping cart page for the button from
index.php?main_page=checkout_shipping
to
index.php?main_page=no_account
and tried it out. It did what I wanted which is skip the Login page (with the COWOA mod installed of course) and go right to the Billing Information page. With the Checkout without Account option in the login page most people aren't going to register, so why not get rid of an extra click.
My question is what file contains the lines needed to change this?
I thought maybe the 4th line in the includes/templates/template_default/templates/tpl_checkout_shipping_default.php file
<?php echo zen_draw_form('checkout_address', zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL')) . zen_draw_hidden_field('action', 'process'); ?>
or the line in tpl_shopping_cart_default.php file:
<!--bof shopping cart buttons-->
<div class="buttonRow forward"><?php echo '<a href="' . zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL') . '">' . zen_image_button(BUTTON_IMAGE_CHECKOUT, BUTTON_CHECKOUT_ALT) . '</a>'; ?></div>
<div class="buttonRow back"><?php echo zen_back_link() . zen_image_button(BUTTON_IMAGE_CONTINUE_SHOPPING, BUTTON_CONTINUE_SHOPPING_ALT) .
but I'm not sure what to change it to.