Hi,
I would like to disable the Email adress* text in my mailchimp field and I don’t know how to do it.
I can’t find the php file to edit.
Thank you very much for helping !
Regards,
Thibault
Hey Obeatone,
Please try adding this at the very end of your themes / child themes functions.php file:
// Remove subject value
function remove_placeholder(){
?>
<script>
jQuery(window).load(function(){
jQuery(".av-mailchimp-widget").find(".text_input.is_email").removeAttr('placeholder');
});
</script>
<?php
}
add_action('wp_footer', 'remove_placeholder');
Best regards,
Vinay
Thank you Vinay, it works fine !
Regards,
Thibault