Make WordPress Core

Opened 18 years ago

Closed 17 years ago

Last modified 17 years ago

#6727 closed enhancement (invalid)

Registration form message

Reported by: chaoticmortalcom's profile chaoticmortalcom Owned by:
Milestone: Priority: normal
Severity: normal Version:
Component: General Keywords:
Focuses: Cc:

Description

Instead of the current message for registering, (A password will be emailed to you.), is is possible to change it to "A password will be emailed to you, and you can change it the next time you are logged in" or etc.?

Change History (2)

#1 @MattyRob
17 years ago

  • Resolution set to invalid
  • Status changed from new to closed

You can change it to whatever you like using the API hooks, write your own plugin as follows:

<?php
function my_reg_message() {
echo "<p>My message here</p>";
}
add_action('register_form', 'my_reg_message');
?>

#2 @thee17
17 years ago

  • Milestone 2.7 deleted
Note: See TracTickets for help on using tickets.