Jump to content

Set handling charge


Recommended Posts

there is no option. handling charges are the same for all. the class

classes/cart.php  have this code:

 

if (isset($configuration['PS_SHIPPING_HANDLING']) && $carrier->shipping_handling)
$shipping_cost += (float)$configuration['PS_SHIPPING_HANDLING'];
 
try change to
 
if (isset($configuration['PS_SHIPPING_HANDLING']) && $carrier->shipping_handling && $order_total < 300)
$shipping_cost += (float)$configuration['PS_SHIPPING_HANDLING'];
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...