Hi Luca,
The auction status badges feature works by injecting badge HTML into HikaShop's `extraData` positions on product rows, which the listing item templates then render. If the badges don't appear despite the setting being enabled, it's most likely because you have a HikaShop product listing template override in your Joomla template that doesn't include the `extraData` output.
Please check if you have a file like:
`templates/YOUR_TEMPLATE/html/com_hikashop/product/listing_img_title.php`
(or `listing_div.php`, `listing_fade.php`, etc.)
If so, that override was probably copied from an older version of HikaShop before the `extraData` mechanism was added. You would need to either update the override to include the extraData lines from the current HikaShop version, or remove the override to use the default template.
For reference, the default `listing_img_title.php` has these three extraData hooks:
- Near the top: `if(!empty($this->row->extraData->top)) { echo implode("\r\n",$this->row->extraData->top); }`
- After the product name: `if(!empty($this->row->extraData->afterProductName)) { echo implode("\r\n",$this->row->extraData->afterProductName); }`
- Near the bottom: `if(!empty($this->row->extraData->bottom)) { echo implode("\r\n",$this->row->extraData->bottom); }`
If you add the relevant line matching the position you selected in the configuration, the badges should appear.