woocommerce_admin_order_totals_after_discount action-hookWC 1.0

Usage

add_action( 'woocommerce_admin_order_totals_after_discount', 'wp_kama_woocommerce_admin_order_totals_after_discount_action' );

/**
 * Function for `woocommerce_admin_order_totals_after_discount` action-hook.
 * 
 * @param  $order_id 
 *
 * @return void
 */
function wp_kama_woocommerce_admin_order_totals_after_discount_action( $order_id ){

	// action...
}
$order_id
-

Where the hook is called

In file: /includes/admin/meta-boxes/views/html-order-items.php
woocommerce_admin_order_totals_after_discount
woocommerce/includes/admin/meta-boxes/views/html-order-items.php 183
<?php do_action( 'woocommerce_admin_order_totals_after_discount', $order->get_id() ); ?>

Where the hook is used in WooCommerce

Usage not found.