WooCommerce中礼品类的强制兑换券

问题描述

我正在使用下面的函数,该函数当前接受单个(或数组)静态优惠券代码。我如何更改此设置以使其与网站中存在的任何有效(即未使用最大次数等)优惠券代码一起使用?

add_action( 'woocommerce_check_cart_items','mandatory_coupon_code' );

function mandatory_coupon_code() {
    $product_categories = array( 'gifts' ); // Category ID or slug of targeted category

    // NEED TO EDIT THIS PART TO GET THE LIST OF VALID CODES
    $coupon_code = 'testing1'; // 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 ){
        if( has_term( $product_categories,'product_cat',$cart_item['product_id'] ) && ! $coupon_applied ) {
            wc_clear_notices(); // Clear all other notices
            
            // Avoid checkout displaying an error notice
            wc_add_notice( sprintf( 'The product "%s" requires a valid redemption code for checkout.',$cart_item['data']->get_name() ),'error' );
        
            break; // stop the loop
        }
    }
}

编辑:

this link的评论和信息中,我尝试了下面的代码,但这不起作用:

add_action( 'woocommerce_check_cart_items','mandatory_coupon_code' );
function mandatory_coupon_code() {
    $product_categories = array( 'gifts' ); // Category ID or slug of targeted category
    $coupon_code = array();
    
    foreach ( $coupons as $coupon ) {
        $coupon_name = $coupon->post_title;
        array_push( $coupon_code,$coupon_name );
    }
    
    $coupon_applied = in_array( strtolower($coupon_code),WC()->cart->get_applied_coupons() );
    
    // Loop through cart items
    foreach ( WC()->cart->get_cart() as $cart_item ){
        if( has_term( $product_categories,$cart_item['product_id'] ) && ! $coupon_applied ) {
            wc_clear_notices(); // Clear all other notices
            // Avoid checkout displaying an error notice
            wc_add_notice( sprintf( 'The product "%s" requires a valid redemption code for checkout.','error' );
            break; // stop the loop
        }
    }
}

解决方法

由于wooCommerce在应用优惠券时已经在检查其有效性,如果无效,它会根据无效原因显示不同的警告消息,并删除无效的优惠券...

因此,您无需在代码中获取所有有效的优惠券……您只需要以下内容:

add_action( 'woocommerce_check_cart_items','mandatory_redemption_coupon_code_for_gifted_items' );
function mandatory_redemption_coupon_code_for_gifted_items() {
    $product_categories = array( 'gifts' ); // Term ID,slug or name of targeted category

    $applied_coupons    = WC()->cart->get_applied_coupons();
    
    // When no coupon has been applied
    if( empty($applied_coupons) ) {
        // Loop through cart items
        foreach ( WC()->cart->get_cart() as $item ){
            // Check for gifted items
            if( has_term( $product_categories,'product_cat',$item['product_id'] ) ) {
                wc_clear_notices(); // Clear all other notices
                
                // Avoid checkout displaying an error notice
                wc_add_notice( sprintf( 'The product "%s" requires a valid redemption code for checkout.',$item['data']->get_name() ),'error' );
                break; // stop the loop
            }
        }
    }
}

代码进入活动子主题(或活动主题)的functions.php文件中。经过测试,可以正常工作。

现在,如果需要特定的优惠券,您将进行自定义SQL查询,以检查是否有任何适用的优惠券可以兑换。

注意:在您的“修改”中,缺少优惠券查询,因此这是行不通的。

相关问答

错误1:Request method ‘DELETE‘ not supported 错误还原:...
错误1:启动docker镜像时报错:Error response from daemon:...
错误1:private field ‘xxx‘ is never assigned 按Alt...
报错如下,通过源不能下载,最后警告pip需升级版本 Requirem...