Page 1 of 1
Where to edit " Order is being processed" page
Posted: Thu Apr 01, 2010 3:51 am
by slinkie172
Hi Folks,
Where do I find the "your order has been processed and will be sent out it x days" message that you get after and order has been processed.
I can't seem to find it.
Thanks
Matt
Re: Where to edit " Order is being processed" page
Posted: Thu Apr 01, 2010 4:04 am
by Qphoria
catalog/language/english/checkout/success.php
Re: Where to edit " Order is being processed" page
Posted: Sat Apr 10, 2010 2:31 pm
by jackfitz
WHat is the correct way to insert javascript tracking code in to this php file?
I am trying to use google conversion tracking.
Re: Where to edit " Order is being processed" page
Posted: Sat Apr 10, 2010 8:34 pm
by Qphoria
Normally you would add that to the success.tpl page. But that page is actually shared between controllers, so you would instead add the code to an echo in the catalog/controller/checkout/success.php page
1. EDIT: catalog/controller/checkout/success.php
2. FIND:
Code: Select all
$this->data['continue'] = $this->url->http('common/home');
3. AFTER, ADD:
Code: Select all
echo '<script type="text/javascript">';
echo '.....SCRIPT HERE......';
echo '.....SCRIPT HERE......';
echo '.....SCRIPT HERE......';
echo '</script>';