Hello,
You can use the following custom code that excludes strings with an identical pattern:
add_filter('trp_skip_strings_containing_key_terms', 'trpc_exclude_strings_containing_certain_key_words' );
function trpc_exclude_strings_containing_certain_key_words($array){
$array[] = array(
'terms'=> array( 'tmcp_textfield_' ),
'operator' => 'or'
);
return $array;
}
- Install this plugin via FTP (copy it inside wp-content/plugins) or create a zip archive with it and install it via the WordPress plugin upload functionality
You can modify this code at any time by adding any pattern of the strings you wish to exclude from translation.
You can add the custom code first on a staging site to check how it works for you.
Let me know how this goes.
Kind Regards,
Anca