Woocommerce:设置结帐字段值

时间:2017-08-10 01:12:56

标签: php wordpress woocommerce field checkout

对于在我的系统中还不是WP用户的特殊客户群,我将他们引导到一个特殊页面,他们将从一组有限的产品中进行选择。我已经拥有了他们所有的信息,而且我将在此着陆页上预先填充。当他们验证了他们的信息后,它会将他们的产品添加到购物车并直接跳到结账处。到目前为止,我已经完成了所有这些工作。

我想要做的是使用我拥有的客户名称和结算信息预先填写结帐数据,并且我不完全确定如何执行此操作。但到目前为止我所得到的是:

    function onboarding_update_fields( $fields = array() ) {

      $token = ( ! empty( $_GET['token'] ) ) ? $_GET['token'] : '';   
      if( 'testtoken' == $token ) {          
        $fields['billing']['billing_first_name']['value'] = 'Joe';
        var_dump( $fields ); 
      }  
      return $fields;
     }

    add_filter( 'woocommerce_checkout_fields', 'onboarding_update_fields' );

如何更改结帐字段的值?上面的代码没有做到。把我指向一个正确的方向,我可以做其余的事。

我看了here,但我也找不到我想要的东西。

谢谢!

3 个答案:

答案 0 :(得分:5)

过滤器允许您修改信息,但您必须从您的函数中返回该信息。

因此,在这种情况下,您只是错过了函数中的return $fields;

function onboarding_update_fields( $fields = array() ) {
   // check if it's set to prevent notices being thrown
   $token = ( ! empty( $_GET['token'] ) ) ? $_GET['token'] : '';

   // yoda-style to prevent accidental assignment
   if( 'testtoken' == $token ) {
       // if you are having issues, it's useful to do this below:
       var_dump( $fields );
       // remove the var_dump once you've got things working

       // if all you want to change is the value, then assign ONLY the value
       $fields['billing']['billing_first_name']['value'] = 'Joe';
       // the way you were doing it before was removing core / required parts of the array - do not do it this way.
       // $fields['billing']['billing_first_name']['value'] = array( 'value' => 'Joe');

   }
   // you must return the fields array 
   return $fields;
}

add_filter( 'woocommerce_checkout_fields', 'onboarding_update_fields' );

<强>更新
在看到上面的某些原因之后上面的工作没有用,我在另一个插件上嗅了一些代码,然后他们他们这样做(它显然有用)就是这样:

function onboarding_update_fields( $fields = array() ) {
   $token = ( ! empty( $_GET['token'] ) ) ? $_GET['token'] : '';

   if( 'testtoken' == $token ) {
       // Assign the value to the $_POST superglobal
       $_POST['billing_first_name'] = 'Joe';
   }

   return $fields;
}

所以 - 为了肯定这没有覆盖/踩踏用户输入的信息,我可能会建议考虑做这样的事情(当然测试以确保它有效):

function onboarding_update_fields( $fields = array() ) {
   $token = ( ! empty( $_GET['token'] ) ) ? $_GET['token'] : '';

   if( 'testtoken' == $token ) {
       // Assign the value to the $_POST superglobal ONLY if not already set
       if ( empty( $POST['billing_first_name'] ) ) {
           $_POST['billing_first_name'] = 'Joe';
       }
   }

   return $fields;
}

答案 1 :(得分:4)

您应该使用这个专用的WooCommerce钩子,用于预先填写结帐字段并在WC_Checkout方法get_value()中定义:

add_filter( 'woocommerce_checkout_get_value', 'populating_checkout_fields', 10, 2 );
function populating_checkout_fields ( $value, $input ) {

    $token = ( ! empty( $_GET['token'] ) ) ? $_GET['token'] : '';

    if( 'testtoken' == $token ) {
        // Define your checkout fields  values below in this array (keep the ones you need)
        $checkout_fields = array(
            'billing_first_name'    => 'John',
            'billing_last_name'     => 'Wick',
            'billing_company'       => 'Murders & co',
            'billing_country'       => 'US',
            'billing_address_1'     => '7 Random street',
            'billing_address_2'     => 'Royal suite',
            'billing_city'          => 'Los Angeles',
            'billing_state'         => 'CA',
            'billing_postcode'      => '90102',
            'billing_phone'         => '555 702 666',
            'billing_email'         => 'jhon.wick@murders.com',
            'shipping_first_name'   => 'John',
            'shipping_last_name'    => 'Wick',
            'shipping_company'      => 'Murders & co',
            'shipping_country'      => 'USA',
            'shipping_address_1'    => '7 Random street',
            'shipping_address_2'    => 'Royal suite',
            'shipping_city'         => 'Los Angeles',
            'shipping_state'        => 'California',
            'shipping_postcode'     => '90102',
            // 'account_password'       => '',
            'order_comments'        => 'This is not for me',
        );
        foreach( $checkout_fields as $key_field => $field_value ){
            if( $input == $key_field && ! empty( $field_value ) ){
                $value = $field_value;
            }
        }
    }
    return $value;
}

代码放在活动子主题(或主题)的function.php文件中,或者放在任何插件文件中。

  

如果用户未登录,您可以在条件中另外添加:

 if( 'testtoken' == $token &&  ! is_user_logged_in() ) {

此代码已经过测试并可以正常运行(但未针对您的特定代码条件进行测试)。对于我的测试,我使用! is_user_logged_in()作为条件。

你将得到这个(对于函数中定义的数组):

enter image description here

答案 2 :(得分:2)

请使用&#39;默认&#39;,如:

$fields['billing']['billing_first_name']['default'] = "Thomas";

请参阅WooCommerce | Set billing field value