Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • #615441

    Hi,

    Why my full width sliders and contact form have disappeared after WP updated automatically?

    Help,

    XN

    #615461

    Add this to your function.php theme file

    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 dont want to update new enfold theme ofcourse

    #615465

    I have Theme Functions function.php
    And function-enfold.php

    So, should I enter ONLY in the theme options functions.php?

    Thanks
    Xandria

    #615471

    Hi!

    Yes that is correct please add it to functions.php

    Best regards,
    Vinay

    #615472

    Sorry, last thing, can I paste it anywhere or specific line? (Last time I added a code in there, it messed up my site)

    #616023

    Hi,

    Please try it at the very end of the file.

    Cheers!
    Rikard

    #616037

    Thank you so much Slavisa for the code. It works perfectly fine :)

    #616076

    Hey!

    Glad you got it short out, but please note that is just a quick fix.
    You will have to update both theme and wordpress and then clear your cache to make sure images come up properly.
    Been on latest Jquery version, is something really needed to happen.

    Regards,
    Basilis

    #616089

    Hello Basilis,

    I have checked on my dashboard and there is no update for Enfold. Currently it is 3.4.6 and WP is 4,5

    How do I update Enfold?

    Thanks
    XN

    #617141

    Hi,

    Could you try the following plugin in order to clear WordPress transients please: https://wordpress.org/plugins/artiss-transient-cleaner/

    If that should not work then please try to update manually: http://kriesi.at/documentation/enfold/updating-your-theme-files/

    Regards,
    Rikard

    #617174

    Hello Rikard,

    I installed the plugin and updated the theme, My sliders are gone once again :(

    #617176

    I have inserted the code again. It’s working now :D

    #618869

    Hi,

    Great, glad you got it working. Let us know if you should need any more help on the topic.

    Best regards,
    Rikard

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