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 06-09-2010 15:37:15

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

Purchase Order Message

The following instructions appear when a Purchase Order payment method is select, "After verifying your order information and clicking the 'Process Order' button, you will be presented with your order confirmation. Be sure to print your purchase order and fax a copy of it with payment information entered in the Order Notes section to the fax number at the top of the printable order summary". 

I do not want customers faxing a Purchase Order.  Where can I change it to say the following, "After verifying your order information and clicking the 'Process Order' button, you will be presented with your order confirmation. Be sure to print  the order confirmation for your records".

Offline

 

#2 06-10-2010 12:19:14

larry
Member
Registered: 07-21-2003
Posts: 437

Re: Purchase Order Message

System Dashboard > Store > Commerce > Processing Gateways

select  Update Purchase Order, then click Form Display Code

In the code look for

Code:

// +--
// | Printable form instructions.
// +--

$instructions =

Edit the text within the quotes.


Laurie Stephens




Offline

 

#3 06-10-2010 13:30:17

kreinbrink
Member
From: Orlando
Registered: 11-16-2009
Posts: 163
Website

Re: Purchase Order Message

You must also change the display include: Order Summary (Order Confirmation)

Scroll down to the following and change accordingly.

Code:

// +--
// | Print special headers for check and purchase order payments.
// +--

          if (($order['gateway']['id'] == 'check') && (empty($ordercompl))) {

               print '<p class="strong">Please print a copy of this order and mail it with a check for the full ';
               print 'order amount to the address at the top of your printable order summary.  Click the ';
               print 'link below for your printable order summary.  Thank you.</p>';

          } elseif (($order['gateway']['id'] == 'purchord') && (empty($ordercompl))) {

               print '<p class="strong">Please print a copy of this order and fax it with payment information ';
               print 'to the fax number at the top of your printable order summary.  Click the ';
               print 'link below for your printable order summary.  Thank you.</p>';

          } 

// End of if statement.

Ben
  : CCP7 w/ Joomla Integration

Offline

 

#4 06-10-2010 13:32:31

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

Re: Purchase Order Message

Thanks for the help.  Worked great.

Offline

 

Board footer