清除woocommerce中的结帐字段

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了清除woocommerce中的结帐字段相关的知识,希望对你有一定的参考价值。

我正在尝试删除各种结帐字段中的自动加载的用户信息,但似乎无法找到任何方式来访问字段值。我已经尝试了以下清除格式化,删除,字段等,但我找不到任何东西显示如何只删除值。有谁知道如何访问这个?

add_filter( 'woocommerce_checkout_fields' , 'custom_override_checkout_fields' );

function custom_override_checkout_fields( $fields ) {

$fields['billing']['billing_first_name']['placeholder'] = '';
$fields['billing']['billing_last_name']['value'] = '';
unset($fields['billing']['billing_company']);
return $fields;
}
答案

注册过滤器:

 add_filter( 'woocommerce_checkout_get_value' , 'clear_checkout_fields' );

添加此功能。所有字段都将为空。

 function clear_checkout_fields($input)
    {
        return '';
    }

以上是关于清除woocommerce中的结帐字段的主要内容,如果未能解决你的问题,请参考以下文章

使 Woocommerce (3.8.0) 管理员电子邮件包含结帐页面中的自定义字段数据

验证 WooCommerce 结帐页面中的附加复选框字段

Woocommerce 结帐中的电子邮件字段比较验证

从 CTP 添加自定义 WooCommerce 下拉结帐字段

根据 WooCommerce 中的自定义结帐单选按钮和文本字段设置动态费用

WooCommerce 中的动态同步自定义结帐选择字段