Hi,
1. You can edit the file "address_template" of your backend and simply add a <br/> tag between the country and email address tags.
2. The product code is not displayed. So I guess that you already added it yourself. Simply add a few spaces before that code and that will do it.
3. You can remove the code:
if($this->config->get('price_with_tax')){
echo ' '.$this->currencyHelper->format($product->order_product_price+$product->order_product_tax,$this->order->order_currency_id);
}else{
echo ' '.$this->currencyHelper->format($product->order_product_price,$this->order->order_currency_id);
}
and the code:
if($this->config->get('price_with_tax')){
echo ' ( + '.$this->currencyHelper->format($optionElement->order_product_price+$optionElement->order_product_tax,$this->order->order_currency_id).' )';
}else{
echo ' ( + '.$this->currencyHelper->format($optionElement->order_product_price,$this->order->order_currency_id).' )';
}
4. You can replace the line:
echo $optionElement->order_product_name;
by:
$name = explode(':',$optionElement->order_product_name,2);
echo array_pop($name);
5. change:
<p class="hikashop_order_option_name">
into:
<p class="hikashop_order_option_name" style="display:inline;">