Hello,
Such a request is outside the scope of this plugins default functions. You would require a snippet to modify the field label. I haven’t tested the below, but something like the following would need pasted into your child’s theme functions.php file.
//Change Product Code for Woocommerce Field Label
function wc_product_code_strings( $translated_text, $text, $domain ) {
switch ( $translated_text ) {
case 'Product Code' :
$translated_text = __( 'Product Location', 'woocommerce' );
break;
}
return $translated_text;
}
add_filter( 'gettext', 'wc_product_code_strings', 20, 3 );
You would need to refer to a developer to assure proper coding for your installation. Such customizations are not part of the plugin’s native functions.
Hope this helps! Please leave a feedback if the plugin is helping out!