better_messages_username_class
REQUIREMENTS
To be able to implement this guide, you need to learn how to use JS snippets at your website.
One of guides: https://dev.to/david_woolf/how-to-get-started-with-wordpress-hooks-in-javascript-400o
Compatibility
This filter compatible with Better Messages 2.1.3 or higher
wp.hooks.addFilter('better_messages_username_class', 'custom_action', function(classes){
classes += ' notranslate';
return classes;
});