E
E
Elio Don2020-02-09 16:58:04
WordPress
Elio Don, 2020-02-09 16:58:04

How to finalize Woocommerce progressive discount?

Now the progressive discount from 30,000 rubles is 2%, from 100,000 = 4%, how to add a 3% discount with an amount from 60,000 to 10,000?

add_action('woocommerce_cart_calculate_fees','cart_price_progressive_discount'); 
function cart_price_progressive_discount() { 

    if (is_admin() && ! defined('DOING_AJAX')) 
     return; 

    $has_discount = false; 
    $stotal_ext = WC()->cart->subtotal_ex_tax; 

    // Discount percent based on cart amount conditions 
    if($stotal_ext >= 30000 && $stotal_ext < 100000 ) { 
     $percent = -0.02; 
     $percent_text = ' 2%'; 
     $has_discount =true; 
    } elseif($stotal_ext >= 100000 ) { 
     $percent = -0.04; 
     $percent_text = ' 4%'; 
     $has_discount =true; 
    } 
    // Calculation 
    $discount = $stotal_ext * $percent; 

    // Displayed text 
    $discount_text = __('Ваша скидка', 'woocommerce') . $percent_text; 

    if($has_discount) { 
     WC()->cart->add_fee($discount_text, $discount, false); 
    } 
    // Last argument in add fee method enable tax on calculation if "true" 
}

Answer the question

In order to leave comments, you need to log in

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question