重新排序Woocommerce结帐字段 [英] Reorder Woocommerce checkout fields

查看:98
本文介绍了重新排序Woocommerce结帐字段的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试在结帐页面上对计费字段进行重新排序,但是到目前为止,我尝试的所有方法都无法正常工作.

I am trying to reorder the billing fields on the checkout page but everything I tried so far is not working.

这是我当前正在尝试的代码段:

Here is the snippet I am currently trying:

add_filter("woocommerce_checkout_fields", "order_fields");

function order_fields($fields) {
  $order = array(
    "billing_first_name", 
    "billing_last_name", 
    "billing_country", 
    "billing_state", 
    "billing_address_1", 
    "billing_address_2", 
    "billing_email", 
    "billing_phone"
  );

  foreach($order as $field) {
    $ordered_fields[$field] = $fields["billing"][$field];
  }

  $fields["billing"] = $ordered_fields;
  return $fields;
}

有什么东西可以覆盖此代码片段,因为它曾经对我有用.

Could something be overriding this snippet, because it used to work for me.

推荐答案

您正在使用的方法不再起作用(因为WooCommerce 3.0.4更新-

The method you are using no longer works (since the WooCommerce 3.0.4 update - link to github issue here). It's not exactly a bug, but rather a change of spec.

要解决此问题,您只需要调整每个字段的优先级以适合所需的顺序即可.

To fix this, you simply need to adjust the priority of each of the fields to fit the order that you want.

add_filter("woocommerce_checkout_fields", "custom_override_checkout_fields", 1);
function custom_override_checkout_fields($fields) {
    $fields['billing']['billing_first_name']['priority'] = 1;
    $fields['billing']['billing_last_name']['priority'] = 2;
    $fields['billing']['billing_company']['priority'] = 3;
    $fields['billing']['billing_country']['priority'] = 4;
    $fields['billing']['billing_state']['priority'] = 5;
    $fields['billing']['billing_address_1']['priority'] = 6;
    $fields['billing']['billing_address_2']['priority'] = 7;
    $fields['billing']['billing_city']['priority'] = 8;
    $fields['billing']['billing_postcode']['priority'] = 9;
    $fields['billing']['billing_email']['priority'] = 10;
    $fields['billing']['billing_phone']['priority'] = 11;
    return $fields;
}

add_filter( 'woocommerce_default_address_fields', 'custom_override_default_locale_fields' );
function custom_override_default_locale_fields( $fields ) {
    $fields['state']['priority'] = 5;
    $fields['address_1']['priority'] = 6;
    $fields['address_2']['priority'] = 7;
    return $fields;
}

请注意,不是代码中的行会调整订单的位置,而是分配给该字段的优先级.在这种情况下,我将['billing_state']优先级更改为5,在['billing_country']之后和['billing_address_1']之前是(在本示例中为 ).

Please note that it's not the line in code that adjusts the placement in the order, but the priority assigned to the field. In this case, I changed the ['billing_state'] priority to 5 which is (in this example) after ['billing_country'] and before ['billing_address_1'].

根据评论,由于某种原因,该方法不起作用(在我的第一个测试WooCommerce安装中起作用,但是在更改商店位置后,我设法使它失败了).

As per the comments, this wasn't working for some reason (it worked on my first test WooCommerce installation, but I managed to get it to fail after changing the store location).

经过一番挖掘,我发现默认的语言环境设置被应用在覆盖的顶部(不知道该如何解释,但请耐心).

After some digging, I found that the default locale settings get applied on top of the override (not sure how else to explain this, but bear with me).

我设法在上述代码无法正常工作的情况下运行了安装程序,并设法通过添加以下代码对其进行了修复:

I managed to get an install running where the above code was not working, and managed to fix it by adding the following code as well:

add_filter( 'woocommerce_default_address_fields', 'custom_override_default_locale_fields' );
function custom_override_default_locale_fields( $fields ) {
    $fields['state']['priority'] = 5;
    $fields['address_1']['priority'] = 6;
    $fields['address_2']['priority'] = 7;
    return $fields;
}

我在第一个代码块中添加了额外的代码段,以验证整个代码块.

I have added the extra snippet to the first code block to validate the entire block.

这篇关于重新排序Woocommerce结帐字段的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

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