• Resolved Shwetha Harsha

    (@shwetharmaiya)


    Hi Team,

    If the cart weight is 1.25 kg, I want it rounded off to 2 kg.

    I tried this code snippet below, but doesnt work though.

    add_filter('woocommerce_cart_contents_weight', 'round_cart_contents_weight');
    function round_cart_contents_weight($weight) {
    $weight = round(ceil($weight));
    return $weight;
    }

    Any insight is welcome to solve the above problem.

    Regards,

    Shwetha

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Rounding of cart weight’ is closed to new replies.