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

    Hi,

    I’m very sorry to bother you. I’ve been using Enfold for happily for over a year now for my humor blog. Unfortunately, I can no longer seem to access my posts. Visitors to my blog can click on the links to my post and read them. When I’m working on my site and click on the “Edit Post,” however, I’m taken to the Edit Post page, but the post itself does not turn up. There’s just a large empty box where my post should be.

    Incidentally, I’m not sure whether it’s connected or not, but the “Likes” on my pages have also gone strange. It just says “Loading” all the time, but they never actually show up.

    I’m afraid I’m a complete notice with all the technical side of blogging. (One of the things I like about Enfold is how easy it is to use.) I would really appreciate your help. I’m beginning to panic a little now!

    Thank you very much

    #615526

    Hey sijh!

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

    You are probably using an old version of the theme. We have released an enfold update to match the changes made in the latest version of wordpress 4.5
    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

    #615640

    Thank you very much for your prompt reply, Vinay. That’s very helpful. I appreciate it.

    Bun

    #616155

    Hi,

    Glad we could help :-)

    Regards,
    Rikard

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