Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
861 views

Why can't I move a field into a fieldset in a Drupal form - fails to pick up current value

I have a node form in Drupal 7, in order to simplify it for the user I want to break it up into sections using the vertical tabs feature. Using hook_form_FORMID_alter() I can move the fields without ...
1
vote
2answers
93 views

How to make file attachment required for a content type in Drupal

I want to make the file attachment option as a required field for a specific content type, user could not submit the node form without an attachment. the way i am doing this is not working, pls guide ...
1
vote
2answers
174 views

how to set default option of node reference cck field through form alter

I accept the arg from the url and according to the arg value I need to set the default option value, here is the code: function ims_form_alter(&$form, $form_state, $form_id) { switch ($form_id) ...
1
vote
1answer
226 views

How to alter country dropdown in location module?

I have been researching a way to limit the available countries in the drop-down that comes with the contrib locations module. I think hook_form_alter is the way to handle just showing certain ...
1
vote
1answer
3k views

Drupal: after submit action in form_alter

Hello i need to insert data in my tables after user creation ... i think to use hook_form_alter for $form_id="user_register" but i don't know how to say "after you created user... do this". How can i ...
0
votes
1answer
39 views

Accessing content of textarea in Drupal-7-Theme-Form

in my custom theme-settings.php (zen-subtheme) i put following code to get a new textarea with textformat in my theme-settings: <?php function ...
0
votes
1answer
188 views

Populate Webform hidden field with title of referring node

Drupal 7 I'm having a similar problem to one that's been presented previously but so far I've not been able to make any of the suggestions work. I have 'Product' pages of content type 'Software ...
0
votes
0answers
506 views

Drupal 6 Views - Altering exposed form textfield into checkboxes with hook_form_alter()

Updated to reflect changes: I am using the following code in my own module to edit a textfield into a specific list of checkboxes: <?php function decadeselect_form_alter(&$form, ...
0
votes
2answers
1k views

Using Hook_form_alter on webform submitted values

Drupal 7. Webforms 3.x. I am trying to modify a webform component value on submit. I made a custom module called 'mos' and added this code to it. function mos_form_alter(&$form, $form_state, ...
0
votes
2answers
2k views

Drupal 7 Edit User Page Override

I need to override the 'user/%user/edit' page for a specific user role, say 'foo_role'. I have successfully created the new user registration form that explicitly selects the fields to be used in ...
0
votes
1answer
270 views

Drupal hook_form_alter for Taxonomy admin

I created a module to do all my form altering called "form_mods". It's working for most situations but not for the Taxonomy page. I'm targeting the form id of "taxonomy_overview_vocabularies". I'm ...
0
votes
1answer
434 views

Why am I not getting my own page - drupal hook_menu

I have a module I'm creating and its purpose is to import a specific type of data and append it to nodes depending on that data. To do this, I need to create a page letting the user enter where the ...