Hi,
Please edit the file: administrator/com_hikamarket/types/market_acl.php and replace the code
foreach($categories as $name => $data) {
if(isset($this->acl[$name]) && isset($this->acl[$name]['edit']['plugin']) && !empty($data)) {
$this->acl[$name]['edit']['plugin'] = array_merge($this->acl[$name]['edit']['plugin'], $data);
}
}
By
foreach($categories as $name => $data) {
if(isset($this->acl[$name]) && isset($this->acl[$name]['edit']['plugin']) && !empty($data)) {
$this->acl[$name]['edit']['plugin'] = array_merge($this->acl[$name]['edit']['plugin'], $data);
}
if(empty($this->acl[$name]['edit']['plugin']))
unset($this->acl[$name]['edit']['plugin']);
}
At this moment, the empty sub group "plugin" would not be display under "vendor / edit".
I am working on it in order to improve it, I am not really satisfy of this patch but if I don't find something better, this patch would be include in the next release.
But, what is sure is that, the problem for the vendor edit button will be fix (and with little patch, it will too).
Regards,