Guest Posted August 9, 2005 Posted August 9, 2005 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
Guest Posted August 9, 2005 Posted August 9, 2005 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 ;)
Guest Posted August 9, 2005 Posted August 9, 2005 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 ;) <{POST_SNAPBACK}> 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
Guest Posted August 9, 2005 Posted August 9, 2005 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 :)
Guest Posted August 9, 2005 Posted August 9, 2005 Keep in mind that you cannot view php with a "view source" command. you must look at the file itself :D
Guest Posted August 9, 2005 Posted August 9, 2005 Keep in mind that you cannot view php with a "view source" command. you must look at the file itself :D <{POST_SNAPBACK}> 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
Recommended Posts
Archived
This topic is now archived and is closed to further replies.