JS Code SnippetOn the page you want this to appear, add an HTML widget (FREE) and paste the code in there. Be sure to have < script> before your code and after the code if it isn't already inserted above.
document.addEventListener('DOMContentLoaded', function() { // Get all elements with the class 'onoffswitch-checkbox' var toggles = document.querySelectorAll('.onoffswitch-checkbox');
// Loop through each toggle and set it to checked toggles.forEach(function(toggle) { toggle.checked = true; }); });