Hi Darija,
1. Sorry but this is not possible. You can use another plugin for that.
2. Possible, follow the below steps:
– Install a code editor plugin WP Editor
– Follow screenshot
Code to be added into file:
function the_login_message( $message ) {
if ( empty($message) ){
$message = "<p style='color: white !important; text-align: center;'>If you want to log-in you have to Register first please make registration.
and make word <a href='".get_site_url()."/wp-login.php?action=register'>Registration</a> like link to registration pages?</p>";
return $message;
} else {
return $message;
}
}
add_filter( 'login_message', 'the_login_message' );
And let us know.
Thanks