Zen Cart Logo
Forums / General Questions / remove invoice link in email

remove invoice link in email

Locked

Views: 3,271

Results 1 to 6 of 6
This thread is locked. New replies are disabled.
15 Mar 2007, 8:48 AM
#1
bean_2k1 avatar

bean_2k1

New Zenner

Join Date:
Nov 2006
Posts:
66
Plugin Contributions:
0

remove invoice link in email

How would i got about by taking the invoice hyperlink link in the order confirmation email ?

Thanks

15 Mar 2007, 5:10 PM
#2
schoolboy avatar

schoolboy

Totally Zenned

Join Date:
Jun 2005
Location:
Cumbria, UK
Posts:
10,327
Plugin Contributions:
0

Re: remove invoice link in email

includes/languages/english/checkout_process.php

27 Mar 2007, 7:32 PM
#3
ddaniels avatar

ddaniels

New Zenner

Join Date:
Aug 2005
Posts:
5
Plugin Contributions:
0

Re: remove invoice link in email

I did this and still get the following:

EMAIL_TEXT_INVOICE_URL
then the link

What am I doing wrong?

27 Mar 2007, 10:07 PM
#4
taxidermy_smile avatar

taxidermy_smile

New Zenner

Join Date:
Jun 2005
Location:
KY - USA
Posts:
23
Plugin Contributions:
0

Re: remove invoice link in email

ddaniels try:

change this...

includes/languages/english/checkout_process.php

define('EMAIL_TEXT_INVOICE_URL', 'Detailed Invoice:');
define('EMAIL_TEXT_INVOICE_URL_CLICK', 'Click here for a Detailed Invoice');

to:

//define('EMAIL_TEXT_INVOICE_URL', 'Detailed Invoice:');
//define('EMAIL_TEXT_INVOICE_URL_CLICK', 'Click here for a Detailed Invoice');

Good luck:smile:

28 Mar 2007, 10:35 PM
#5
schoolboy avatar

schoolboy

Totally Zenned

Join Date:
Jun 2005
Location:
Cumbria, UK
Posts:
10,327
Plugin Contributions:
0

Re: remove invoice link in email

...or, just remove the text descriptions between the ' ' tags...

FROM
define('EMAIL_TEXT_INVOICE_URL', 'Detailed Invoice:');
define('EMAIL_TEXT_INVOICE_URL_CLICK', 'Click here for a Detailed Invoice');

TO
define('EMAIL_TEXT_INVOICE_URL', '');
define('EMAIL_TEXT_INVOICE_URL_CLICK', '');