在woocommerce结帐帐单字段上编辑值

时间:2018-06-21 09:40:02

标签: php wordpress woocommerce

因此,我想在结帐页面的名字姓氏字段中输入自定义值。 我可以使用此钩子来更改值旁边的所有字段属性:

// WooCommerce Checkout Fields Hook
add_filter( 'woocommerce_checkout_fields' , 'custom_wc_checkout_fields' );
// Change order comments placeholder and label, and set billing phone number to not required.
function custom_wc_checkout_fields( $fields ) {
    $fields['billing']['billing_last_name']['required'] = true;
    $fields['billing']['billing_last_name']['placeholder'] = 'whatever';
    $fields['billing']['billing_last_name']['value'] = 'not working';
    $fields['billing']['billing_first_name']['required'] = true;
    $fields['billing']['billing_first_name']['placeholder'] = 'whatever';
    $fields['billing']['billing_first_name']['value'] = 'not working';
    return $fields;
}

在他们的codex中,他们没有提及这样做的任何选择。 谢谢。

1 个答案:

答案 0 :(得分:0)

$ fields ['billing'] ['billing_first_name'] ['default'] ='正在工作';