jeremyallison Posted December 5, 2004 Posted December 5, 2004 Hi everyone!! This is probably the stupidest thing going and I feel a fool for asking, but I have worked out everything ic OSc but this....... Where on EARTH is the text for the "order update" email? What PHP file actually defines it? I have searched everything, tweaked every other file but cannot find the one containing the link for customers to click back and check their order online. Any help?? Cheers, Jeremy
OceanRanch Posted December 5, 2004 Posted December 5, 2004 catalog/checkout_process.php Around line 222 the good stuff starts. Tom
jeremyallison Posted December 6, 2004 Author Posted December 6, 2004 Thanks Tom, I cant find out how to remove the detailed invoice URL from the Email? Can you help? My boss wanted the account purely as "Proceed without account" so this URL isnt necessary for us. I just need a quick fix because I intend to reinstall the cart next weekend with full account functionability - I would prefer the option. Jeremy
OceanRanch Posted December 6, 2004 Posted December 6, 2004 Ok, once again at line 222 look at the following code. // lets start with the email confirmation $email_order = STORE_NAME . "\n" . EMAIL_SEPARATOR . "\n" . EMAIL_TEXT_ORDER_NUMBER . ' ' . $insert_id . "\n" . EMAIL_TEXT_INVOICE_URL . ' ' . tep_href_link(FILENAME_ACCOUNT_HISTORY_INFO, 'order_id=' . $insert_id, 'SSL', false) . "\n" . EMAIL_TEXT_DATE_ORDERED . ' ' . strftime(DATE_FORMAT_LONG) . "\n\n"; If you just want to remove the URL link then // lets start with the email confirmation $email_order = STORE_NAME . "\n" . EMAIL_SEPARATOR . "\n" . EMAIL_TEXT_ORDER_NUMBER . ' ' . $insert_id . "\n" . EMAIL_TEXT_DATE_ORDERED . ' ' . strftime(DATE_FORMAT_LONG) . "\n\n"; You can play around with this to make sure it looks ok in your email. HTH Tom
jeremyallison Posted December 6, 2004 Author Posted December 6, 2004 Hi Tom! THANK YOU! Very much appreciated!! Jeremy
Recommended Posts
Archived
This topic is now archived and is closed to further replies.