Hi Evil_Genius_Media,
Thanks for hopping in the forum. By default that placeholder text is taken from the default merge tag value that is set on your signup form. If you would like to edit the text that appears there check out this guide from MailChimp: https://kb.mailchimp.com/article/how-do-i-set-default-merge-values-like-dear-customer
If you want to remove it completely, there are a couple ways to do that. One option is editing the plugin code. So look in the mailchimp_widget.php and locate anywhere where placeholder=“‘…’” appears, remove everything inside the double quotes so it looks like this: placeholder=“”. But if you use this option, when the plugin updates, your changes will not stick. Also this would remove all of the placeholders not just the first name.
The other option would be to remove the placeholder with css which would remove just the first name placeholder. Add this bit of code to your sites css.
.mc_merge_var input#mc_mv_FNAME::-webkit-input-placeholder {
opacity: 0;
}
.mc_merge_var input#mc_mv_FNAME:-moz-placeholder {
opacity: 0;
}
.mc_merge_var input#mc_mv_FNAME::-moz-placeholder {
opacity: 0;
}
.mc_merge_var input#mc_mv_FNAME:-ms-input-placeholder {
color: transparent;
}
This should work in most browsers, but you might want to do some testing and make adjustments where you see fit.
-mcd