如何在WooCommerce结帐页面上显示自定义产品字段?

时间:2019-08-11 16:32:36

标签: php wordpress woocommerce hook-woocommerce

我正在尝试在结帐页面上显示自定义产品字段checkout_name,但似乎不知道如何显示。我正在关注here上的checkout hooks视觉指南。

add_action( 'woocommerce_checkout_before_customer_details', 'custom_before_checkout_form', 10 );
function custom_before_checkout_form( $cart_data ){
    $meta_key = 'checkout_name';

    $product_id = $cart_item['product_id'];

    $meta_value = get_post_meta( $product_id, $meta_key, true );

    if( !empty( $cart_data ) )
        $custom_items = $cart_data;

    if( !empty($meta_value) ) {
        $custom_items[] = array(
            'key'       => __('Store Name', 'woocommerce'),
            'value'     => $meta_value,
            'display'   => $meta_value,
        );
    }
    return $custom_items;
}

1 个答案:

答案 0 :(得分:1)

自定义结帐字段需要置于结帐表格中。如果不是,则字段值不会在提交时发布。

您的代码中也存在一些错误。

。在结算字段之前(假设存在自定义产品字段checkout_name的情况下),使用结帐表单内的钩子尝试以下操作。

add_action( 'woocommerce_checkout_before_customer_details', 'custom_before_checkout_form' ); 
function custom_before_checkout_form(){
    // Loop though cart items 
    foreach ( WC()->cart->get_cart() as $item ) { 
        // Get the WC_Product Object 
        $product = $item['data'];

        echo '<div align="center">' . $product->get_meta( 'checkout_name' ) . '</div><br>'; 
    }
}

代码进入活动子主题(或活动主题)的functions.php文件中。它应该更好地工作。