2017-05-09 13 views
-2

こんにちは、私はワードプレスサイトを働いています。どのように郵便番号のための静的なドロップダウンを追加する方法を教えてもらえますか。私は配送のために特定の場所のみを追加する必要があるため、顧客が入力した場所が配送可能かどうかを確認し、配送には使用できません。woocommerceで郵便番号の静的ドロップダウンを追加する

'postcode' => array(
      'label'  => __('Postcode/ZIP', 'woocommerce'), 
      'required'  => true, 
      'class'  => array('form-row-wide', 'address-field'), 
      'validate'  => array('postcode'), 
      'autocomplete' => 'postal-code', 
      'priority'  => 90, 
     ), 

答えて

2

woocommerceに静的ドロップダウンを追加することができます。

'postcode' => array(
      'label'  => __('Area (Delivery only applicable for area locations listed below ) ', 'woocommerce'), 
      'required'  => true, 
      'class'  => array('form-row-wide', 'address-field'), 
      'validate'  => array('postcode'), 
      'autocomplete' => 'postal-code', 
      'priority'  => 90, 
      'required'  => true, 
      'type'   =>'select', 
      'options'  =>array('opt1' => "Arekere", "Gottegere", "Billekhalli", "BTM Layout", "Puttenhalli", "Vijaya Bank Layout", "Hulimeavu", "JP Nagar", "Deverchekalli", "Kodichinalkalli", "Akshay Nagar", "DLF New Town", "SNN Raj Serenity") 

     ),