1

我正在使用 woocommerce 预订,我需要为预订生成优惠券限制。

我所有的预订都有一小时的持续时间,客户可以使用优惠券来降低预订成本,但我需要根据预订的使用日期限制使用此优惠券,而不是生成预订的日期.

例如,我有一张优惠券,我在星期一预订了星期六的房间,那么,优惠券一定不好。但是,例如,如果我尝试在一周中的任何一天预订下周一的房间,则优惠券必须是好的。

在这种情况下,我需要限制周末的使用。

到目前为止,我的代码是:

add_filter( 'woocommerce_coupon_is_valid', 'coupon_week_days_check', 10, 2);
 function coupon_week_days_check( $valid, $coupon ) {

     // Set HERE your coupon slug   <===  <===  <===  <===  <===  <===  <===  <===  <===  <===
     $coupon_code_wd = 'couponyes';
     // Set HERE your defined invalid days (others: 'Mon', 'Tue', 'Wed', 'Thu', 'Fri' )  <===  <===
     $invalid_days = array( 'Sat', 'Sun');

     $now_day = date ( 'D' ); // Now day in short format

     // WooCommerce version compatibility
     if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
         $coupon_code = strtolower($coupon->code); // Older than 3.0
     } else {
         $coupon_code = strtolower($coupon->get_code()); // 3.0+
     }

     // When 'xyz' is set and if is not a week day we remove coupon and we display a notice
     if( $coupon_code_wd == $coupon_code && in_array($now_day, $invalid_days) ){
         // if not a week day
         $valid = false;
     }
     return $valid;
 }

任何的想法?

4

1 回答 1

0

在添加到购物车操作中提交时,您需要针对预订“开始日期”的稍微不同的代码。所以试试这个:

// Utility function to check coupon code 'abcxxr'
function check_coupon_code( $coupon ){
    // Set HERE your coupon slug
    $coupon_code_wd = 'abcxxr';

    $coupon_code = strtolower($coupon->get_code()); // WC 3.0+
    $coupon_code_wd = strtolower($coupon_code_wd);
    $found = false;

    // Loop through cart items to get the chosen day and check it
    foreach( WC()->cart->get_cart() as $cart_item ){
        if( $coupon_code_wd == $coupon_code && isset( $cart_item['booking']['_date'] ) ){
            $the_day = date('D' , strtotime($cart_item['booking']['_date']));
            if( in_array( $the_day, array('Sat', 'Sun') ) ){
                $found = true;
            }
        }
    }
    return $found;
}

// Coupon validity checking
add_filter( 'woocommerce_coupon_is_valid', 'coupon_week_days_check', 10, 2);
function coupon_week_days_check( $valid, $coupon ) {
    if( check_coupon_code( $coupon ) ){
        $valid = false;
    }
    return $valid;
}

// Coupon validity checking error message
add_filter('woocommerce_coupon_error', 'coupon_week_days_error_message', 10, 3);
function coupon_week_days_error_message( $err, $err_code, $coupon ) {
    if( intval($err_code) === WC_COUPON::E_WC_COUPON_INVALID_FILTERED && check_coupon_code( $coupon ) ) {
        $err = __( "This coupon $coupon_code_wd is valid for week days only…", "woocommerce" );
    }
    return $err;
}

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

于 2018-05-08T14:23:49.343 回答