0
votes
1answer
168 views

Drupal 7 Form API - Custom Select Theme

I have been searching all day but unable to find any answers - I am sure I am doing it right as worked fine in Drupal 6 and should work fine in Drupal 7. I want to give a custom theme function to my ...
0
votes
1answer
373 views

Drupal 6 to Drupal 7 migration form API php code snippet

I'm trying to figure out what is wrong with this bit of Drupal 6 php code i'm trying to get working in Drupal 7: function node_widget_get_fields(&$form) { $fields = array(); if ...
1
vote
4answers
939 views

Drupal 6: Only inserting first character of value to MySQL

I am working with a hook_form_alter on a CCK type (for you drupal-ers). I have a field that is normally a select list in my node form. However, in this instance, I want to hide the select list, and ...
0
votes
1answer
327 views

Drupal: Username input field?

How do I use the form API to make a field that only accepts names of registered users? I know how to do the autocomplete to suggest user names already. Specifically, I'm looking to replicate the ...
0
votes
2answers
162 views

Filter and View screens on different pages

Situation: In Drupal, when you use Views module, it restricts to display Search Form and Results on the same page. E.g. Page A = (Search Form + Results). There is no option in Views module ...