如何在WooCommerce中访问某个国家/地区的城市?

时间:2014-03-26 05:22:52

标签: wordpress woocommerce

woocommerce支持国家和州选择。我试图在woocommerce中使用WC_Countries类,但我没有看到任何相关的方法。是否有可能或者woocommerce不支持城市......?

1 个答案:

答案 0 :(得分:-2)

您可以在结帐WooCommerce时添加自定义字段。

传递给woocommerce_checkout_fields的数组中的完整字段列表:

计费

  • billing_first_name
  • billing_last_name
  • billing_company
  • billing_address_1
  • billing_address_2
  • billing_city
  • billing_postcode
  • billing_country
  • billing_state
  • billing_email
  • billing_phone

航运

  • shipping_first_name
  • shipping_last_name
  • shipping_company
  • shipping_address_1
  • shipping_address_2
  • shipping_city
  • shipping_postcode
  • shipping_country
  • shipping_state

帐户

  • account_username
  • account_password
  • account_password-2

顺序

  • order_comments

每个字段都包含一系列属性:

  • type - 字段类型(text,textarea,password,select)
  • label - 输入字段的标签
  • 占位符 - 输入的占位符
  • class - 输入类
  • 必需 - 无论是真还是假 字段是必需的
  • 清除 - 真或假,对其应用明确的修复 场/标签
  • label_class - 标签元素选项的类 - 用于 选择框,选项数组(键=>值对)

More info