WPML
add_filter( 'wcml_js_lock_fields_input_names', 'the_callback_function' );
Type
filter
Category
Updating Content
WooCommerce Multilingual Version
3.8

Description

Add or remove custom field input names that are locked on the WooCommerce native product editor of translated products.

Arguments

There is only one parameter passed to this filter:
$names
(array) The array including custom field input names.

Example usage

Example
/**
 * Add this code to the functions.php file of your theme.
 */
add_filter( 'wcml_js_lock_fields_input_names', 'add_js_lock_fields_input_names' );

function add_js_lock_fields_input_names( $names ){

	// Add 2 locked field input names
	$names[] = '_base_regular_price';
	$names[] = 'bto_style';

	return $names;
}

wcml_after_duplicate_product_post_meta, wcml_update_extra_fields, wcml_js_lock_fields_ids, wcml_js_lock_fields_classes, wcml_before_sync_product, wcml_before_sync_product_data

All 7 Updating Content hooks →