在Woocommerce中添加具有成人控制权的结帐出生日期必填字段

时间:2018-10-06 11:17:19

标签: php wordpress woocommerce checkout date-of-birth

我需要在Woocommerce的帐单明细中添加出生日期的必填字段,并检查他们是否18岁。

我该怎么办?

感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

以下代码添加了帐单出生日期字段,并将检查客户年龄,避免在未满18岁的情况下结帐:

// Adding a custom checkout date field
add_filter( 'woocommerce_billing_fields', 'add_birth_date_billing_field', 20, 1 );
function add_birth_date_billing_field($billing_fields) {

    $billing_fields['billing_birth_date'] = array(
        'type'        => 'date',
        'label'       => __('Birth date'),
        'class'       => array('form-row-wide'),
        'priority'    => 25,
        'required'    => true,
        'clear'       => true,
    );
    return $billing_fields;
}


// Check customer age
add_action('woocommerce_checkout_process', 'check_birth_date');
function check_birth_date() {
    // Check billing city 2 field
    if( isset($_POST['billing_birth_date']) && ! empty($_POST['billing_birth_date']) ){
        // Get customer age from birthdate
        $age = date_diff(date_create($_POST['billing_birth_date']), date_create('now'))->y;

        // Checking age and display an error notice avoiding checkout (and emptying cart)
        if( $age < 18 ){
            wc_add_notice( __( "You need at least to be 18 years old, to be able to checkout." ), "error" );

            WC()->cart->empty_cart(); // <== Empty cart (optional)
        }
    }
}

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

enter image description here