So, I’m trying to add place holder text for Mailchimp widget following the instructions above, but I must be missing something. Is the above placeholder=”Your best email….” written exactly as it should be (minus “your best email…”)?
This is what I have:
<input type=”text” size=”4″ maxlength=”4″ value=”” name=”‘.esc_attr($opt.'[detail2]’).'” id=”‘.esc_attr($opt.’-detail2′).'” class=”mc_input mc_phone” />
‘;
break;
case ’email’:
case ‘url’:
case ‘imageurl’:
case ‘text’:
case ‘number’:
default:
$html .= ‘
<input type=”text” size=”18″ value=”‘.esc_html($var[‘default’]).'” name=”‘.esc_attr($opt).'” id=”‘.esc_attr($opt).'” class=”mc_input”/>’ placeholder=”Your best email….”;
break;
Thanks for your help!