-- HikaShop version -- : 3.0.0
-- Joomla version -- : 3.6.5
-- PHP version -- : 7.0
-- Browser(s) name and version -- : Chrome
Hi
I'm confused - but then, what's new 
I've created a custom text field for products called "shortinfo"
I see that there is a section in this file called "product custom fields".
I would like the short decsription to appear there but I don't know how to deal with the code that's there:
<!-- PRODUCT CUSTOM FIELDS -->
<?php
if(!empty($this->productFields)) {
foreach($this->productFields as $fieldName => $oneExtraField) {
if(empty($this->row->$fieldName) && (!isset($this->row->$fieldName) || $this->row->$fieldName !== '0'))
continue;
if(!empty($oneExtraField->field_products)) {
$field_products = is_string($oneExtraField->field_products) ? explode(',', trim($oneExtraField->field_products, ',')) : $oneExtraField->field_products;
if(!in_array($this->row->product_id, $field_products))
continue;
}
?>
<dl class="hikashop_product_custom_<?php echo $oneExtraField->field_namekey;?>_line">
<dt class="hikashop_product_custom_name">
<?php echo $this->fieldsClass->getFieldName($oneExtraField);?>
</dt>
<dd class="hikashop_product_custom_value">
<?php echo $this->fieldsClass->show($oneExtraField,$this->row->$fieldName); ?>
</dd>
</dl>
<?php
}
}
?>
<!-- EO PRODUCT CUSTOM FIELDS -->
Where would I place the field name so that the content is shown on the product listing pages?
Thanks for your help
Regards
David