woocommerce_cart_totals_before_shipping

How to use?


// run the action in the functions.php file or plugin file.
do_action( 'woocommerce_cart_totals_before_shipping' );

Callback function


function dcs_action_woocommerce_cart_totals_before_shipping(  ) { 
    // your actions here... 
}; 
         
// add the action 
add_action( 'woocommerce_cart_totals_before_shipping', 'dcs_action_woocommerce_cart_totals_before_shipping', 10, 0 ); 

How to remove hook?


// remove the action of this hook
remove_action( 'woocommerce_cart_totals_before_shipping' ); 

Any comment?

Your email address will not be published. Required fields are marked *

*

*