When I put in the default theme I got this error, “Uncaught RangeError: Maximum call stack size exceeded
js?v=3.24&libraries=places&callback=em_maps&key=APIKEY“
That caused me to look in my functions.php, I started with a blank theme and modified to create my own, the blank theme was enqueuing jQuery 1.4 using this, ` if ( !is_admin() ) {
wp_deregister_script(‘jquery’);
wp_register_script(‘jquery’, (“https://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js”), false);
wp_enqueue_script(‘jquery’);
}`
I was also calling <script src="https://code.jquery.com/jquery-1.12.0.min.js"></script>
I am newer to wordpress, should I be able to change the jQuery enqueuing script to make my call and remove it from the header?
Thanks