woocommerce_order_partially_refunded_notification
woocommerce_order_partially_refunded_notification
Appears in: woocommerce.10.0.4, woocommerce.10.1.2, woocommerce.10.2.2, woocommerce.9.8.1, woocommerce.9.9.3, woocommerce.9.9.5
Hook Type: action
See hook in action
Displaying hooks found in version: woocommerce.9.9.5do_action('woocommerce_order_partially_refunded_notification') is found 1 times:
- /src/Internal/Orders/OrderActionsRestController.php line 474
break; case 'customer_refunded_order': if ( $this->order_is_partially_refunded( $order ) ) { /** This action is documented in includes/class-wc-emails.php */ do_action( 'woocommerce_order_partially_refunded_notification', $order->get_id() ); } else { /** This action is documented in includes/class-wc-emails.php */ do_action( 'woocommerce_order_fully_refunded_notification', $order->get_id() ); } break; // phpcs:enable WooCommerce.Commenting.CommentHooks.MissingSinceComment