Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #615964

    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!?)

    #615995

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.