调整Woocommerce结算页面字段顺序

前端之家收集整理的这篇文章主要介绍了调整Woocommerce结算页面字段顺序前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

上一篇文章中我们介绍了如何移除Woocommerce结算页面中无用的一些字段,很多时候Woocommerce中留下的字段显示的顺序并不是我们想要的,那么这时候我们就需要想办法来调整结算页面的字段顺序。

移除Woocommerce结算<a href=页面字段" title="移除Woocommerce结算页面字段">

页面字段" target="_blank" style="font-size:15px">移除Woocommerce结算页面字段

Woocommerce是wordpress上著名的购物插件,在客户进行结算的时候,需要用户填写很多的信息,消耗了客户大量…

代码如下:

PHP">add_filter( 'woocommerce_billing_fields','meediy_billing_fields_custom' );
function meediy_billing_fields_custom( $fields ) {
    $fields['billing_first_name']['priority'] = 33;
    $fields['billing_phone']['priority'] = 37;
    $fields['billing_country']['priority'] = 42;
    $fields['billing_state']['priority'] = 55;
    $fields['billing_address_1']['priority'] = 100;
    return $fields;
}

后面的数字越大,显示越靠后

原文链接:/wordpress/67624.html

猜你在找的wordpress相关文章