There are a few ways to do this. se whichever you prefer.
1) Simply copy theme-my-login/templates/register-form.php
to your current theme’s directory and remove/alter the following line:
<?php $template->the_action_template_message( 'register' ); ?>
2) Create an English translation of the provided theme-my-login.pot
file using Poedit. With this route, you can change any of the strings within the plugin. Assuming you are using the English language, you will name the file theme-my-login-en_US
.
3) Apply a callback to the provided ‘tml_action_template_message’ filter by creating a file called theme-my-login-custom.php
in your BASE /plugins
directory:
<?php
function tml_action_template_message_filter( $message, $action ) {
if ( 'register' == $action )
return 'My new message';
return $message;
}
add_filter( 'tml_action_template_message', tml_action_template_message_filter', 10, 2 );
?>