Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #614096

    Hi – I’m experiencing some major differences in what I’m seeing within my WP admin panel and what I’m seeing when I preview or view a live page of my Enfold site. My images aren’t loading the correct size, I’m not able to see some special headings or content blocks, etc.

    Could you please take a look at my WP-admin and see if there’s anything you notice that could be causing this issue? I’ve included the site url and the wp login credentials in private content below.

    Thanks!

    Grey

    #614104

    Hey frontlight!

    Please update Enfold to the latest version 3.5.2 – http://kriesi.at/documentation/enfold/updating-your-theme-files/ and flush cache and refresh your page a few times

    Cheers!
    Yigit

    #614127

    Great – I’m doing that now. However, my php load time was set very low (before I started the update) and it’s taking a long time to install the update. I just had my host increase the php load time. Can I refresh the page and re-start the theme update without causing errors? Or should I just continue to let it run?

    #614159

    Ok – so I aborted the theme update from within WP, and I installed the update via FTP. However, when I go back into the admin panel, it’s still telling me I need to upgrade the theme to 3.5.2. Is there a way for me to refresh everything? Or is there a reason FTP would say it’s successfully installed, but WP wouldn’t recognize it?

    Thanks for your help. We’re trying to get this site fixed ASAP, so any support would be greatly appreciated.

    Grey

    #614179

    Hi!

    Add the below code in functions.php as a temp fix

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

    Your theme is not updated yet. If you are not using a child theme please backup any custom changes you may have added to the theme and update enfold to latest version 3.5.2 make sure you have the correct API key from themeforest.

    If you are not able to view the update option in wordpress dashboard. Please update the theme manually via FTP following the steps provided here http://kriesi.at/documentation/enfold/portfolio-item/update-theme-files-with-ftp/

    Once you have updated to the latest version you can remove the above code from functions.php

    Regards,
    Vinay

    #614215

    Thanks! That worked just fine. I appreciate all your help.

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Some Enfold content not loading on live page’ is closed to new replies.