Answers for "setup woocommerce quantity based shipping"

PHP
0

get current shipping method woocommerce

$rate_table = array();

$shipping_methods = WC()->shipping->get_shipping_methods();

foreach($shipping_methods as $shipping_method){
    $shipping_method->init();

    foreach($shipping_method->rates as $key=>$val)
        $rate_table[$key] = $val->label;
}

echo $rate_table[WC()->session->get( 'chosen_shipping_methods' )[0]];
Posted by: Guest on June-10-2020

Code answers related to "setup woocommerce quantity based shipping"

Browse Popular Code Answers by Language