Closed (fixed)
Project:
Mailchimp
Version:
7.x-2.x-dev
Component:
Lists
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
22 Sep 2011 at 17:25 UTC
Updated:
22 Sep 2011 at 17:39 UTC
I have the following code in my template.php file which doesn't seem to be doing a thing? Am I missing g something?
function MYTHEME_form_alter(&$form, &$form_state, $form_id) {
if ($form_id == 'mailchimp_lists_user_subscribe_form_2')
{
$form['mailchimp_lists_user_subscribe_form_2']['#size'] = 22;
$form['mailchimp_lists_user_subscribe_form_2']['#attributes']['onblur'] = "if (this.value == '') {this.value = 'Enter Email Address';}";
$form['mailchimp_lists_user_subscribe_form_2']['#attributes']['onfocus'] = "if (this.value == 'Enter Email Address') {this.value = '';} ";
}
}
Comments
Comment #1
Woggers commentedSolved.
Needed the following: