Woocommerce - 删除购物车运输中的国家/地区字段

时间:2015-04-12 11:36:51

标签: wordpress woocommerce

我如何在默认情况下选择澳大利亚并且输入字段不显示继承人的一个例子我在谈论我正在使用woocommerce:

enter image description here

我确定在后端有一个简单的功能或设置,但似乎无法找到解决方案:(

3 个答案:

答案 0 :(得分:6)

将以下代码粘贴到您的function.php文件中,在结帐页面中删除国家/地区字段:

function custom_override_checkout_fields( $fields )    
{
unset($fields['billing']['billing_country']);
return $fields;
}
add_filter('woocommerce_checkout_fields','custom_override_checkout_fields');

答案 1 :(得分:4)

您可以将商店设置为仅在WooCommerce设置>中出售给澳大利亚。 “特定国家/地区”字段中的常规设置

restrict the countries you will sell to

这应该从结帐中删除Country选项。在上面的设置中设置“澳大利亚”这里的结果是Twenty Fourteen:

checkout with no country option

答案 2 :(得分:0)

有点晚了,但是对于那些寻找正确答案的人来说还是

// Remove Country field from shipping calculator
add_filter('woocommerce_shipping_calculator_enable_country','__return_false');