Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #615505

    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.

    #615549

    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

    #615934

    It worked. Thanks!

    #617114

    Hi,

    Great, glad you got it working and sorry for the trouble :-)

    Thanks,
    Rikard

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