Thanks for reply.
I inserted the logo and until there all is ok.
I see you are calling the text relativ of the status with variables like
<?php echo JText::sprintf('DATE_ON_WEBSITE',hikashop_getDate(time(),'%Y-%m-%d %H:%M'),HIKASHOP_LIVE);?>
</td>.
.
<?php
$order_url = $data->order_url;
$mail_status = $data->mail_status;
$customer = $data->customer;
$order_status = $data->order_status;
$class = hikashop_get('class.order');
$data = $class->get($data->order_id);
$url = $data->order_number;
$data->order_url = $order_url;
$data->order_status = $order_status;
$data->mail_status = $mail_status;
$config =& hikashop_config();
if($config->get('simplified_registration',0)!=2){
$url = '<a href="'.$order_url.'">'. $url.'</a>';
}
$data->cart = $class->loadFullOrder($data->order_id,true,false);
$data->cart->coupon = new stdClass();
$price = new stdClass();
$tax = $data->cart->order_subtotal - $data->cart->order_subtotal_no_vat + $data->order_discount_tax + $data->order_shipping_tax;
$price->price_value = $data->order_full_price-$tax;
$price->price_value_with_tax = $data->order_full_price;
$data->cart->full_total = new stdClass;
$data->cart->full_total->prices = array($price);
$data->cart->coupon->discount_value =& $data->order_discount_price;
$app=JFactory::getApplication();
if($app->isAdmin()){
$view = 'order';
}else{
$view = 'address';
}
$colspan = 4;
echo JText::sprintf('HI_CUSTOMER',@$customer->name);?>
and so one.
Where can i edit these. For example i would like the text of the order changing to shipped from:
Ciao affe cognome,
Stato dell'ordine No. B2G9 è ora Spedito.
to
Ciao affe cognome,
Stato dell'ordine No. B2G9 è ora Spedito. Puoi controllare la tua spedizione qui
Which variable is calling the text and where are stored the text. Is there any file to edit like the language files??
Thanks for you reply