Zen Cart Logo

after making purchase

Views: 617

Results 1 to 6 of 6
15 Dec 2014, 4:01 PM
#1
pixel1987 avatar

pixel1987

New Zenner

Join Date:
Dec 2014
Location:
uruguay
Posts:
65
Plugin Contributions:
0

after making purchase

after making purchase I want to arrive a text with some data to the user. where is that file?

15 Dec 2014, 4:10 PM
#2
stevesh avatar

stevesh

Black Belt

Join Date:
Feb 2005
Location:
Lansing, Michigan USA
Posts:
19,793
Plugin Contributions:
2

Re: after making purchase

Possibly includes/languages/english/html_includes/YOUR_TEMPLATE/define_checkout_success.php

15 Dec 2014, 4:34 PM
#3
pixel1987 avatar

pixel1987

New Zenner

Join Date:
Dec 2014
Location:
uruguay
Posts:
65
Plugin Contributions:
0

Re: after making purchase

thanks for the reply , after confirm purchase the new edited message appears here, I want it reaches the mail along with information Cart

15 Dec 2014, 4:46 PM
#4
mc12345678 avatar

mc12345678

Totally Zenned

Join Date:
Jul 2012
Posts:
16,908
Plugin Contributions:
2

Re: after making purchase

To provide information in the email that is sent to the customer upon purchase requires modification of the includes/classes/order.php file look for function send_order_email(

And in that area is where content can be added/modified to provide to the customer.

15 Dec 2014, 4:53 PM
#5
pixel1987 avatar

pixel1987

New Zenner

Join Date:
Dec 2014
Location:
uruguay
Posts:
65
Plugin Contributions:
0

Re: after making purchase

Attachment 14787 here is screenshoot

15 Dec 2014, 4:57 PM
#6
mc12345678 avatar

mc12345678

Totally Zenned

Join Date:
Jul 2012
Posts:
16,908
Plugin Contributions:
2

Re: after making purchase

Use tools->Developer's toolkit and search for that text... Either it will appear as a defined constant in a language file

define('CONSTANT','Mensaje editado.');

Where CONSTANT would be the applicable variable for that text, or it will appear in one of the template files. You could then look for the CONSTANT and see where it is used and if that location corresponds with the template location identified above in the image.