Skip Navigation
availability:

WooCommerce Multilingual Version: 3.8.1

description:

Run actions after loading the JavaScript code for locking fields on the translated product editor page (WooCommerce native editor).

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

This action has no parameter.

hook example usage:

Example

add_action( 'wcml_after_load_lock_fields_js', 'my_custom_action' );

function my_custom_action() {

	// my custom action

}