Hi,
There is little issue in the HikaMarket payment class which would be fix in the next release.
You need to edit the file "administrator/components/com_hikamarket/classes/payment.php" and replace
if($cart_restriction == 0) {
if($vendor_id > 1)
return false;
return true;
}
By
if($cart_restriction == 0 && $cart_vendor_id <= 1) {
if($vendor_id > 1)
return false;
return true;
}
It will authorize the display of the vendor payment methods if the vendor is the only one in the cart, even if you do not have any vendor limitation in the cart.
Regards,