Hello,
Please edit the file "components/com_hikamarket/views/productmarket/view.html.php" and replace
if($vendor_id <= 1)
$useNewACL = false;
By
if($vendor_id <= 1)
$useNewACL = false;
if(!empty($this->editing_variant))
return hikamarket::acl('product/variant/' . trim($action, '/') );
And it should fix the reading of the "product / edit / price" instead of "product / variant / price".
The "product/new/" has been added in order to allow you to configure different ACL depending if the vendor is creating a product or editing one.
So if you're using "waiting approval" system, you can see to give more access during the creation than after the approval.
Please note that if you do not set anything for "product/new/", it will use "product/edit/" rules instead.
Regards,