Kryptronic Software Support Forum

You are viewing this forum as a guest. Login to an existing account, or create a new account, to reply to topics and to create new topics.

#1 02-24-2012 18:32:56

goski
Member
Registered: 09-27-2005
Posts: 115

Remove text from Order Confirmation

I would like to remove the following text from the Order Confirmation.  It's kind of meaningless since I wouldn't have received the Order Confirmation if and online order had not been processed. Can anyone tell me what line of code generates it?

"An online order was just processed on the Corporate Golf Imprinting web site. Below is the information for the order."

Offline

 

#2 02-27-2012 07:29:53

west4
Member
From: UK
Registered: 04-16-2008
Posts: 645
Website

Re: Remove text from Order Confirmation

Hi Goski,

go to "System Dashboard > System > Mail > Mail Messages" and edit "Order Confirmation Message (Internal)"

change

Code:

<?php

$site_name = $this->globals('core_settings.core.site_name');

$this->globals('ecom.mail_msgtype','INTERNAL');

?>

An online order was just processed on the <?php print $site_name; ?> web site.  Below is the information for the order.

<?php $this->include_file('ecom','ordersummarytxt.php'); ?>

to

Code:

<?php

$site_name = $this->globals('core_settings.core.site_name');

$this->globals('ecom.mail_msgtype','INTERNAL');

?>

<?php $this->include_file('ecom','ordersummarytxt.php'); ?>

Don't forget to make backups of any file you change...

Cheers,
Bruce.


I'd rather have a full bottle in front of me, than a full frontal labotomy.

Offline

 

#3 02-27-2012 16:51:22

goski
Member
Registered: 09-27-2005
Posts: 115

Re: Remove text from Order Confirmation

It appears that I had to delete the code in two places.  In the Mail Message and the XHTML Message.  But it works fine.  Thanks for the help.

Offline

 

Board footer