Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

checkout_success continue.gif


Guest

Recommended Posts

Posted

Hi,

 

When I click [continue] on the checkout success page, i get a page not found error.

Where can I see/edit the details for this link?

 

The site is www.justrimless.com/catalog if anyone want to take a peek.

 

Many thanks,

Rick

Posted

Ok Rick,

If you look at line #105 on checkout_success.php, you'll find the continue button and submit string:

 

<td align="right" class="main"><?php echo tep_image_submit('button_continue.gif', IMAGE_BUTTON_CONTINUE); ?></td>

 

Now what you can do is direct it to go where you want your customer to end up, by changing it like so:

 

<td align="right" class="main"><a href="YourPage.php"><img src="includes/languages/english/images/buttons/button_continue.gif"></td>

 

Easy as that ;)

Posted
Ok Rick,

If you look at line #105 on checkout_success.php, you'll find the continue button and submit string:

 

        <td align="right" class="main"><?php echo tep_image_submit('button_continue.gif', IMAGE_BUTTON_CONTINUE); ?></td>

 

Now what you can do is direct it to go where you want your customer to end up, by changing it like so:

 

<td align="right" class="main"><a href="YourPage.php"><img src="includes/languages/english/images/buttons/button_continue.gif"></td>

 

Easy as that ;)

Hi thanks for that it seems straightforward apart from when I right click/view source I can see what you are saying, but when I ftp to the checkout_success.php file it doesnt have half of the lines and certainly no line looking like the above.

 

I am looking in catalog/includes/language/english/ is this correct or do I need to edit it some other way?

 

Also on my page the line has no href attribute, is this why I am having a problem?

 

<td align="right" class="main"><input type="image" src="includes/languages/english/images/buttons/button_continue.gif" border="0" alt="Continue" title=" Continue "></td>

 

Many, many thanks,

 

Rick

Posted

It's in the root folder, not includes/languages/english.

 

the href atribute was included by me as an example of how you can modify the string by replacing the php string with html, to direct your visitors where you'd like :)

Posted

Keep in mind that you cannot view php with a "view source" command. you must look at the file itself :D

Posted
Keep in mind that you cannot view php with a "view source" command.  you must look at the file itself  :D

 

I think it is sorted, made the href point to my http://front page but made the img src point to the folder containing the gif to https://sslplace/etc/

 

Seems to have cured it, but my brain is aching and as a bit of a newbie I cant help but wonder what sort of can of worms has been opened!

 

Thanks for your help,

Rick

Archived

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

×
×
  • Create New...