【问题标题】:Remove country & state dropdown in Woocommerce Checkout & replace with regular Input box删除 Woocommerce Checkout 中的国家和州下拉菜单并替换为常规输入框
【发布时间】:2014-04-26 17:10:03
【问题描述】:

我想在 Woocommerce 中更改我的结帐页面,所以我有简单的输入框,比如姓名、地址等,而不是下拉国家菜单和下拉状态/地区菜单。

我还没有想出如何在不使 woocommerce 崩溃的情况下解决此问题。 有谁知道如何将 Country & State 更改为正常输入框?

【问题讨论】:

    标签: woocommerce state checkout country


    【解决方案1】:

    您可能想看看Checkout Field Editor

    【讨论】:

    • 哇,效果很好。很简单。不知道它的存在。谢谢!!
    【解决方案2】:

    你可以使用

    add_filter('woocommerce_billing_fields', 'billing_state_remove', 900, 1);
    function billing_state_remove($fields)
    {
        unset($fields['billing_state']);
        unset($fields['billing_country']);
    };
    

    【讨论】:

    • 知道如何让这仅发生在特定国家吗?在我的例子中,state 字段没有显示在法国,但我需要它作为文本框可见,但法国的 state 字段根本不显示。
    猜你喜欢
    • 2019-05-09
    • 2021-02-06
    • 2017-12-17
    • 1970-01-01
    • 1970-01-01
    • 2011-12-16
    • 2011-01-07
    • 2011-10-13
    • 2010-11-17
    相关资源
    最近更新 更多