1 回答

TA貢獻(xiàn)1852條經(jīng)驗(yàn) 獲得超1個(gè)贊
以下內(nèi)容會(huì)將您的自定義字段保存為訂單項(xiàng)元數(shù)據(jù)并在各處顯示:
// Save and display "shipping delay" on order items everywhere
add_filter( 'woocommerce_checkout_create_order_line_item', 'action_wc_checkout_create_order_line_item', 10, 4 );
function action_wc_checkout_create_order_line_item( $item, $cart_item_key, $values, $order ) {
// Get the shipping delay
$value = $values['data']->get_meta( 'shipping_delay_for_out_of_stock_items' );
if( ! empty( $value ) ) {
// Save it and display it
$item->update_meta_data( __( 'Shipping Delay', 'woocommerce' ), $value );
}
}
代碼位于活動(dòng)子主題(或活動(dòng)主題)的functions.php 文件中。經(jīng)過測(cè)試并有效。
- 1 回答
- 0 關(guān)注
- 144 瀏覽
添加回答
舉報(bào)