View Single Post
  #7  
Old 07-23-2011, 04:48 PM
  cflsystems's Avatar 
cflsystems cflsystems is offline
 

Veteran
  
Join Date: Apr 2007
Posts: 14,201
 

Default Re: How to change Order Confirmation message?

The info is available there

/skin/common_files/customer/main/order_message.tpl

You have to do something like

{foreach from=$orders item=order}
{if $order.paymentid eq "xxx"}
show message1
{elseif $order.paymentid eq "yyy"}
show message2
{else}
show message3
{/if}
{/foreach}
__________________
Steve Stoyanov
CFLSystems.com
Web Development
Reply With Quote