My uploaded Enfold theme is not working. The slider elements, full screen slider, color selection, ect are not working on my WordPress site. My site is not live now/underconstruction. Please advise asap. Thanks.
Hi SCT2016!
Please add the below code in functions.php
function modify_jquery() {
if (!is_admin()) {
wp_deregister_script('jquery');
wp_register_script('jquery', 'https://code.jquery.com/jquery-1.11.3.min.js');
wp_enqueue_script('jquery');
}
}
add_action('init', 'modify_jquery');
To see the changes please hard refresh the browser… First press F12 to open the Chrome Dev Tools then hold down Ctrl and click on the Reload button.
Regards,
Vinay
It worked. Thanks!