我正在 WooCommerce 网站上工作,我试图限制仅在申请优惠券时才购买产品,因此在不添加优惠券代码的情况下不应对其进行处理。
用户必须输入优惠券代码才能订购该特定产品(不适用于所有其他产品)。
我们不需要它来定位特定优惠券以允许结账,我们需要它来要求任何优惠券,因为对于这个特定产品,我们有大约 150 多张优惠券。
基于 仅在 Woocommerce 中应用优惠券时才允许购买特定产品代码线程:
add_action( 'woocommerce_check_cart_items', 'mandatory_coupon_for_specific_items' );
function mandatory_coupon_for_specific_items() {
$targeted_ids = array(37); // The targeted product ids (in this array)
$coupon_code = 'summer2'; // The required coupon code
$coupon_applied = in_array( strtolower($coupon_code), WC()->cart->get_applied_coupons() );
// Loop through cart items
foreach(WC()->cart->get_cart() as $cart_item ) {
// Check cart item for defined product Ids and applied coupon
if( in_array( $cart_item['product_id'], $targeted_ids ) && ! $coupon_applied ) {
wc_clear_notices(); // Clear all other notices
// Avoid checkout displaying an error notice
wc_add_notice( sprintf( 'The product"%s" requires a coupon for checkout.', $cart_item['data']->get_name() ), 'error' );
break; // stop the loop
}
}
}
处理方法:购物车内某些商品未使用优惠券则无法结账。
这只是删除或调整一些条件的问题。例如,检查是否已应用优惠券
所以你得到:
function action_woocommerce_check_cart_items() {
// The targeted product ids (in this array)
$targeted_ids = array( 813, 30 );
// Get applied coupons
$coupon_applieds = WC()->cart->get_applied_coupons();
// Empty coupon applieds
if ( empty ( $coupon_applieds ) ) {
// Loop through cart items
foreach( WC()->cart->get_cart() as $cart_item ) {
// Check cart item for defined product Ids
if ( in_array( $cart_item['product_id'], $targeted_ids ) ) {
// Clear all other notices
wc_clear_notices();
// Avoid checkout displaying an error notice
wc_add_notice( sprintf( 'The product "%s" requires a coupon for checkout.', $cart_item['data']->get_name() ), 'error' );
// Optional: remove proceed to checkout button
remove_action( 'woocommerce_proceed_to_checkout', 'woocommerce_button_proceed_to_checkout', 20 );
// Break loop
break;
}
}
}
}
add_action( 'woocommerce_check_cart_items' , 'action_woocommerce_check_cart_items', 10, 0 );
我尝试了上面的代码,但它不起作用。
我禁用了购物车,客户购买并直接结帐。 如果没有有效凭证,我只想阻止一种产品的付款。
如何存档?