Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. function my_module_form_alter(&$form, &$form_state, $form_id)
  2. {
  3. if($form_id == 'uc_product_add_to_cart_form_2')
  4. {
  5.  
  6. $form['additional_guests'] = array(
  7. '#type' => 'textfield',
  8. '#title' => t("Additional Guest Names"),
  9. );
  10.  
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement