I am wondering how i can get sign up functionality in a custom tpl.php?
Still learning php and cant find any docemnation on how i can call the signup module into my themed tpl.php file.

Comments

sandorczettner’s picture

I think:
<?php print $node->content['signup']['#value']; ?>
But: the signup form will appear twice with it's CSS id, use $node->body instead of $content in you tpl.php file. I need the same functionality and can't find better solution.