Tagged: CONTACT FORM
Hi, I have inserted the contact form into a page and for some reason the title above the message box “Message” is not showing.
All the other input field titles are appearing.
Hey!
You have following custom CSS code, please remove it
.hidden {
display: none!important;
visibility: hidden!important;
}
Best regards,
Yigit
Hi Yigit, I have looked and I spoke with my developer and we can’t find where that code is to remove it.
I didn’t add anything to the Custom CSS.
I just inserted the form in the Advanced Layout Editor and added the target Email address.
How do I remove the code?
Hey!
Please try adding following code to Functions.php in Appearance > Editor
function add_custom_hidden(){
?>
<script>
jQuery(window).load(function(){
jQuery('label.textare_label.hidden.textare_label_avia_text_1').removeClass('hidden');
});
</script>
<?php
}
add_action('wp_footer', 'add_custom_hidden');
Regards,
Yigit
That worked.
Thanks Yigit.
You may close this thread.