Hi,
You will have to add custom code, for example in the view "order / show_products" add:
$cids = array();
foreach($this->order->products as $prod){
if($prod->product_id != '0')
$cids[]=$prod->product_id;
}
$productClass = hikashop_get('class.product');
$productClass->getProducts($cids);
Before:
foreach($this->order->products as $k => $product) {
And:
<?php
if(in_array($product->product_id,array_keys($productClass->products))){
echo $productClass->products[$product->product_id]->CUSTOMFIELD_NAME;
}
?>
In the desired <td> in the foreach.