#6727 closed enhancement (invalid)
Registration form message
| Reported by: | chaoticmortalcom | Owned by: | |
|---|---|---|---|
| Priority: | normal | Milestone: | |
| Component: | General | Version: | |
| Severity: | normal | Keywords: | |
| Cc: | Focuses: |
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)
Note:
See TracTickets
for help on using tickets.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
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');
?>