Hi @narendrask
To change the string “Add New Product” to “Add New Note” you can try the below-mentioned PHP codes and add them inside the child theme function.php. After that replace the “Old String” and “New String here”.
add_filter('gettext', 'change_vendor_string');function change_vendor_string($translated) {$translated = str_ireplace('Old String', 'New String here', $translated);return $translated;}
I hope the code will help you to translate the string.
Cheers!
Hi @narendrask
Due to inactivity, we are marking this topic as resolved. Feel free to open a new one if you face any further issues.
Thanks!