Mar 18, 2022 6:34 pm
For inline comments, I'd like "Send me an email when a new reply is posted" to be check by default.Â
How do you make this box turned on/checked by default for inline comments? I see there is an option to do this in regular forms but not the inline comment form. - Thank you
Â
1 Reply
Mar 19, 2022 8:27 am
Hi @stanbrid,
You can use the JS code below:Â
jQuery(document).ready(function(){ jQuery("input.wpd-inline-notify-me").prop('checked', true); });
This article should be helpful for you: https://www.collectiveray.com/add-javascript-to-wordpress
Â