Hi,
Temporally, you can put a little modification in order to change the way that the dropdown works.
You can edit the file "administrator/components/com_hikamarket/types/vendor_selection.php" and replace
public function displayDropdown($map, $value, $delete = false, $options = '', $id = '') {
$vendorClass = hikamarket::get('class.vendor');
$vendors = $vendorClass->getList();
return JHTML::_('select.genericlist', $vendors, $map, $options, 'value', 'text', $value, $id);
}
By
public function displayDropdown($map, $value, $delete = false, $options = '', $id = '') {
$vendorClass = hikamarket::get('class.vendor');
$vendors = $vendorClass->getList();
$app = JFactory::getApplication();
if(!$app->isAdmin())
unset($vendors[0]);
return JHTML::_('select.genericlist', $vendors, $map, $options, 'value', 'text', $value, $id);
}
It will help you to wait until the implementation of the feature.
Regards,