Tagged: conflict, fusion builder, new update
Just updated and now it;s saying theres a conflict. It is suggesting I look for the debug in wp-config, but I can’t even find that in the new theme update (could be the issue!?)
Hi tuckermayo!
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');
If you still have any issue please provide the link to your site so we can take a closer look at it.
Regards,
Vinay