I need to add a text blurb and a few links above the submit button. Can anyone tell me where (filename and approx line number would be super) I would add this? Everywhere I've put it is wrong and it shows up above ALL my content.

Thanks
~bug

Comments

rolodmonkey’s picture

You really should use the Forms API to alter the form without changing the module code.

Another place to safely inject what you need, is to override theme_signup_user_form(), with mytheme_signup_user_form(). However this appears to only effect logged-in users.

If you want to hack the module code (not recommended), you can add a '#type' => markup form element to signup_form().

rolodmonkey’s picture

After doing more research, the place to alter this is definitely theme_signup_user_form(). That is where you should add an element with '#type' => 'markup'.

bekabug’s picture

Thank you, I'll give it a shot :)

rolodmonkey’s picture

Status: Active » Closed (fixed)