Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+2 votes
932 views
in Q2A Core by
edited by
Is there an existing method to add a custom field on the User Registration field.  I basically want to inform the user of importances of their registration...tell the user to use their existing Windows username, dont use profanity (as if I have to...I do tho)...just the important things nobody already knows...
Q2A version: 1.6.2

1 Answer

+3 votes
by
selected by
 
Best answer

Simply add this to your qa-theme.php in theme folder:

body_header(){
    qa_html_theme_base:: body_header();
    
    if($this->template=='register')
        $this->output('Your custom message here');
}

...