woocommerce_after_single_product_ordering action-hook . WC 1.0
When a single product has gotten it's ordering updated. $id The product ID $index The new menu order
Usage
add_action( 'woocommerce_after_single_product_ordering', 'action_function_name_5914', 10, 2 ); function action_function_name_5914( $id, $index ){ // action... }
- $id
- -
- $index
- -
Where the hook is called
woocommerce_after_single_product_ordering
woocommerce/includes/class-wc-ajax.php 1881
do_action( 'woocommerce_after_single_product_ordering', $id, $index );