Hello. I need to add a small script to a php page for my store. Store is live and very active, so I can't screw it up.
Need this added:
<!-- begin AVN Ads conversion tracking code -->
<img border="0" hspace="0" vspace="0" width="1" height="1" src="http://stats.adbrite.com/stats/stats.gif?cpid=conversion&uid=111111" />
<!-- end AVN Ads conversion tracking code -->
to the bottom of the following:
<?php
/*
$Id: checkout_success.php,v 1.12 2003/04/15 17:47:42 dgw_ Exp $
osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com
Copyright (c) 2002 osCommerce
Released under the GNU General Public License
*/
define('NAVBAR_TITLE_1', 'Checkout');
define('NAVBAR_TITLE_2', 'Success');
define('HEADING_TITLE', 'Your Order Has Been Processed!');
define('TEXT_SUCCESS', 'Your order has been successfully processed! Your products will ship the next business day.');
define('TEXT_NOTIFY_PRODUCTS', 'Please notify me of updates to the products I have selected below:');
define('TEXT_SEE_ORDERS', 'You can view your order history by going to the <a href="' . tep_href_link(FILENAME_ACCOUNT, '', 'SSL') . '">\'My Account\'</a> page and by clicking on <a href="' . tep_href_link(FILENAME_ACCOUNT_HISTORY, '', 'SSL') . '">\'History\'</a>.');
define('TEXT_CONTACT_STORE_OWNER', 'Please direct any questions you have to the <a href="' . tep_href_link(FILENAME_CONTACT_US) . '">store owner</a>.');
define('TEXT_THANKS_FOR_SHOPPING', 'Thanks for shopping with us online!');
define('TABLE_HEADING_COMMENTS', 'Enter a comment for the order processed');
define('TABLE_HEADING_DOWNLOAD_DATE', 'Expiry date: ');
define('TABLE_HEADING_DOWNLOAD_COUNT', ' downloads remaining');
define('HEADING_DOWNLOAD', 'Download your products here:');
define('FOOTER_DOWNLOAD', 'You can also download your products at a later time at \'%s\'');
// Guest account start
define('TEXT_GUEST_ORDERS', 'Thank you for shopping with us.');
?>
I thought I knew how, but now I'm not so sure. (I know just enough php to hurt myself!) And yes, I 've asked at the osCommerce forum, but getting help there is sometimes difficult.
Any help would be appreciated.
Thanks
Tom