To fix the issue:
First, copy and paste the following script into your theme footer (before the closing </body>
tag).
<script id="timingDelayExecution">
// 500 milliseconds after a page loaded, trigger a fake user interaction.
window.onload = () => setTimeout(() => window.dispatchEvent(new Event('touchend')), 500);
</script>
Then, exclude the timingDelayExecution
script from Delay JavaScript Execution:
That’s it!
Last modified: Feb 21 2025 at 11:58 AM.