Hello Giuse,
We actually don't have the rights to write on your files, so we can't properly debug it.
Can you edit the file "administrator/components/com_hikashop/helpers/paymentplugin.php" and change that line :
if(bccomp((float)$method->payment_params->payment_min_weight, (float)$order->weight, 3) == 1){
By :
if(bccomp(sprintf('%.3F',$method->payment_params->payment_min_weight), sprintf('%.3F',$order->weight), 3) == 1)
And that line :
if(bccomp((float)$method->payment_params->payment_max_weight, (float)$order->weight, 3) == -1){
By :
if(bccomp(sprintf('%.3F',$method->payment_params->payment_max_weight), sprintf('%.3F',$order->weight), 3) == -1)
Thank you !
Kind regards,
Mohamed.