Hi, Lely!
The code above that was placed in my functions.php file was put there because of the jquery migrate errors. I have since removed the code. I also had the code below inserted and I removed it too.However. I still need help figuring out why the jq migrate errors are happening in the first place within the theme. There was no difference when I went from regular X to child theme version in terms of my website still being broken. I even tried doing a backup restore and deactivated wp rocket temporarily too and the website was still broken after WordPress updates.
CloudFlare has passed it’s propagation period so I can’t say it’s the reason my website is not displaying properly although, there’s a possibility. This again is part of the conversation I had with a member of my hosting provider’s staff and he as well as articles, I have read on the web, state that the j guery migrate errors happen due to outdated things within a theme vs core WordPress updates. Which… I assume causes the conflicts. Now I’m not saying something is wrong with X or the child themes themselves because I love X and am using it on another website that is under construction (integrity stack) and I haven’t come across this issue just yet.
It can be something within the icon stack itself or perhaps outdated things within the demo Spa demo I selected. The google maps on the home page and most of the content was already within the theme by default. Right out of the box… it went along with my vision so I just customized it for my website and of course added some things to ensure the icon stack is fully functional for my needs. The google map and most of the elements were added using cornerstone.
The video (youtube hero) itself is the demo video that came with that particular rev slider. I like it so I didn’t change it. However, at times it gives me this error in the attachments I sent to you guys a support message during the time you were accepting support via email while you update your website. However, the issue remains unresolved. Please do what you can to help me. Thanks in advance.

Blockquote
JavaScript is the scripting language that runs on the client side - in the web browser.
The JavaScript errors can be inspected, using your browser’s developers tools:
Code:
JQMIGRATE: Migrate is installed, version 1.4.1
(index):133 Uncaught SyntaxError: Unexpected token <
(index):718 Uncaught SyntaxError: Unexpected token <
(index):739 Uncaught ReferenceError: Invalid left-hand side in assignment
(index):745 Uncaught SyntaxError: Unexpected token <
youtubebg.jpg:1 GET https://www.keianienterprises.com/wp-content/uploads/revslider/youtubehero/youtubebg.jpg 404 ()
VM901:1 i
VM901:1 ak
util.js:222 Google Maps API warning: NoApiKeys https://developers.google.com/maps/documentation/javascript/error-messages#no-api-keys
It seems that you have HTML elements within your page’s tags, which is incorrect JavaScript syntax, due to which the reported errors have been generated.
You will have to get in touch with your theme vendor, since the JavaScript is part of the theme’s functionality/scripts, so they can provide you with a patch(if there is such).
Blockquote
//Make sure any external scripts don’t require the functions.
function dequeue_jquery_migrate( &$scripts){
if(!is_admin()){
$scripts->remove( ‘jquery’);
$scripts->add( ‘jquery’, false, array( ‘jquery-core’ ), ‘1.10.2’ );
}
}