Enqueued jQuery not working

Someone answered, but the answer has since disappeared, which is a shame because it lead me to the solution. What ended up working was jQuery(document).ready(function ($) { setTimeout(function () { $(‘div.edit-post-post-schedule span’).text(‘Birth Date’); $(‘div.edit-post-post-schedule span’).css(‘font-weight’,’bold’); }, 250); }); I’m still a bit fuzzy on why it worked, but I will take the win!

slider wont load unless you scrolldown on mobile, slick.js carousel

This behavior of the page is caused by the WP Rocker plugin you are using. With the active “Delay JavaScript Execution” option (“File Optimization” tab), all scripts on your website are loaded only after the user performs some action (e.g. will move the cursor). This applies to both the mobile and desktop versions. Excluding just … Read more

Elementor form – checkboxes validation

For anyone interested, I was able to resolve it like so: function form_checkboxes_validation(){ ?> <script type=”text/javascript”> (function($){ $(“#send-request”).click(function(){ if(! $(‘input[name=”form_fields[suite][]”]’).is(‘:checked’)) { alert(“Please select at least one suite!”); return false; } }); })(jQuery); </script> <?php } add_action(‘wp_footer’, ‘form_checkboxes_validation’);