• Resolved d.chatzimanolis

    (@dchatzimanolis)


    Hi,

    Even if I use the following form code to display my Newsletter form, the “Agree to terms” field is not appeared at my form preview:

    <p>
    	<label>Email address: </label>
    	<input type="email" name="EMAIL" placeholder="Το email σα?" required />
    </p>
    
    <p>
    	<input type="submit" value="Εγγραφ?" />
    </p>
    
    <p>
        <label>
            <input name="AGREE_TO_TERMS" type="checkbox" value="1" required=""> <a href="https://www.google.gr/" target="_blank">Συμφων? με του? ?ρου? χρ?ση?</a>
        </label>
    </p>

    Please check my screenshot here: https://imgur.com/8HxkA4H

    Waiting for your further advice on this!

Viewing 10 replies - 1 through 10 (of 10 total)
  • Plugin Contributor Harish Chouhan

    (@hchouhan)

    Hello,

    Thanks for reaching out to us.

    Can you please add this form shortcode to a test page and then share a link to that page?

    Thread Starter d.chatzimanolis

    (@dchatzimanolis)

    Hi,

    Yes of course, please check the following page:

    https://www.giftsontop.gr/test-page/

    Thank you in advance.

    Plugin Contributor Harish Chouhan

    (@hchouhan)

    Hello,

    The reason the other fields are not displayed is that your theme contains CSS code that affects output from our plugin. I would recommend contacting them to fix this.

    For now, can you please update the form code with the code below and let me know?

    <p class="terms">
        <label>
            <input name="AGREE_TO_TERMS" type="checkbox" value="1" required=""> <a href="https://www.google.gr/" target="_blank">Συμφων? με του? ?ρου? χρ?ση?</a>
        </label>
    </p>
    Thread Starter d.chatzimanolis

    (@dchatzimanolis)

    I updated the form code but it seems that the issue wasn’t resolved. Any other recommendation?

    Plugin Contributor Harish Chouhan

    (@hchouhan)

    Hello,

    Additional CSS would be required to make the checkbox visible as your theme is hiding it. I checked the test page but did not see the code is updated. Can you please check and confirm if you have saved the form with the updated code?

    Thread Starter d.chatzimanolis

    (@dchatzimanolis)

    On my end I can see the updated code:

    View post on imgur.com

    Plugin Contributor Harish Chouhan

    (@hchouhan)

    Hello,

    I found the code in your theme that is causing the issue.

    Please use the following CSS to fix it.

    .mc4wp-form>div {
        display: block !important;
    }

    This will make the form appear something like this https://www.dropbox.com/s/51u6zyx2p1itze3/Screenshot%202019-11-18%2019.05.24.png?dl=0.

    Your theme is trying to style the contents of our form so I would suggest contacting them to resolve this.

    Thread Starter d.chatzimanolis

    (@dchatzimanolis)

    I used your recommended code but it seems that “SIGN UP” button still doesn’t work while clicking on it.

    Thread Starter d.chatzimanolis

    (@dchatzimanolis)

    I think I just found the correct CSS to make the form work correctly:

    .mc4wp-form p:last-child label {
    	display: block;
    }
    Plugin Contributor Lap

    (@lapzor)

    Awesome, thanks for sharing!

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘Agree to terms field not appearing’ is closed to new replies.