Hello,
The content is generated by the HikaMarket "filter_vendor" type.
When you have few vendors, it displays a dropdown but when you have more than 10 vendors it changes for a different layout...
You can find the code within the "display" function, the idea is to replace all the code in the "else" by
$nameboxType = hikamarket::get('type.namebox');
$ret = '<div style="display:inline-block;min-width:240px;vertical-align:top;">'.
$nameboxType->display(
$map,
(int)$value,
hikamarketNameboxType::NAMEBOX_SINGLE,
'vendor',
array(
'delete' => true,
'default_text' => '<em>'.JText::_('HIKA_NONE').'</em>'
)
) .
'</div>';
And it should improve the usability.
Please give us your feedback about it