Hi @ocio132 ,
Thanks for reporting, I’m looking into that!
Best,
Alex
Hi @ocio132 ,
If you disable Litespeed, eg use
https://marcosocio.com/?wpmeteordisable=1&LSCWP_CTRL=before_optim
you can see that this script in the original document also comes after </body>, and would be reported as “Stray start tag script”
Litespeed merges it into the “merged javascript” and then removes, this is why you don’t get this error when there is no WP Meteor.
I’d suggest you to fix your theme, but generally it shouldn’t be a problem, scripts outside body tags should run fine
Best,
Alex
Because it exactly has the same issue: if you open source of https://eldiariodemof.com/?wpmeteordisable=1&LSCWP_CTRL=before_optim , you can see
</body><script type="text/javascript">
jQuery(document).ready(function () {
....
</script></html>
Which is not correct. Your source page before optimizations is invalid, that’s why you see the error. The only way to fix the issue is to fix the template, it is to move the last script before closing </body> tag, and it is not related to WP Meteor, or produced by it
Best,
Alex