В WooCommerce я использую код, который автоматически добавляет упаковку при добавлении любого di sh в корзину.
function add_delivery_charge_to_cart( $cart ) {
if ( is_admin() && ! defined( 'DOING_AJAX' ) )
return;
if ( did_action( 'woocommerce_before_calculate_totals' ) >= 2 )
return;
$lunchbox_id = 5737; // "LunchBox" to be added to cart
$pakket_id = 5738; // "Pakket" to be added to cart
// Loop through cart items
foreach ( $cart->get_cart() as $cart_item_key => $cart_item ) {
// Check if "LunchBox" product is already in cart
if( $cart_item['data']->get_id() == $lunchbox_id ) {
$lunchbox_key = $cart_item_key;
$lunchbox_qty = $cart_item['quantity'];
}
// Check if "Pakket" product is already in cart
if( $cart_item['data']->get_id() == $pakket_id ) {
$pakket_key = $cart_item_key;
$pakket_qty = $cart_item['quantity'];
}
}
// Get total items in cart, counts number of products and quantity per product
$total_items_in_cart = WC()->cart->get_cart_contents_count();
// If product "LunchBox" is in the cart, we check the quantity to update it if needed
if ( isset($lunchbox_key) && $lunchbox_qty != $total_items_in_cart ) {
// Lunchbox total = total_items_in_cart
$lunchbox_total = $total_items_in_cart;
// Isset lunchbox qty, lunchbox total - lunchbox qty
if ( isset($lunchbox_qty) ) {
$lunchbox_total = $lunchbox_total - $lunchbox_qty;
}
// Isset pakket qty, lunchbox total - pakket qty
if ( isset($pakket_qty) ) {
$lunchbox_total = $lunchbox_total - $pakket_qty;
}
// Set quantity, lunchbox
$cart->set_quantity( $lunchbox_key, $lunchbox_total );
} elseif ( !isset($lunchbox_key) && $total_items_in_cart > 0 ) {
// Product "LunchBox" is not in cart, we add it
$cart->add_to_cart( $lunchbox_id, $total_items_in_cart );
}
// Total items in cart greater than or equal to 3
if ( $total_items_in_cart >= 3 ) {
// Pakket total = total_items_in_cart
$pakket_total = $total_items_in_cart;
// Isset lunchbox qty, pakket total - lunchbox qty
if ( isset($lunchbox_qty) ) {
$pakket_total = $pakket_total - $lunchbox_qty;
}
// Isset pakket qty, pakket total - pakket qty
if ( isset($pakket_qty) ) {
$pakket_total = $pakket_total - $pakket_qty;
}
// Pakket total = pakket_total / 3 = floor(result)
// Floor = round fractions down, rounding result down
$pakket_total = floor( $pakket_total / 3 );
// If product "Pakket" is in cart
if ( isset($pakket_key) ) {
$cart->set_quantity( $pakket_key, $pakket_total );
} elseif ( !isset($pakket_key) ) {
// Product "Pakket" is not in cart, we add it
$cart->add_to_cart( $pakket_id, $pakket_total );
}
}
}
add_action( 'woocommerce_before_calculate_totals', 'add_delivery_charge_to_cart', 10, 1 );
По умолчанию упаковка автоматически добавляется ко всем продуктам. Но для меня это неправильно.
Мне нужно исключить определенные категории, такие как «Напиток» и «Хлеб», чтобы упаковка не добавлялась вместе с каждым продуктом из этих категорий.
I знаю, что можно добавить следующий код:
// Excluded product categories in this array (Can be IDs, slugs or names)
$excl_cats = array( 'drink', 'bread' );
и условия:
if( ! has_term( $excl_cats, 'product_cat', $product_id ) )
Только я не знаю, как правильно сделать это в приведенном выше коде.
Буду рад вашей помощи!