Closed (fixed)
Project:
Webform
Version:
5.x-2.3
Component:
User interface
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
14 Nov 2008 at 06:46 UTC
Updated:
7 Dec 2011 at 23:16 UTC
I have created a webform, but it does not display on my website http://profinance.kz/online/ask.
The "content" div is empty. I'm using Drupal 5.7.
Comments
Comment #1
haraldessert commentedHello, ola90@drupal.ru!
I saw you fixed the webform on your site, and now it is showing.
But I've got the same issue and for some reason my form isn't appearing.
I, instead, am using Drupal 6.x. But how did you manage to solve this?
Or what is a probable cause for the webform not to show?
Comment #2
haraldessert commentedSolved (at least for my case)!!
The problem was actually within the theme. The original node.tpl.php was using a bidimensional array to print the content of the nodes.
I don't know why, because of this the inputs of my webform weren't appearing.
I changed it to
<?php print $content; ?>and now everything works fine.Comment #3
quicksketchThanks for the update. As an alternative, you can also print exactly the Webform by using
print $node->content['webform']['#value'].Comment #5
serguitus commentedi put that code on my node-type.tpl.php and the webform is not shown... am i doing something wrong?
Comment #6
Elehas commented#3 worked for me. Thanks!