Tagged: 

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #325100

    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.

    #325118

    Hi GOWD!

    Can you post a temporary login so we can see your page?

    Regards,
    Yigit

    #325347
    This reply has been marked as private.
    #325658

    Hey!

    You have following custom CSS code, please remove it

    .hidden {
    display: none!important;
    visibility: hidden!important;
    }

    Best regards,
    Yigit

    #328900

    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?

    #328908

    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

    #345349

    That worked.
    Thanks Yigit.
    You may close this thread.

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Contact Form Heading not showing’ is closed to new replies.