jQuery – Make multiple field Required with warning at WP Admin backend

I fixed the issues by replacing default HTML warning message using function setCustomValidity(). The default HTML warning message is issued at invalid field so that users know where to correct: // HTML: <input type=”text” name=”post_title” size=”30″ value=”” id=”title”> <input type=”text” name=”price” size=”30″ value=”” id=”price”> // jQuery: // Make post title field required – when it … Read more

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