Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #615188

    Hello,

    Congratulations for your theme.

    I have updated WordPress to 4.5 and slider stopped working, photos are not showing up and tabs also stopped working.
    Theme and plugins are uptodate.

    Could you help, please?

    Thanks in advance

    #615735

    Hi magdazafeir,

    Please try adding the following to your functions.php file to see if that helps:

    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');

    Regards,
    Rikard

    #615776

    Hello Rikard,

    no it didnt work, when i add this code to functions.php the site disappears.
    Could you help please?

    Thanks in advance,
    Magda

    #615813

    Pfff!!!! That worked for me …. I was worried but that’s ok now. Thanks for this message
    Marie

    #615814

    Maybe then i didnt add it at the correct line.
    I used it at the bottom, where should i?

    Thanks in advance

    #615826

    i have resolved whit

    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’);

    #615828

    I have added the same code at the end of the function.php but didnt work for me :(

    #615895

    Hi!

    Please update both WP and Enfold to latest version and after disable all plugins clear cache and enable back.
    That will fix any issues you are having

    Best regards,
    Basilis

    #616400

    Hello Βασίλη,

    we are running the latest version of Enfold (“No Updates available. You are running the latest version! (3.4.7)”) and the WP is updated also.
    But after updating to WP 4.5 these bugs appeared.

    Could you have a look, because the site is live.

    Thanks in advance,

    #616403

    Hey!

    Please try this plugin to clear WordPress transients if you do not receive auto updates and make sure your API key is correct: https://wordpress.org/plugins/artiss-transient-cleaner/.

    If it does not help, please update the theme manually – http://kriesi.at/documentation/enfold/updating-your-theme-files/

    Best regards,
    Yigit

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