-5

I want the customer's first order to be free shipping How can I add this feature to WooCommerce? I do not want to use the discount code and I want this feature to be applied automatically.

7uc1f3r
  • 28,449
  • 17
  • 32
  • 50

1 Answers1

1

Maybe something like this ? All credits goes to - Set custom shipping rates programmatically in Woocommerce 3

add_filter( 'woocommerce_package_rates', 'free_first_order_shipping', 20, 2 );
function free_first_order_shipping( $rates, $package ) {
    // New shipping cost (can be calculated)
    $new_cost = 0;
    $tax_rate = 0;
    //If user is logged in
    if(is_user_logged_in()) {
        $user_id = get_current_user_id();
        //We want to know how many completed orders customer have or remove status if you dont care.
        $args = array(
            'customer_id' => 1,
            'status' => array('wc-completed'),
        );
        $orders = wc_get_orders($args);
        //If there are no orders returned apply free shipping
        if(!$orders) {
            foreach( $rates as $rate_key => $rate ){
                error_log(print_r($rate,true));
                // Excluding free shipping methods
                if( $rate->method_id != 'free_shipping'){

                    // Set rate cost
                    $rates[$rate_key]->cost = $new_cost;
                    //Set shipping label
                    $rates[$rate_key]->label = 'Free Shipping';

                    // Set taxes rate cost (if enabled)
                    $taxes = array();
                    foreach ($rates[$rate_key]->taxes as $key => $tax){
                        if( $rates[$rate_key]->taxes[$key] > 0 )
                            $taxes[$key] = $new_cost * $tax_rate;
                    }
                    $rates[$rate_key]->taxes = $taxes;

                }
            }            
        }
    }

    return $rates;
}
Snuffy
  • 1,723
  • 1
  • 5
  • 9