gpt4 book ai didi

php - 根据 Woocommerce 中的购物车项目运输类别计数更改运输类别

转载 作者:行者123 更新时间:2023-12-04 15:54:30 24 4
gpt4 key购买 nike

我在使用默认的 WooCommerce 运输类别设置时遇到了问题。我们有一个小网店,运费为 2。一种适用于适合邮箱的产品,另一种适用于不适合的产品。

我们想做一个设置,如果有 2 个产品具有邮箱运输等级,那么这个价格就变成了一个包裹价格。

现在默认 WooCommerce 仅收取 1 倍的邮箱运输费用。

最佳答案

首先,您需要在下面的屏幕中进行运输设置,对于“统一费率”运输方式和只有一个名为“邮箱”的运输类别(为“邮箱”或无运输类别设置所需的数量):

enter image description here

So some of your products will have the "Mailbox" shipping class and all others no shipping class. The products without shipping class (No shipping class) will be your "package.



如果有多个具有“邮箱”运输类别的元素,以下代码将删除购物车元素运输类别:
// Updating cart item price
add_action( 'woocommerce_before_calculate_totals', 'change_change_shipping_class', 30, 1 );
function change_change_shipping_class( $cart ) {
if ( ( is_admin() && ! defined( 'DOING_AJAX' ) ) )
return;

if ( did_action( 'woocommerce_before_calculate_totals' ) >= 2 )
return;

// HERE define your shipping class SLUG
$mailbox_shipping_class = 'mailbox';

$mailbox_count = 0;

// 1st cart item Loop: Counting "mailbox" shipping classes cart items
foreach ( $cart->get_cart() as $cart_item ) {
// Set the new price
if( $cart_item['data']->get_shipping_class() == $mailbox_shipping_class ) {
$mailbox_count += $cart_item['quantity'];
}
}

// If there is more than one item we continue
if( $mailbox_count <= 1 )
return; // Exit

// 2nd cart item Loop: Reset the cart items with shipping class "mailbox"
foreach ( $cart->get_cart() as $cart_item ) {
if( $cart_item['data']->get_shipping_class() == $mailbox_shipping_class ){
$cart_item['data']->set_shipping_class_id('0');
}
}
}

代码位于事件子主题(或事件主题)的 function.php 文件中。测试和工作。

关于php - 根据 Woocommerce 中的购物车项目运输类别计数更改运输类别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52328206/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com