Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #624006

    marihonaa
    Participant

    Hi!

    When sending a message through Contact Form 7, it gives me the confirmation message twice. Both on top of the form in writing, and on the bottom.

    Please see screenshot.

    I would like it to only display the bottom message.

    I tried this (saw it in another post), but it didn’t help

    .wpcf7 > .screen-reader-response {
    display: none;
    }

    Thanks

    #624012

    marihonaa
    Participant
    This reply has been marked as private.
    #624152

    Friech
    Moderator

    Hi There,

    Thanks for writing in! You can add this under Custom > CSS in the Customizer.

    .wpcf7 .screen-reader-response {
    	display: none !important;
    }

    Your css code above is correct. I assume you did place the code on the child theme’s style.css, if so the !important declaration should solve the issue.

    Also when previewing the page, please clear your browser’s cache (ctrl+f5) or any caching plugin, so the changes will take effect immediately.

    Hope it helps, Cheers!