Adam
Adam

Reputation: 9049

Drupal 6: add webform to node or embed into a node?

I've been using the webform module for a while, but now I'll need a solution that is easy for a webmaster to use, so no php.

Perhaps, when they are creating a node they can add a webform without have to get into the template files to add a block or something.

Just looking for some suggestions.

Upvotes: 1

Views: 1734

Answers (1)

Neelam Gahlyan
Neelam Gahlyan

Reputation: 358

Webform provides a node itself , if you want to customize the look n feel, the enable devel, theme developer modules and get the proper name for tpl file and customize.

And if you want form only, then use drupal_get_form('webform_id'); This will return complete html for your form.

Upvotes: 2

Related Questions