Renamed Order Items 'Cost' column to 'Totals' for clarity
This commit is contained in:
parent
1c28c481e3
commit
143079c9e9
|
@ -346,7 +346,7 @@ function woocommerce_order_items_meta_box( $post ) {
|
|||
|
||||
<th class="quantity"><?php _e( 'Qty', 'woocommerce' ); ?></th>
|
||||
|
||||
<th class="line_cost"><?php _e( 'Cost', 'woocommerce' ); ?> <a class="tips" data-tip="<?php _e( 'Line subtotals are before pre-tax discounts, totals are after.', 'woocommerce' ); ?>" href="#">[?]</a></th>
|
||||
<th class="line_cost"><?php _e( 'Totals', 'woocommerce' ); ?> <a class="tips" data-tip="<?php _e( 'Line subtotals are before pre-tax discounts, totals are after.', 'woocommerce' ); ?>" href="#">[?]</a></th>
|
||||
|
||||
<?php if ( get_option( 'woocommerce_calc_taxes' ) == 'yes' ) : ?>
|
||||
<th class="line_tax"><?php _e( 'Tax', 'woocommerce' ); ?></th>
|
||||
|
@ -949,4 +949,4 @@ function woocommerce_process_shop_order_meta( $post_id, $post ) {
|
|||
delete_transient( 'woocommerce_processing_order_count' );
|
||||
}
|
||||
|
||||
add_action( 'woocommerce_process_shop_order_meta', 'woocommerce_process_shop_order_meta', 10, 2 );
|
||||
add_action( 'woocommerce_process_shop_order_meta', 'woocommerce_process_shop_order_meta', 10, 2 );
|
||||
|
|
Loading…
Reference in New Issue