Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

How do I modify the Continue Shopping button?


db555

Recommended Posts

Posted

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!

Posted
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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...