Thank you!! That seems to have fixed the “Uncaught SyntaxError: Unexpected token <” error but the other error is still showing up. Do you know what that might be from?
“Uncaught ReferenceError: $ is not defined”
Hi @corrine, I took a quick look and it appears you have some jQuery script in the Head of the site, I would move that to the Before Body code panel instead: Image 2018-04-03 at 7.39.02 AM
jQuery is loaded just before the last Body tag, so if jQuery script is called in the Head, the jQuery .js file has not yet loaded.
When jQuery is not loaded and a call is made to jQuery, you get this "“Uncaught ReferenceError: $ is not defined” errors.
Move the script to the Before Body and then at least that particular error should go away.