Hey @fpmortimore,
Can you please share with us how you are integration our plugin in your custom form? If you are adding the checkbox HTML, then you can simply modify it to make it checked by default.
Hi Harish, thanks for your reply. I’m using this code. How should I change it to make it checked by default.
<p>
<label>
<input type=”checkbox” name=”mc4wp-subscribe” value=”1″ />
Subscribe to our newsletter. </label>
</p>
Hello,
To make it checked by default, please use below code:
<p>
<label>
<input type=”checkbox” name=”mc4wp-subscribe” value="1" checked />
Subscribe to our newsletter. </label>
</p>
Hi Harish
Thanks for the code however now I no longer have a box but instead I have a field with 1 in it – which wont mean anything to the user. What is the code for a checked box?
Thanks