Using hte webforms module, is there a way to put formatted text into the form between the form fields? I want to put some general explanations and directions between form sections, in addition to the descriptions/directions for each specific field.
You should be able to use hook_form_alter and put any of your modifications in another module.
Jean Gazis wrote:
Using hte webforms module, is there a way to put formatted text into the form between the form fields? I want to put some general explanations and directions between form sections, in addition to the descriptions/directions for each specific field.
-- Jean Gazis www.jeangazis.com http://www.jeangazis.com www.boxofrain.us http://www.boxofrain.us
"Believe those who are seeking the truth; doubt those who find it." - André Gide
Maybe after I learn some PHP... which will be after I tackle Views and CCK...
The bottom line is that the client really should be integrating e-commerce, but they need to take baby steps. I can do some of what I want by using fieldsets in the form.
Thanks.
On 6/6/07, Eric Mckenna eric.mckenna@gmail.com wrote:
You should be able to use hook_form_alter and put any of your modifications in another module.
Jean Gazis wrote:
Using hte webforms module, is there a way to put formatted text into the form between the form fields? I want to put some general explanations and directions between form sections, in addition to the descriptions/directions for each specific field.
-- Jean Gazis www.jeangazis.com http://www.jeangazis.com www.boxofrain.us http://www.boxofrain.us
"Believe those who are seeking the truth; doubt those who find it." - André Gide
-- [ Drupal support list | http://lists.drupal.org/ ]
On Jun 6, 2007, at 8:30 AM, Jean Gazis wrote:
Using hte webforms module, is there a way to put formatted text into the form between the form fields? I want to put some general explanations and directions between form sections, in addition to the descriptions/directions for each specific field.
One way to do this is to use the field groups (or named something similar). You can add description to those, and that will appear above the fields in that group. It's all there in the module.
Laura