Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #619437

    When I get a notification email with the latest update, I follow the link to download. But there is no download available. Just this message:

    You have not bought anything yet.
    Discover the most popular items available or browse our hottest new items.

    And, through wordpress “theme update” is also not possible. There is the message: “No Updates available. You are running the latest version! (3.4.2)” But this is not the latest version, right? I have big issues with the current wordpress version and my older enfold version! I heard an update to the latest enfold version could help.

    #619608

    Please! I have to fix that ASAP!

    #619646

    Hi!

    Please add the below code in functions.php to fix the issue

    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 cannot view the download option on themeforest please open a support ticket with themeforest as we have no control over it.

    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.3 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

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