微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

移除Woocommerce结算页面字段

Woocommerce是wordpress上著名的购物插件,在客户进行结算的时候,需要用户填写很多的信息,消耗了客户大量的时间,并且很多信息对于国人来说都是无用信息,通过下面的方法您可以移除不需要的信息。

PHP">add_filter( 'woocommerce_checkout_fields','meediy_override_checkout_fields' );
function meediy_override_checkout_fields( $fields ) {
//需要移除的信息开始
//需要展示的一些信息请自行注释掉
    unset($fields['billing']['billing_first_name']);
    unset($fields['billing']['billing_last_name']);
    unset($fields['billing']['billing_company']);
    unset($fields['billing']['billing_address_1']);
    unset($fields['billing']['billing_address_2']);
    unset($fields['billing']['billing_city']);
    unset($fields['billing']['billing_postcode']);
    unset($fields['billing']['billing_country']);
    unset($fields['billing']['billing_state']);
    unset($fields['billing']['billing_phone']);
    unset($fields['order']['order_comments']);
    unset($fields['billing']['billing_email']);
    unset($fields['account']['account_username']);
    unset($fields['account']['account_password']);
    unset($fields['account']['account_password-2']);
//需要移除的信息结束
    return $fields;
}

根据我的注释信息修改就好了

原文地址:https://www.jb51.cc/wordpress/67625.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐