I sh, чтобы установить указанную c скидку на определенные переменные продукты, но для определенных выбранных вариантов не для всех вариантов, если покупатель покупает один продукт, он получает другой (такой же) со скидкой 50% (Купить один получает другой за 50%). Я перепробовал множество дисконтных плагинов, самые близкие, которые я нашел: например, мой идентификатор переменной - идентификатор изменения 1571 - идентификатор изменения 1572 - 1573 предложения цены для WooCommerce
WooCommerce Все скидки Lite
Расширенные функции купонов WooCommerce. Используя эти плагины, я смог настроить скидку на промежуточный итог или скидку на каждый продукт, но не совсем то, что я ищу (купи 1, получи 1). Существуют другие профессиональные плагины, которые я не хочу go для этого.
Можно ли достичь без покупки плагина?
Спасибо
enter code here
add_action('woocommerce_cart_calculate_fees', 'add_custom_discount_2nd_at_50', 10, 1 );
function add_custom_discount_2nd_at_50( $wc_cart ){
if ( is_admin() && ! defined( 'DOING_AJAX' ) ) return;
$discount = 0;
$items_prices = array();
$qty_notice = 0; // <== Added HERE
// Set HERE your targeted variable product ID
$targeted_product_id = 1571 ;
foreach ( $wc_cart->get_cart() as $key => $cart_item ) {
if( $cart_item['product_id'] == $targeted_product_id ){
$qty = intval( $cart_item['quantity'] );
$qty_notice += intval( $cart_item['quantity'] ); // <== Added HERE
for( $i = 0; $i < $qty; $i++ )
$items_prices[] = floatval( $cart_item['data']->get_price());
}
}
$count_items_prices = count($items_prices);
//to get the discount of lowest price sorting in descending order
rsort($items_prices);
if( $count_items_prices > 1 ) foreach( $items_prices as $key => $price )
if( $key % 2 == 1 ) $discount -= number_format($price / 2, 2 );
if( $discount != 0 ){
// The discount
# Note: Last argument in add_fee() method is related to applying the tax or not to the discount (true or false)
$wc_cart->add_fee('Buy one get one 50%off(Soflens)' , $discount, true );
// Displaying a custom notice (optional)
wc_clear_notices();
if(!is_checkout()){
wc_add_notice( __("Hurrah!! You got 50% off discount on the 2nd item"), 'notice');
}}
// Display a custom notice on cart page when quantity is equal to 1.
elseif( $qty_notice == 1){
wc_clear_notices();
if(!is_checkout()){
wc_add_notice( __( "Add one more to get 50% off on 2nd item" ), 'notice');
}}
} '' '