Closed (fixed)
Project:
Signup
Version:
5.x-2.2
Component:
Themeability
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
31 Oct 2007 at 03:20 UTC
Updated:
20 Nov 2007 at 14:36 UTC
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
Comment #1
rolodmonkey commentedYou 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().
Comment #2
rolodmonkey commentedAfter 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'.
Comment #3
bekabug commentedThank you, I'll give it a shot :)
Comment #4
rolodmonkey commented