I need to add charge on product total weight and show it in cart.
I mean in cart, when adding an item, i will set an extra charge.
This charge should be calculate like this:
$extra_charge = $total_cart_weight * 0.15;
If it's possible, How can I achieve this?
Thanks