woocommerce_after_single_variation
Woocommerce_after_single_variation Hook.
Description
do_action( 'woocommerce_after_single_variation' );
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'woocommerce_after_single_variation' );
- The following example is for adding a hook callback.
- // define the woocommerce_after_single_variation callback
- function action_woocommerce_after_single_variation( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'woocommerce_after_single_variation', 'action_woocommerce_after_single_variation', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'woocommerce_after_single_variation', 'action_woocommerce_after_single_variation', 10, 0 );
Defined (1)
The action is defined in the following location(s).
- /templates/single-product/add-to-cart/variable.php
- do_action( 'woocommerce_after_single_variation' );