Bonjour,
Elle est en effet en dur dans administrator/components/com_hikashop/types/characteristic.php
C'est une relique du passé. Idéalement, il faudrait bouger ce code dans show_block_characteristic.php
En effet, nous voulons modifier le système des caractéristiques/variantes pour permettre la sélection de variantes sur les listings, et une page produit plus légère sans limite sur le nombre de variantes. Du coup, nous attendions de faire cela pour revoir le système et ne plus utiliser types/characteristic.php
Mais sinon, il est quand même possible de modifier ce tableau comme expliqué dans la doc développeur:
www.hikashop.com/support/documentation/6...tation.html#override
For the characteristics:
You need to create the file templates/YOUR_TEMPLATE/html/hikashop_characteristics.php. We invite you to look at the file administrator/components/com_hikashop/type/characteristic.php for the default code of the function you will define in it. In that file, you will be able to define the function:
hikashop_characteristics_html(&$element,&$params,&$obj) => The $element variable will contain the whole product information from which you can extract the characteristics information and the params variable can help you get some parameters from the HikaShop configuration. The $obj variable will be the instance of the characteristic display class. That way, when you get the code from the characteristic.php file, you can just replace $this by $obj and it should work. You need to return the HTML of the characteristics selection at the end of your function.