gpt4 book ai didi

php - 在 Woocommerce 的账单明细之前添加一个新的自定义结帐字段?

转载 作者:行者123 更新时间:2023-12-04 20:43:32 27 4
gpt4 key购买 nike

我可以将一组自定义字段添加到我的 WooCommerce 结帐屏幕,但需要将其移至“账单明细”上方。

如何做到这一点?

根据 this official WooCommerce documentation ,这是添加额外自定义结帐字段的示例代码:

/**
* Add the field to the checkout
*/
add_action( 'woocommerce_after_order_notes', 'my_custom_checkout_field' );

function my_custom_checkout_field( $checkout ) {

echo '<div id="my_custom_checkout_field"><h2>' . __('My Field') . '</h2>';

woocommerce_form_field( 'my_field_name', array(
'type' => 'text',
'class' => array('my-field-class form-row-wide'),
'label' => __('Fill in this field'),
'placeholder' => __('Enter something'),
), $checkout->get_value( 'my_field_name' ));

echo '</div>';

}

最佳答案

更新:结帐前只有一个可用的钩子(Hook)帐单字段,您可以使用它在结帐表单中添加自定义字段。试试这个完整的代码:

add_action( 'woocommerce_checkout_before_customer_details', 'custom_checkout_fields_before_billing_details', 20 );
function custom_checkout_fields_before_billing_details(){
$domain = 'woocommerce';
$checkout = WC()->checkout;

echo '<div id="my_custom_checkout_field">';

echo '<h3>' . __('My New Fields Section') . '</h3>';

woocommerce_form_field( '_my_field_name', array(
'type' => 'text',
'label' => __('My 1st new field', $domain ),
'placeholder' => __('Please fill in "my 1st new field"', $domain ),
'class' => array('my-field-class form-row-wide'),
'required' => true, // or false
), $checkout->get_value( '_my_field_name' ) );

echo '</div>';
}

// Custom checkout fields validation
add_action( 'woocommerce_checkout_process', 'custom_checkout_field_process' );
function custom_checkout_field_process() {
if ( isset($_POST['_my_field_name']) && empty($_POST['_my_field_name']) )
wc_add_notice( __( 'Please fill in "My 1st new field".' ), 'error' );
}

// Save custom checkout fields the data to the order
add_action( 'woocommerce_checkout_create_order', 'custom_checkout_field_update_meta', 10, 2 );
function custom_checkout_field_update_meta( $order, $data ){
if( isset($_POST['_my_field_name']) && ! empty($_POST['_my_field_name']) )
$order->update_meta_data( '_my_field_name', sanitize_text_field( $_POST['_my_field_name'] ) );
}

代码在您的事件子主题(或事件主题)的 function.php 文件中。经过测试并有效。

您将获得一个新的字段部分,其中包含您的新自定义字段(您也可以在其中有很多字段):

enter image description here


官方引用文档:Customizing checkout fields using actions and filters

关于php - 在 Woocommerce 的账单明细之前添加一个新的自定义结帐字段?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50257147/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com