Shipping should be displayed before fees
This commit is contained in:
parent
414bc4e314
commit
559ff43c42
|
@ -67,14 +67,6 @@ if ( 'yes' == get_option( 'woocommerce_calc_taxes' ) ) {
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
</tbody>
|
</tbody>
|
||||||
<tbody id="order_fee_line_items">
|
|
||||||
<?php
|
|
||||||
$order_items = $order->get_items( 'fee' );
|
|
||||||
foreach ( $order_items as $item_id => $item ) {
|
|
||||||
include( 'html-order-fee.php' );
|
|
||||||
}
|
|
||||||
?>
|
|
||||||
</tbody>
|
|
||||||
<tbody id="order_shipping_line_items">
|
<tbody id="order_shipping_line_items">
|
||||||
<?php
|
<?php
|
||||||
$order_items = $order->get_items( 'shipping' );
|
$order_items = $order->get_items( 'shipping' );
|
||||||
|
@ -84,6 +76,14 @@ if ( 'yes' == get_option( 'woocommerce_calc_taxes' ) ) {
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
</tbody>
|
</tbody>
|
||||||
|
<tbody id="order_fee_line_items">
|
||||||
|
<?php
|
||||||
|
$order_items = $order->get_items( 'fee' );
|
||||||
|
foreach ( $order_items as $item_id => $item ) {
|
||||||
|
include( 'html-order-fee.php' );
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
</tbody>
|
||||||
<tbody id="order_refunds">
|
<tbody id="order_refunds">
|
||||||
<?php
|
<?php
|
||||||
if ( $refunds = $order->get_refunds() ) {
|
if ( $refunds = $order->get_refunds() ) {
|
||||||
|
|
Loading…
Reference in New Issue