By soezkan on
Hi all,
I have a problem with my Webform. For some reason it doesn't show up when I use my own theme. But with Garland theme I can see it. The strange thing is, that the body-text is visible in both, my own and garland. But in my own there is not even a form-Tag in the source.
How can this be? Can you please help me with this?
Thank you so much!
Bests,
Soezkan
Comments
did you use webform as a
did you use webform as a block?
best bet is to look at your node.tpl.php and block regions (if you are using the webform as block)
--------------------------------------------------------------------------------------------------------
if you can use drupal why use others?
VicTheme.com
Thank you!
Thank you! The issue was in the node.tpl.php.
For particular reasons I had to change the output
of the $content to print($node->content['body']['#value']);
and this failed to output webforms.
I use print($node->content['webform']['#value']); in a
new node-webform.tpl.php and now it works fine.
Bests,
Soezkan