第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

在 WooCommerce 中結(jié)帳時(shí)預(yù)定義的運(yùn)輸郵政編碼驗(yàn)證

在 WooCommerce 中結(jié)帳時(shí)預(yù)定義的運(yùn)輸郵政編碼驗(yàn)證

PHP
LEATH 2023-06-18 17:23:14
我希望達(dá)到的目標(biāo)我試圖在結(jié)帳時(shí)添加一個(gè)控件,確保在選擇“運(yùn)送到另一個(gè)地址”時(shí)提供正確的郵政編碼。我的代碼的問(wèn)題我正在使用的代碼沒有任何反應(yīng)。沒有消息,什么都沒有。無(wú)論如何都可以下訂單。我的問(wèn)題我的代碼有什么問(wèn)題或錯(cuò)誤在哪里?到目前為止我的代碼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貢獻(xiàn)1799條經(jīng)驗(yàn) 獲得超6個(gè)贊

shipping_postcode未在您的代碼中設(shè)置


// 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 );



查看完整回答
反對(duì) 回復(fù) 2023-06-18
  • 1 回答
  • 0 關(guān)注
  • 144 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)