Mailchimp input text field

opensource

New Member
Hello
Anyone have tried putting some text in the
text field of Mailchimp ?

Like for example the email appears in the
input text field instead along side of the
text box. Then the text will disappeared
once its been focused.

Anyone have advice on how to put some
text or anyone have tried in mailchimp?
 

opensource

New Member
Hey guys. I think i found it already.
The solutions is that i went in plugin mailchimp_widget.php
and search this line
<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" />';
and At the end, I add just after class="mc_input" add this:

placeholder="Your best email...."

Just posting these in case someone has a similar problem.
This is a big help ^_^.
Anyway problem solve.
 
Top