• Resolved solnapundare

    (@solnapundare)


    When clicking on submit, regardless if it is a success or validate issue, the confirmation tag is not shown. If I inspect the dom I can see this element:

    <div class=”wpcf7-response-output” aria-hidden=”true”>Ett eller flera f?lt har ett fel. Kontrollera och f?rs?k igen.</div>

    I’ve read a lot of topics in this forum as well as seen youtube videos fixing similar issues by removing one extra div tag. But I do not have any extra div tag:

    <div id="contactForm">
    <label> Ditt namn
        [text* your-name] </label>
    
    <label> Din e-post
        [email* your-email] </label>
    
    <label> Bostadsomr?de
        [text* your-area] </label>
    
    [submit class:super-form-button]
    </div>

    I’m using:
    WP version 6.0.2
    PHP version 8.0

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Takayuki Miyoshi

    (@takayukister)

    Where on the site do you have the form having the issue?

    Thread Starter solnapundare

    (@solnapundare)

    In the bottom of the page.

    How ever I have for now solved it with CSS:

    form.invalid div.wpcf7-response-output {
    	display:block;
    	background-color: #ffb900;
        color: #fff;
        padding: 15px !important;
        font-size: 15px;
    }
    
    form.sent div.wpcf7-response-output {
        background-color: #46b450;
        padding: 15px;
    		display:block;
        color: #fff;
        font-size: 15px;
    }

    Should I remove it, for now?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Confirmation div not shown when submitting’ is closed to new replies.