woocommerce_ajax_save_product_variations
The WooCommerce woocommerce ajax save product variations hook.
Description
Parameters (1)
- 0. $product_id (unknown)
- The product id.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'woocommerce_ajax_save_product_variations', $product_id );
- The following example is for adding a hook callback.
- // define the woocommerce_ajax_save_product_variations callback
- function action_woocommerce_ajax_save_product_variations( $product_id ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'woocommerce_ajax_save_product_variations', 'action_woocommerce_ajax_save_product_variations', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'woocommerce_ajax_save_product_variations', 'action_woocommerce_ajax_save_product_variations', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /includes/class-wc-ajax.php
- do_action( 'woocommerce_ajax_save_product_variations', $product_id );