Hi,
You can use view override to do such thing.
The view "shop_block_custom_main" display product custom fields for the product page.
The PHP code loop on all product custom field and display them.
You can modify the view and add some specific code in order to have specific display.
Like:
foreach ($this->fields as $fieldName => $oneExtraField) {
$value = '';
if(empty($this->element->$fieldName) && !empty($this->element->main->$fieldName))$this->element->$fieldName = $this->element->main->$fieldName;
if(isset($this->element->$fieldName))
$value = trim($this->element->$fieldName);
if (!empty ($value)) {
/* Begin of code to insert */
if($fieldName == 'customlink') {
echo '<tr class="hikashop_product_custom_'.$oneExtraField->field_namekey.'>_line"><td colspan="2"><a href="'.$value.'" target="_blank">More info</a></td></tr>';
continue;
}
/* End of code to insert - Do not touch the rest */
?>
And replace the "customlink" but the name of your custom field.
Regards,