WooCommerce Быстрый сбор за корзину

Я хотел бы добавить плату к определенным категориям, если общее количество продуктов из всех определенных категорий составляет 1, или отдельную плату, если количество составляет 2-9 .. (т.е. + 10 долл. США к продукту, если они заказывают только 1, + 5 долларов за продукт, если они заказывают 2-9 предметов).

Я начал с этой базы: Индивидуальный сбор в зависимости от размеров и категорий товаров

У меня есть некоторые изменения, но я не могу заставить их работать, и я застрял.

Вот мой код:

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

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

// Set HERE your categories (can be an ID, a slug or the name… or an array of this)
$category1 = 'plain';
$category2 = 'plywood';

// variables initialisation
$fee = 0;

// Iterating through each cart item
foreach(WC()->cart->get_cart() as $cart_item){
// Get the product object
$product = new WC_Product( $cart_item['product_id'] );
$quantiy = $value['quantity']; //get quantity from cart

// Initialising variables (in the loop)
$cat1 = false; $cat2 = false;

// ## CALCULATIONS ## (Make here your conditional calculations)
$quantity = GET TOTAL QUANTITY
if($quantity <= 1){
$fee += 10 * $quanity;
} elseif($quantity > 1 && $dimention <= 9){
$fee += 5 * $quanity;
} elseif($dimention > 10){
$fee += 1 * $quanity;
}
}

// Adding the fee
if ( $fee != 0 )
WC()->cart->add_fee( $fee_text, $fee, true );
}

Что я делаю не так? Как я могу заставить это работать?

2

Решение

Обновлено 2

Ваши потребности не так ясны, поэтому я постарался сделать все возможное. Я понял, что вы хотите добавить:

  • Фиксированная начальная плата при наличии 1 товара в корзине из определенной категории товаров.
  • Расчетная плата, основанная на общем количестве товаров в корзине, когда есть (от 2 до 9) товаров в корзине из определенной категории товаров.

Вот соответствующий код для этого:

add_action( 'woocommerce_cart_calculate_fees','conditional_custom_multiple_fees', 10, 1 );
function conditional_custom_multiple_fees( $cart_object ) {

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

// Set HERE your categories (can be an ID, a slug or the name… or an array of this)
$product_categories = array('clothing', 'disc');
$cat_qty = 0;
$cart_total_qty = $cart_object->get_cart_contents_count();

// Iterating through each cart item
foreach( $cart_object->get_cart() as $cart_item ){
$product = $cart_item['data']; // The product object
$item_qty = $cart_item['quantity']; // Item quantity

// Counting quanties for the product categories
if( has_term( $product_categories, 'product_cat', $cart_item['data']->get_id() ) )
$cat_qty += $cart_item['quantity'];
}

##  --  --  --  --  CALCULATIONS AND CONDITIONAL FEES  --  --  --  --  ##

// 1. A fee for the product defined categories for 1 cart item only
if($cat_qty == 1) // updated HERE
{
$fee_amount = 10;
$cart_object->add_fee( __( "Fee (1)" ), $fee_amount, true );
}

// 2. Or a calculated fee for the defined product categories (qty from 2 to 9)
if( $cat_qty >= 2 && $cat_qty <= 9 )
{
$amount_by_item = 5; // amount by item (updated)
$calculated_fee = $amount_by_item * $cat_qty;  // calculation (updated)
$cart_object->add_fee( __( "Fee (2 to 9)" ), $calculated_fee, true );
}
}

Код помещается в файл function.php вашей активной дочерней темы (или темы) или также в любой файл плагина.

Этот код протестирован и работает.

2

Другие решения

Спасибо LoicTheAztec Я думаю, что с некоторыми незначительными правками ваш код будет работать …

add_action( 'woocommerce_cart_calculate_fees','conditional_custom_multiple_fees', 10, 1 );
function conditional_custom_multiple_fees( $cart_object ) {

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

// Set HERE your categories (can be an ID, a slug or the name… or an array of this)
$product_categories = array('clothing', 'disc');
$cat_qty = 0;
$cart_total_qty = $cart_object->get_cart_contents_count();

// Iterating through each cart item
foreach( $cart_object->get_cart() as $cart_item ){
$product = $cart_item['data']; // The product object
$item_qty = $cart_item['quantity']; // Item quantity

// Counting quanties for the product categories
if( has_term( $product_categories, 'product_cat', $cart_item['data']->get_id() ) )
$cat_qty += $cart_item['quantity'];
}

##  --  --  --  --  CALCULATIONS AND CONDITIONAL FEES  --  --  --  --  ##

// 1. The 1st fee for the product defined categories (qty = 1)
if($cat_qty = 1)
{
$fee_amount = 10;
$cart_object->add_fee( __( "Fee (1)" ), $fee_amount, true );
}

// 2. The Separate  additional fee for the defined product categories (qty from 2 to 9)
if( $cat_qty >= 2 && $cat_qty <= 9 )
{
$amount_by_item = 5; // amount by item
$calculated_fee = $cat_qty * $amount_by_item;  // calculation
$cart_object->add_fee( __( "Fee (2 to 9)" ), $calculated_fee, true );
}

}

1

По вопросам рекламы [email protected]