Hi, tried various placings for the email tag and it either place's the tag in text above the email or placing after the first <?php it crashes the system again?
<?php
/**
* @package HikaShop for Joomla!
* @version 1.4.7
* @author hikashop.com
* @copyright (C) 2010 HIKARI SOFTWARE. All rights reserved.
* @license
www.hikashop.com/commercial_license.php
*/
defined('_JEXEC') or die('Restricted access');
?> **placed here** wont work
<div style="background-color: #ffffff; font-family: Verdana, Arial, Helvetica, sans-serif;font-size:12px; color: #000000; width: 100%;">
<table style="margin: auto;font-family: Verdana, Arial, Helvetica, sans-serif;font-size:12px;" border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td height="10">
</td>
</tr>
<tr>
<td>
<?php echo JText::sprintf('HI_CUSTOMER',@$data->customer->name);?>
**placed here crashes system**
<br/>
<br/>
<?php
$url = $data->order_number;
$config =& hikashop::config();
if($config->get('simplified_registration',0)!=2){
$url .= ' ( '.$data->order_url.' )';
}
echo JText::sprintf('ORDER_CREATION_SUCCESS_ON_WEBSITE_AT_DATE',$url,HIKASHOP_LIVE, hikashop::getDate(time(),'%d %B %Y'), hikashop::getDate(time(),'%H:%M'));?>
</td>
</tr>
<tr>
<td height="10">
</td>
</tr>
re the product code in the customer order screen: I appear not to have a order-form in the front end? only have two order in the front end and they are listing & show
changed in the back end ok and this does what you said it would earlier, but the code still shows in the customer order section??
The Paypal query works fine.