Woocommerce - 删除购物车运输中的国家/地区字段 [英] Woocommerce - Remove country field in cart shipping

查看:28
本文介绍了Woocommerce - 删除购物车运输中的国家/地区字段的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

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

How would I have Australia selected by default and have the input field not displaying heres an example of what im talking about I am using woocommerce:

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

I'm sure there is a simple function for this or setting in the back end but can't seem to find a solution :(

推荐答案

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

Paste following code into your function.php file to Remove country field in checkout page:

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

这篇关于Woocommerce - 删除购物车运输中的国家/地区字段的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆