Tagged Questions
0
votes
1answer
30 views
drupal position of the form-required indicator
In drual 7 my forms are outputting like this
<label for="edit-panes-billing-billing-first-name"><span class="form-required">(*)</span> First name</label>
The problem being ...
3
votes
2answers
352 views
Drupal 7: Checkbox label with links in it
is it possible to add a simple html link in the label/title of a checkbox? I tried the following code:
<?php
$form['legal']['#type'] = 'checkbox';
$form['legal']['#required'] = TRUE;
...
0
votes
0answers
727 views
Saving Custom Registration Form Drupal 7 Using FAPI [closed]
Good Day.
I created a custom registration form in Drupal 7 using FAPI.
I managed to add validation and it works great. Now my problem is when saving it to the database. I can't save my custom ...
1
vote
1answer
63 views
Drupal 6 Form-API Set Reply-to address
I wrote a form using the Form API in Drupal 6. Everything else works fine, but can I write a header Reply-to rather than the drupal_mail using the From value?
I tried putting this into my regular ...