woocommerce_after_variations_table
Hook: woocommerce_after_variations_table.
Usage
add_action( 'woocommerce_after_variations_table', 'wp_kama_woocommerce_after_variations_table_action' );
/**
* Function for `woocommerce_after_variations_table` action-hook.
*
* @return void
*/
function wp_kama_woocommerce_after_variations_table_action(){
// action...
}Changelog
| Since 10.0.0 | Introduced. |
Where the hook is called
woocommerce_after_variations_table
woocommerce/src/Blocks/BlockTypes/AddToCartWithOptions/AddToCartWithOptions.php 394
do_action( 'woocommerce_after_variations_table' );
woocommerce/templates/single-product/add-to-cart/variable.php 63
<?php do_action( 'woocommerce_after_variations_table' ); ?>