|
get_image( 'shop_thumbnail', array( 'title' => '' ) ); ?>
|
get_sku() ) ? esc_html( $_product->get_sku() ) . ' – ' : ''; ?>
has_meta( $item_id ) ) {
echo ' ';
}
?>
|
get_qty_refunded_for_item( $item_id ) ) {
printf( '' . __( 'Refunded %d' ) . '', $refunded_qty );
}
?>
|
' . wc_price( $item['line_subtotal'] ) . ' ';
}
echo wc_price( $item['line_total'] );
}
if ( $refunded = $order->get_total_refunded_for_item( $item_id ) ) {
printf( '' . __( 'Refunded %s' ) . '', wc_price( $refunded ) );
}
?>
|
' . wc_price( wc_round_tax_total( $tax_item_subtotal ) ) . ' ';
}
echo wc_price( wc_round_tax_total( $tax_item_total ) );
} else {
echo '–';
}
if ( $refunded = $order->get_tax_refunded_for_item( $item_id, $tax_item_id ) ) {
printf( '' . __( 'Refunded %s' ) . '', wc_price( $refunded ) );
}
?>
|
|