1
我有很多自定義字段是我在訂單中創建的,我現在試圖在訂單完成時在謝謝頁面上訪問它們。如何從訂單中訪問自定義字段woocommerce
我看過this迴應,但它不適用於我。我做了一個var dump來查看$order->order_custom_fields
裏面有什麼,但我剛剛得到string(0) ""
我正在編輯這個文件order-details-customer.php如何訪問我的自定義字段?
這裏是我創造
woocommerce_form_field('destination_state', array(
'type' => 'text',
'class' => array('destination_state form-row-first'),
'label' => __('State'),
'required' => true,
), $checkout->get_value('destination_state'));