Buy me a coffee

Force option “Sign up for news and updates”

To make the option “Sign up for news and updates” enabled in default, you can follow these steps:

Force Option Sign Up For News And Updates 01 Min

#1. First, use this free tool to find the data section id (the section where you use this form/newsletter).
In this example, we will have a section [data-section-id=”65d64cda320e1635de724f53″]

Force Option Sign Up For News And Updates 02 Min

#2. Use this code to Code Injection – Footer

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.0/jquery.min.js"></script>
<script>
$(document).ready(() => {
    $('section[data-section-id="65d64cda320e1635de724f53"] button').on('click', () => {
        setTimeout(() => {
            $('input[value="Sign up for news and updates"]').click()
        })
    });
})
</script>

Force Option Sign Up For News And Updates 03 Min