首页 文章

根据国家/地区对特定Woocommerce结帐字段的优先级进行排序

提问于
浏览
1

在Woocommerce中,我需要在结帐页面上设置三个字段的默认排序优先级(排序):

第一个更改取决于 'IT' 国家/地区代码的选择:

  • 邮政编码 - 'priority' => 91,

其他两个没有条件,我只需要设置默认优先级:

  • billing_email - 'priority' => 30,

  • billing_phone - 'priority' => 40,

通过直接编辑文件,class-wc-countries.php核心文件如下所示,我得到了我需要的东西 . 但很明显,在插件的每次更新中,我都会失去更改 .

现在我正在寻找一个钩子,以一种干净的方式完成这个 .

class-wc-countries.php(约935行)来自:

IT' => array(
    'postcode' => array(
        'priority' => 65, // <============= HERE
    ),
    'state'    => array(
    'required' => true,
    'label'    => __( 'Province', 'woocommerce' ),
    ),
),

我将'priority'值从 65 更改为 91

IT' => array(
    'postcode' => array(
        'priority' => 91, // <============= HERE
    ),
    'state'    => array(
    'required' => true,
    'label'    => __( 'Province', 'woocommerce' ),
    ),
),

并且在1203的第120行:

// Add email and phone fields.
  if ( 'billing_' === $type ) {
      $address_fields['billing_phone'] = array(
          'label'        => __( 'Phone', 'woocommerce' ),
          'required'     => true,
          'type'         => 'tel',
          'class'        => array( 'form-row-wide' ),
          'validate'     => array( 'phone' ),
          'autocomplete' => 'tel',
          'priority'     => 100, // <============= HERE
      );
      $address_fields['billing_email'] = array(
          'label'        => __( 'Email address', 'woocommerce' ),
          'required'     => true,
          'type'         => 'email',
          'class'        => array( 'form-row-wide' ),
          'validate'     => array( 'email' ),
          'autocomplete'=>'no'===get_option
              ('woocommerce_registration_generate_username' )
              ? 'email' : 'email username',
          'priority'     => 110, // <============= HERE
       );
    }

我将'priority'值更改为:

// Add email and phone fields.
  if ( 'billing_' === $type ) {
      $address_fields['billing_phone'] = array(
          'label'        => __( 'Phone', 'woocommerce' ),
          'required'     => true,
          'type'         => 'tel',
          'class'        => array( 'form-row-wide' ),
          'validate'     => array( 'phone' ),
          'autocomplete' => 'tel',
          'priority'     => 40, // <============= HERE
      );
      $address_fields['billing_email'] = array(
          'label'        => __( 'Email address', 'woocommerce' ),
          'required'     => true,
          'type'         => 'email',
          'class'        => array( 'form-row-wide' ),
          'validate'     => array( 'email' ),
          'autocomplete'=>'no'===get_option
              ('woocommerce_registration_generate_username' )
              ? 'email' : 'email username',
          'priority'     => 30, // <============= HERE
       );
    }

任何帮助表示赞赏 .

1 回答

  • 2

    使用可用的过滤器挂钩,您可以在不覆盖核心文件的情况下进行更改...

    第一个更改是使用此挂钩的佣人(对于"IT"国家/地区代码):

    add_filter('woocommerce_get_country_locale', 'custom__country_locale', 30, 1 );
    function wps_select_order_meta_keys( $locale ) {
        $locale['IT']['postcode']['priority'] = 91;
        return $locale;
    }
    

    第二次改变 you need also to change the class . 它与您在回答其他问题时已经拥有的代码相同,但不删除此行:

    if( ! is_account_page() ) return $fields;
    

    代码是:

    add_filter(  'woocommerce_billing_fields', 'custom_billing_fields', 20, 1 );
    function custom_billing_fields( $fields ) {
    
        ## ---- 1.  Sort billing email and phone fields ---- ##
    
        $fields['billing_email']['priority'] = 30;
        $fields['billing_email']['class'] = array('form-row-first');
        $fields['billing_phone']['priority'] = 40;
        $fields['billing_phone']['class'] = array('form-row-last');
    
        return $fields;
    }
    

    所以如果你删除if(!is_account_page())返回$ fields;从我的其他答案中的代码,它也将在结帐页面上工作(如已经指出的那样)......

    所以你可以使用(对于帐户和结帐页面):

    add_filter(  'woocommerce_default_address_fields', 'custom_default_address_fields', 20, 1 );
    function custom_default_address_fields( $fields ) {
    
        ## ---- 1.  Remove 'address_2' field ---- ##
    
        unset($fields['address_2']);
    
        ## ---- 2.  Sort Address fields ---- ##
    
        // Set the order (sorting fields) in the array below
        $sorted_fields = array('first_name','last_name','company','address_1','country','postcode','city','state');
    
        $new_fields = array();
        $priority = 0;
    
        // Reordering billing and shipping fields
        foreach($sorted_fields as $key_field){
            $priority += 10;
    
            if( $key_field == 'company' )
                $priority += 20; // keep space for email and phone fields
    
            $new_fields[$key_field] = $fields[$key_field];
            $new_fields[$key_field]['priority'] = $priority;
        }
        return $new_fields;
    }
    

    代码位于活动子主题(或活动主题)的function.php文件中 . 经过测试和工作 .

相关问题