db555 Posted September 2, 2006 Posted September 2, 2006 I am attempting to either remove the continue shopping button or modify it so that it redirects visitors to an .html page of my choice. Any help on this would be great! Thanks!
marty_mcfly Posted September 2, 2006 Posted September 2, 2006 I am attempting to either remove the continue shopping button or modify it so that it redirects visitors to an .html page of my choice. Any help on this would be great! Thanks! Make a copy of shopping_cart.php and open it. To change the location of the redirection, find the line: echo tep_draw_hidden_field('continueshoppinglink', tep_href_link(FILENAME_DEFAULT, '', 'SSL')); and change to: echo tep_draw_hidden_field('continueshoppinglink', tep_href_link('filename.php', '', 'SSL')); where 'filename.php' is the file you want to go to. eg shipping.php To remove the button, find the line: <td class="main"><?php echo tep_image_submit('button_continue_shopping.gif', IMAGE_BUTTON_CONTINUE_SHOPPING, 'name="continuesubmit" value="checkoutbutton"');?><td> and change to: <td class="main"><td> Martin
marty_mcfly Posted September 2, 2006 Posted September 2, 2006 Sorry, when I say make a copy, I mean for backup. You should edit the shopping_cart.php file itself. Martin
Recommended Posts
Archived
This topic is now archived and is closed to further replies.