为了账号安全,请及时绑定邮箱和手机立即绑定

在 WooCommerce 中结帐时预定义的运输邮政编码验证

在 WooCommerce 中结帐时预定义的运输邮政编码验证

PHP
LEATH 2023-06-18 17:23:14
我希望达到的目标我试图在结帐时添加一个控件,确保在选择“运送到另一个地址”时提供正确的邮政编码。我的代码的问题我正在使用的代码没有任何反应。没有消息,什么都没有。无论如何都可以下订单。我的问题我的代码有什么问题或错误在哪里?到目前为止我的代码add_action( 'woocommerce_after_checkout_validation' , 'deny_outside_zone_message', 10, 2,);function deny_outside_zone_message( $fields, $errors ) {    // the accepted delivery zones    $del_zones_array = array('30030', '30032', '30033');    // check if the postal code (billing or shipping) if within the array    if (! in_array('shipping_postcode', $del_zones_array ) ) {    // if the postal is not within the array, deny checkout    echo "The ZIP you provided is not available for oneline deliveries.";    return;    }}
查看完整描述

1 回答

?
哈士奇WWW

TA贡献1799条经验 获得超6个赞

shipping_postcode未在您的代码中设置


// Validate

function action_woocommerce_after_checkout_validation( $data, $error ) {        

    // The accepted delivery zones

    $del_zones_array = array( 30030, 30032, 30033 );


    // If the postal is not within the array, deny checkout

    if( ! in_array( $data['shipping_postcode'], $del_zones_array ) ) {

        $error->add( 'validation', 'The ZIP you provided is not available for oneline deliveries.' );

    }

}

add_action('woocommerce_after_checkout_validation', 'action_woocommerce_after_checkout_validation', 10, 2 );



查看完整回答
反对 回复 2023-06-18
  • 1 回答
  • 0 关注
  • 111 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信