Skip to content Skip to sidebar
availability:

WooCommerce Multilingual Version: 3.9

description:

Run actions during WPML AJAX requests.

type:
action
category:
Miscellaneous
parameters:
add_action( 'wcml_localize_woocommerce_on_ajax', 'the_callback_function' );

This action has no parameters.

hook example usage:

Example

1
2
3
4
5
6
7
add_action( 'wcml_localize_woocommerce_on_ajax', 'my_custom_action' );
 
function my_custom_action() {
 
    // my custom action
 
}