Вопрос

I would like to change my checkout page in Woocommerce, so instead of a dropdown Country menu and a dropdown State/Region menu, I have simple Input boxes just like Name, Address, etc.

I haven't figured out how to fix this without crashing woocommerce. Does anyone know how to change Country & State to work as normal input boxes?

Это было полезно?

Решение

You may want to take a look at Checkout Field Editor.

Другие советы

You can use

add_filter('woocommerce_billing_fields', 'billing_state_remove', 900, 1);
function billing_state_remove($fields)
{
    unset($fields['billing_state']);
    unset($fields['billing_country']);
};
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top