【发布时间】:2014-04-26 17:10:03
【问题描述】:
我想在 Woocommerce 中更改我的结帐页面,所以我有简单的输入框,比如姓名、地址等,而不是下拉国家菜单和下拉状态/地区菜单。
我还没有想出如何在不使 woocommerce 崩溃的情况下解决此问题。 有谁知道如何将 Country & State 更改为正常输入框?
【问题讨论】:
标签: woocommerce state checkout country
我想在 Woocommerce 中更改我的结帐页面,所以我有简单的输入框,比如姓名、地址等,而不是下拉国家菜单和下拉状态/地区菜单。
我还没有想出如何在不使 woocommerce 崩溃的情况下解决此问题。 有谁知道如何将 Country & State 更改为正常输入框?
【问题讨论】:
标签: woocommerce state checkout country
您可能想看看Checkout Field Editor。
【讨论】:
你可以使用
add_filter('woocommerce_billing_fields', 'billing_state_remove', 900, 1);
function billing_state_remove($fields)
{
unset($fields['billing_state']);
unset($fields['billing_country']);
};
【讨论】: