Get order subtotal value in WooCommerce
问题 I use the module for calculating delivery by local carrier, but the module don't calculate shipping costs to the total. In the wp-content/plugins/woocommerce/templates/order/order-details.php I added the following code to take the amount of shipping and subtotal: <?php $a = array( get_post_meta($order_id, 'Order_subtotal', true), get_post_meta($order_id, 'Econt_Customer_Shipping_Cost', true)); ?> <tr class="total-cost"> <th><?php _e( 'Total:', 'woocommerce'); ?></th> <td><?php echo array_sum(