Hello,
You're right, thanks to your return, we have now a code correction to solve your issue, it have been now push in our package files.
Now for you, follow me step by step to simply add the correction :
- First go to YourWebsite\plugins\hikashop\shippingmanual_prices and open the "shippingmanual_prices.php"
- around line 282, you will see this :
$shipData = array();
// Get data from Shippingmanual_prices plugin :
foreach ($shippings as $v){
// Don't display unpublished shipping method on product page :
if($v->shipping_published == 0)
continue;
...
Add this line :
// Blocked per price check :
if ( (isset($v->shipping_fee_value)) && ($v->shipping_fee_value == -1) ) {
$v->shipping_published = 0;
}
...
just after "foreach ($shippings as $v) {":
To get finally this :
Thanks again for your return !
Regards