woocommerce_admin_order_totals_after_refunded, $order->get_id(
woocommerce_admin_order_totals_after_refunded, $order->get_id(
Appears in: woocommerce.11.0.0
Hook Type: action
Displaying hooks found in version: woocommerce.11.0.0do_action('woocommerce_admin_order_totals_after_refunded, $order->get_id(') is found 1 times:
- /includes/admin/meta-boxes/views/html-order-items.php line 278
<td width="1%"></td> <td class="total refunded-total">-<?php echo wc_price( $order->get_total_refunded(), array( 'currency' => $order->get_currency() ) ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?></td> </tr> <?php do_action( 'woocommerce_admin_order_totals_after_refunded', $order->get_id() ); ?> <tr> <td class="label label-highlight"><?php esc_html_e( 'Net Payment', 'woocommerce' ); ?>:</td> <td width="1%"></td> <td class="total"> <?php echo wc_price( $order->get_total() - $order->get_total_refunded(), array( 'currency' => $order->get_currency() ) ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>