better_messages_login_url
REQUIREMENTS
To be able to implement this guide, you need to learn how to insert PHP snippets to your website.
You can find guide here: WP Beginner
Compatibility
This filter compatible with Better Messages 2.0.69 or higher
This filter allows to overwrite login url which is used to display in chat rooms and some other places.
add_filter('better_messages_login_url', function( $url ){
return 'https://google.com';
}, 10, 1 );