Display product optional cost in Woocommerce in order details
问题 Based on "Add a checkbox on single product pages that adds an additional cost in Woocommerce" answer code, I am trying to add an "extra warranty" option to my products (checkbox in product page): /* * add warrenty */ // Backend: Additional pricing option custom field add_action( 'woocommerce_product_options_pricing', 'wc_cost_product_field' ); function wc_cost_product_field() { woocommerce_wp_text_input( array( 'id' => '_warrenty_price', 'class' => 'wc_input_price short', 'label' => __(