ChrisJChrisJ Posted July 7, 2005 Posted July 7, 2005 Right now on my store, after create_account_success.php, Continue takes me to Index.php, where I can select a product, which then takes me to shopping_cart.php. If I want to continue shopping, when I select the Continue Shopping button, it takes me back to the same product that I just selected and just Added to My Cart. Shouldn't Continue Shopping take me to the Catalog, where there are other product choices? When I select catalog on the task bar, I get directed to index.php. Is this correct? Can someone help me with this? Am I missing a page? Isn't there a page where it lists products and has buttons that say Buy Now? Thanks. I look forward to any assistance.
Guest Posted July 8, 2005 Posted July 8, 2005 In shopping_cart.php change: <?php $back = sizeof($navigation->path)-2; if (isset($navigation->path[$back])) { ?> to: <?php $back = sizeof($navigation->path)-3; if (isset($navigation->path[$back])) { ?> Don't ask me why its not like this in the first place :P Matti
ChrisJChrisJ Posted July 8, 2005 Author Posted July 8, 2005 In shopping_cart.php change: <?php ? ?$back = sizeof($navigation->path)-2; ? ?if (isset($navigation->path[$back])) { ?> to: <?php ? ?$back = sizeof($navigation->path)-3; ? ?if (isset($navigation->path[$back])) { ?> Don't ask me why its not like this in the first place :P Matti <{POST_SNAPBACK}> Thanks for your help.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.