Getting minimum order amount for 'Free Shipping' method in checkout page

前端 未结 5 1789
醉话见心
醉话见心 2021-01-06 02:42

I have did tried to use the code from this answer:
How to get minimum order amount for free shipping in woocommerce

But it return a NULL

5条回答
  •  星月不相逢
    2021-01-06 03:20

    Maybe it will help someone. You can create new free shipping object and get from it min_amount. I think it's simpler than in @LoicTheAztec answer.

    if ( class_exists( 'WC_Shipping_Free_Shipping' ) ) {
        $free_shipping = new WC_Shipping_Free_Shipping();
        $min_amount = $free_shipping->min_amount;
        echo $min_amount;
    }
    

提交回复
热议问题