woocommerce_order_subtotal_to_display filter-hook . WC 1.0
Usage
add_filter( 'woocommerce_order_subtotal_to_display', 'filter_function_name_7521', 10, 3 ); function filter_function_name_7521( $subtotal, $compound, $that ){ // filter... return $subtotal; }
- $subtotal
- -
- $compound
- -
- $that
- -
Where the hook is called
woocommerce_order_subtotal_to_display
woocommerce/includes/abstracts/abstract-wc-order.php 1961
return apply_filters( 'woocommerce_order_subtotal_to_display', $subtotal, $compound, $this );