Skip to main content

Shipping restrictions

can we set shipping restrictions per postcode (ie in uk, allow delivery to specific postcodes BT*)?

and can we set different shipping prices based on either location and/or weight of order?

Naazim Mohungoo

where can we integrate this ?

$weightBased = ShippingMethod::create([
'zone_id' => 1,
'title' => 'Weight Based Shipping',
'type' => 'weight_based',
'amount' => 0,
'is_enabled' => true,
'settings' => [
'calculation_type' => 'weight',
'base_cost' => 500,
'per_kg_cost' => 200,
'max_weight' => 20
]
]);

Sarkar Ripon

can we set shipping restrictions per postcode (ie in uk, allow delivery to specific postcodes BT*)?
\=> postcode based shipping restriction currently not possible. Taking as feature request.

and can we set different shipping prices based on either location and/or weight of order?

\=> Location based shipping which we call shipping zone in fluentCart is possible. but no weight based but we have quantity based shipping feature.

thanks

Naazim Mohungoo

Can you take weight based shipping ss feature request too please Ripon SarkarΒ ?

Sarkar Ripon