Hello,
Using a custom field can be your solution, but you will have to add some view override and maybe Css to adjust this, follow me step by step :
1. Configurez votre custom Field, à partir de :
Components => HikaShop => Configuration
Then, Display dropdown => Custom fields
2. Create a new custom field, by clicking "New", and reproduce part of this configuration :
3. Perform an
override view, in your
show_default view
=> Have a look on our
tutorial
to learn more about HikaShop
override system.
In details, you have to hide your regular title (
name block), and copy/paste :
<?php
$fieldClass = hikashop_get('class.field');
$field = $fieldClass->getField('xxx', 'product');
echo $fieldClass->show($field,$this->element->xxx);
?>
Where
XXX is your custom field
column name (in my screenshot it's "
image_title".
Maybe some Css can be needed to adjust the display (
documentation
).
Regards