Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Edit order update email?


jeremyallison

Recommended Posts

Posted

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

Posted

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

Posted

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

Archived

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

×
×
  • Create New...