I would prevent ordering from a certain weight per...
# support
s
I would prevent ordering from a certain weight per order
k
Hello Sabo, the weight is stored in the variants so you might be able to add some sort of validation on the order checking
order.line_items.sum { |li| li.variant.weight }
This might be possibile when people add products to the cart, before the package is created (on the delivery step of the checkout)
s
Ok ! thank you @kennyadsl for your quick response :)