我正在寻找一种在 Woocommerce 网站上的总购物车金额上添加押金的方法(而不仅仅是向每个产品行项目添加押金)。
我在这里找到了这个巧妙线程的答案:存款基于购物车总金额的百分比
这是我最终使用的代码:
add_action( 'woocommerce_cart_calculate_fees', 'booking_deposit_calculation' );
function booking_deposit_calculation( $cart_object ) {
if ( is_admin() && ! defined( 'DOING_AJAX' ) )
return;
## Set HERE your negative percentage (to remove an amount from cart total)
$percent = -.50; // 50% off (negative)
// Get cart subtotal excluding taxes
$cart_subtotal = $cart_object->subtotal_ex_tax;
// or for subtotal including taxes use instead:
// $cart_subtotal = $cart_object->subtotal;
## ## CALCULATION ## ##
$calculated_amount = $cart_subtotal * $percent;
// Adding a negative fee to cart amount (excluding taxes)
$cart_object->add_fee( __('Deposit calculation', 'woocommerce'), $calculated_amount, false );
}
这将为购物车和结帐页面上的每个产品创建 50% 的默认押金。杰出的!(使用 CSS,我可以在前端设置描述的样式。)
但是,我有一些产品(一个产品类别)我不想强制进行此存款。
所以,这是我的问题:
我如何调整代码以继续强制执行默认存款,但从一个产品类别(或者如果我不能排除整个类别,则排除此类别中的产品)中的存款?