Viewing 30 results - 2,401 through 2,430 (of 7,495 total)
  • Author
    Search Results
  • #1046520

    Hi,

    Right now, we only have an option to modify the results of the query’
    https://github.com/KriesiMedia/enfold-library/blob/master/actions%20and%20filters/Search/avf_ajax_search_query.php

    but there is no way to modify the design section.

    Best regards,
    Basilis

    I just did in the last post, but here it is again.

    <?php
    
    /*
    * Add your own functions here. You can also copy some of the theme functions into this file.
    * WordPress will use those functions instead of the original functions then.
    */
    
    add_action( 'ava_main_header', 'enfold_customization_header_widget_area' );
    function enfold_customization_header_widget_area() {
      dynamic_sidebar( 'header' );
    }
    
    add_filter("kriesi_backlink","new_link");
    function new_link(){
    $kriesi_at_backlink = "";
    return $kriesi_at_backlink;
    }
    
    add_filter( 'avf_execute_avia_meta_header', '__return_true', 10, 1);
    add_filter( 'avia_meta_header', 'avia_append_search_nav_mod');
    function avia_append_search_nav_mod(){
              global $avia_config;
              ob_start();
              get_search_form();
              $form = htmlspecialchars(ob_get_clean());
    
              $items .= '<li id="menu-item-search" class="noMobile menu-item menu-item-search-dropdown menu-item-avia-special">
                            <a href="?s=" data-avia-search-tooltip="'.$form.'" '.av_icon_string('search').'>
                            <span class="avia_hidden_link_text">'.__('Search','avia_framework').'</span>
                            </li>&nbsp;&nbsp;';
            echo $items;
    }
    
    function custom_shift(){
    ?>
    <script>
    (function($){
    //      $('#header_meta #menu-item-search').prependTo('#avia2-menu');
            $('#header_meta #menu-item-search').prependTo('#header_meta .sub_menu');
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_shift');
    
    /* Create shortcode for parent page. */
    function list_parent_page() {
      global $post;
      $parent_id = $post->post_parent;
      $parent = $post->post_parent;
      $parent_title = get_the_title($parent);
      $link = get_permalink($parent_id);
      $parent_title = "<a href='$link' title='$parent_title'>$parent_title</a>";
     if($parent) {
            return $parent_title;
      }
    }
    function list_current_page() {
      get_the_title();
    }
    add_shortcode('parentpage','list_parent_page');
    add_filter( 'widget_title', 'do_shortcode' );
    
    // fix for PHP shortcode
    function do_php_shortcode_fix($content) {
        global $shortcode_tags;
        // save current shortcodes
        $old_shortcode_tags = $shortcode_tags;
        // remove all shortcodes, then re-add just our php and echo shortcodes
        remove_all_shortcodes();
        add_shortcode('php', $old_shortcode_tags['php']);
        add_shortcode('echo', $old_shortcode_tags['echo']);
        $content = do_shortcode($content);
        // and now put back the original shortcodes
        $shortcode_tags = $old_shortcode_tags;
        return $content;
    }
    function fix_php_shortcode_init() {
        global $shortcode_tags;
        if (isset($shortcode_tags['php'])) {
            // Move do_shortcode back to default of priority 11
            if(remove_filter('the_content','do_shortcode', 9))
                add_filter('the_content','do_shortcode', 11);
    
            // filter the content to deal with just the php and echo shortcodes
            // early on as priority 8 (before any WP formatting)
            add_filter('the_content', 'do_php_shortcode_fix', 8);
        }
    }
    
    // add fix for PHP shortcode, with priority 12 so it
    // comes after the PHP shortcode has been initialised
    add_action('init','fix_php_shortcode_init', 12);

    yeah, thats using your ‘method #2’

    and the second search icon is displayed only when I insert
    &nbsp;&nbsp; in your $items variable block

    Here is the current functions.php

    <?php
    
    /*
    * Add your own functions here. You can also copy some of the theme functions into this file.
    * WordPress will use those functions instead of the original functions then.
    */
    
    add_action( 'ava_main_header', 'enfold_customization_header_widget_area' );
    function enfold_customization_header_widget_area() {
      dynamic_sidebar( 'header' );
    }
    
    add_filter("kriesi_backlink","new_link");
    function new_link(){
    $kriesi_at_backlink = "";
    return $kriesi_at_backlink;
    }
    
    add_filter( 'avf_execute_avia_meta_header', '__return_true', 10, 1);
    add_filter( 'avia_meta_header', 'avia_append_search_nav_mod');
    function avia_append_search_nav_mod(){
              global $avia_config;
              ob_start();
              get_search_form();
              $form = htmlspecialchars(ob_get_clean());
    
              $items .= '<li id="menu-item-search" class="noMobile menu-item menu-item-search-dropdown menu-item-avia-special">
                            <a href="?s=" data-avia-search-tooltip="'.$form.'" '.av_icon_string('search').'>
                            <span class="avia_hidden_link_text">'.__('Search','avia_framework').'</span>
                            </li>&nbsp;&nbsp;';
            echo $items;
    }
    
    function custom_shift(){
    ?>
    <script>
    (function($){
    //      $('#header_meta #menu-item-search').prependTo('#avia2-menu');
            $('#header_meta #menu-item-search').prependTo('#header_meta .sub_menu');
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_shift');
    
    /* Create shortcode for parent page. */
    function list_parent_page() {
      global $post;
      $parent_id = $post->post_parent;
      $parent = $post->post_parent;
      $parent_title = get_the_title($parent);
      $link = get_permalink($parent_id);
      $parent_title = "<a href='$link' title='$parent_title'>$parent_title</a>";
     if($parent) {
            return $parent_title;
      }
    }
    function list_current_page() {
      get_the_title();
    }
    add_shortcode('parentpage','list_parent_page');
    add_filter( 'widget_title', 'do_shortcode' );
    
    // fix for PHP shortcode
    function do_php_shortcode_fix($content) {
        global $shortcode_tags;
        // save current shortcodes
        $old_shortcode_tags = $shortcode_tags;
        // remove all shortcodes, then re-add just our php and echo shortcodes
        remove_all_shortcodes();
        add_shortcode('php', $old_shortcode_tags['php']);
        add_shortcode('echo', $old_shortcode_tags['echo']);
        $content = do_shortcode($content);
        // and now put back the original shortcodes
        $shortcode_tags = $old_shortcode_tags;
        return $content;
    }
    function fix_php_shortcode_init() {
        global $shortcode_tags;
        if (isset($shortcode_tags['php'])) {
            // Move do_shortcode back to default of priority 11
            if(remove_filter('the_content','do_shortcode', 9))
                add_filter('the_content','do_shortcode', 11);
    
            // filter the content to deal with just the php and echo shortcodes
            // early on as priority 8 (before any WP formatting)
            add_filter('the_content', 'do_php_shortcode_fix', 8);
        }
    }
    
    // add fix for PHP shortcode, with priority 12 so it
    // comes after the PHP shortcode has been initialised
    add_action('init','fix_php_shortcode_init', 12);

    And you are still on enfold 4.4.1 i don’t know when it starts to name the top-menu avia2-menu but on your code there is no avia2-menu

    so try to change the code above from
    $('#header_meta #menu-item-search').prependTo('#avia2-menu');
    to:
    $('#header_meta #menu-item-search').prependTo('#header_meta .sub_menu');

    and see what happens

    #1046242

    Topic: Extremely slow backend

    in forum Enfold
    markusgiese
    Participant

    Hi there,
    I´m running different websites with Enfold and I´m very happy with the performance – great work.
    Since few weeks and especially since updating to WP 5.0 and Enfold 4.5 the backend is extremely slow.
    I´ve testet different browser, deactivated plugins and searched the forum.

    Can you please check, want went wrong?
    Thanks in advance!
    BR
    Markus

    you only have to use one of the methods. if you use the code above get rid of the shortcode function and remove from phonenumber input field the [search]

    add_filter( 'avf_execute_avia_meta_header', '__return_true', 10, 1);
    add_filter( 'avia_meta_header', 'avia_append_search_nav_mod');
    function avia_append_search_nav_mod(){
              global $avia_config;
              ob_start();
              get_search_form();
              $form =  htmlspecialchars(ob_get_clean()) ;
    
              $items .= '<li id="menu-item-search" class="noMobile menu-item menu-item-search-dropdown menu-item-avia-special">
                            <a href="?s=" data-avia-search-tooltip="'.$form.'" '.av_icon_string('search').'>
                              <span class="avia_hidden_link_text">'.__('Search','avia_framework').'</span>
                            </a>
                        </li>
    					<li class="phone-info">
    					   <a href="tel:+6123278777">07 3237 8777</a>
    					</li>';
    
        echo $items;
    }
    
    function custom_shift(){
    ?>
    <script>
    (function($){
    	$('#header_meta .phone-info').prependTo('#avia2-menu');
    	$('#header_meta #menu-item-search').prependTo('#avia2-menu');
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_shift');

    And it is hard to say from a screenshot where it could come from. A life link – which you do not have now – will be more informative.

    PS : for me it looks like the small one is from the code above and the other one from the shortcode.
    You have to style the little one via css.
    The code from me above with the phone number inserted this way is for having your search icon infront of the phonenumber. Then the phonenumber is part of the top menu. And you have to leave the phone info field empty on Enfold.

    • This reply was modified 7 years, 3 months ago by Guenni007.

    well if you use the shortcode only – you might not use the shift. Because the Position is on that method right.

    so get rid of :

    function custom_shift(){
    ?>
    <script>
    (function($){
        $('#header_meta #menu-item-search').prependTo('#avia2-menu');
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_shift');

    but the reason why i would use the other method is – the look and feel of the results list.
    Try first that – as you like and see what i mean on your own installation.

    ___________

    PS: on top you have outcommented the part of header widget area:
    the code is a whole part of:

    add_action( 'ava_main_header', 'enfold_customization_header_widget_area' );
    function enfold_customization_header_widget_area() {
      dynamic_sidebar( 'header' );
    }

    you have a # infront of the add_action part

    ____________

    PPS:
    you can have your own backlink instead fo kriesi ones by:

    function new_link(){
    $kriesi_at_backlink = "<a href='https://your-new-link'>Your Text here</a>";
    return $kriesi_at_backlink;
    }
    add_filter("kriesi_backlink","new_link");

    Here is my child functions.php modification for your first method, just to see if we can get something working.

    <?php
    
    /*
    * Add your own functions here. You can also copy some of the theme functions into this file.
    * WordPress will use those functions instead of the original functions then.
    */
    
    #add_action( 'ava_main_header', 'enfold_customization_header_widget_area' );
    
    function search() {
      global $avia_config;
      ob_start();
      get_search_form();
      $form =  htmlspecialchars(ob_get_clean()) ;
        return
              '<a href="?s=" data-avia-search-tooltip="'.$form.'" '.av_icon_string('search').'><span class="avia_hidden_link_text">'.__('Search','avia_framework').'</span></a>&nbsp;&nbsp;&nbsp;';
      }
    add_shortcode('search', 'search');
    
    function enfold_customization_header_widget_area() {
      dynamic_sidebar( 'header' );
    }
    
    add_filter("kriesi_backlink","new_link");
    function new_link(){
    $kriesi_at_backlink = "";
    return $kriesi_at_backlink;
    }
    
    function custom_shift(){
    ?>
    <script>
    (function($){
        $('#header_meta #menu-item-search').prependTo('#avia2-menu');
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_shift');
    
    /* Create shortcode for parent page. */
    function list_parent_page() {
      global $post;
      $parent_id = $post->post_parent;
      $parent = $post->post_parent;
      $parent_title = get_the_title($parent);
      $link = get_permalink($parent_id);
      $parent_title = "<a href='$link' title='$parent_title'>$parent_title</a>";
     if($parent) {
            return $parent_title;
      }
    }
    function list_current_page() {
      get_the_title();
    }
    add_shortcode('parentpage','list_parent_page');
    add_filter( 'widget_title', 'do_shortcode' );
    
    // fix for PHP shortcode
    function do_php_shortcode_fix($content) {
        global $shortcode_tags;
        // save current shortcodes
        $old_shortcode_tags = $shortcode_tags;
        // remove all shortcodes, then re-add just our php and echo shortcodes
        remove_all_shortcodes();
        add_shortcode('php', $old_shortcode_tags['php']);
        add_shortcode('echo', $old_shortcode_tags['echo']);
        $content = do_shortcode($content);
        // and now put back the original shortcodes
        $shortcode_tags = $old_shortcode_tags;
        return $content;
    }
    function fix_php_shortcode_init() {
        global $shortcode_tags;
        if (isset($shortcode_tags['php'])) {
            // Move do_shortcode back to default of priority 11
            if(remove_filter('the_content','do_shortcode', 9))
                add_filter('the_content','do_shortcode', 11);
    
            // filter the content to deal with just the php and echo shortcodes
            // early on as priority 8 (before any WP formatting)
            add_filter('the_content', 'do_php_shortcode_fix', 8);
        }
    }
    
    // add fix for PHP shortcode, with priority 12 so it
    // comes after the PHP shortcode has been initialised
    add_action('init','fix_php_shortcode_init', 12);
        

    this is the fastest way – but the results list in the flyout div is not the nice styled one as if you got it in main nav menu: Link

    this one here : Link provides the styled result window.

    if you got troubles even with method 1 – there must be something wrong with your setup or input into the child-theme functions.php.
    Because you see that it is working on my Enfold 4.5.1 and WordPress 5.0.1 installtion. Link
    I tested the shortcode method too on that installation – the only thing that was bad is the mentioned styling of the ajax results list.
    The reason seems to be that on an enfold menu the search item is styled – out of enfold menu it is not.

    #1045779

    In reply to: Fix Search Button

    Hi,
    Sorry for the late reply, please go to Enfold theme options > Header > Extra Elements and make sure that “Append search icon to main menu” is checked.
    Did this change happen after updating the theme?
    It looks like the search element is code inside a code block?

    Best regards,
    Mike

    jingle0
    Participant

    hi there, I am experiencing the following error
    Catchable fatal error: Argument 1 passed to Avia_Gutenberg::handler_display_post_states() must be of the type array, string given in /staging/1/wp-content/themes/enfold/config-gutenberg/class-avia-gutenberg.php on line 366
    This error shows up under the members tab in the Membership plugin while using Enfold theme.
    I swapped the theme to Twentynineteen and there was no error. When I switched back to Enfold the error is present.
    I’ve also checked for plugin conflicts and this is the only issue I find.

    I tried searching through the forum but didn’t find this error.

    • This topic was modified 7 years, 3 months ago by jingle0.
    #1045684

    Hmm good question, I had thought the Lightbox effect for the image was activated thru the Enfold theme.

    I will look deeper (google searches) into this issue,

    Thanks,

    GB

    #1045639
    Grandcarrousel
    Participant

    Hi. I have created my site by enfold theme. but When I submitted the site to google search console they issued 4 affected page in enfold theme framework.
    link are
    URL Last crawled
    ……………/wp-content/themes/enfold/framework/images/
    12 Dec 2018
    ……………/wp-content/themes/enfold/framework/js/
    12 Dec 2018
    ……………/wp-content/themes/enfold/framework/css/
    12 Dec 2018
    ……………./wp-content/themes/enfold/framework/
    12 Dec 2018

    If all is secure I can provide screenshot. Please assist me I have designed the site and its tough to change the theme now.

    Thanks

    #1045293

    Hi,
    Thanks for the login, I added the recaptcha shortcode to your contact form to show the element, but you are getting this jQuery error:

    Uncaught ReferenceError: jQuery is not defined
        at createCaptcha ((index):279)
        at (index):287

    I can’t see your functions.php because the editor is hidden.

    While researching any additional steps needed to get it to work I found this post from Ismael who wrote the script:

    We can’t recommend the same script before because of DSGVO or GDPR. Please try Sucuri or Wordfence to protect your site from third party scripts or spams ~ How Sucuri Helped us Block 450,000 WordPress Attacks in 3 Months

    I see that you already have Sucuri installed, perhaps the article has some tips for using it more effectively?
    I’m not sure that you will want to continue with the recaptcha.

    Have you considered Contact Form 7, I found that there is a addon Contact Form 7 Honeypot which looks like it would be very effective.

    Best regards,
    Mike

    a quick and dirty way would be to create a shortcode for that search item in child-theme functions.php:

    function search() {
      global $avia_config;
      ob_start();
      get_search_form();
      $form =  htmlspecialchars(ob_get_clean()) ;
        return 
              '<a href="?s=" data-avia-search-tooltip="'.$form.'" '.av_icon_string('search').'><span class="avia_hidden_link_text">'.__('Search','avia_framework').'</span></a>&nbsp;&nbsp;&nbsp;';
      }
    add_shortcode('search', 'search');

    and then you can place [search] for that search item.
    for example in the enfold – header – extra-elements – phonenumber field f.e.:
    [search] <a href="tel:+49123456">+49123456</a>

    #1045084

    Hey Rikard,

    you are right. When I wanted to login this morning, I only saw white pages!!!! After a few hours of searching, I found the problem: It was the plugin “Quantity Field on Shop Page for WooCommerce”.
    Now the website is running again. But with the new version of enfold there are no single product pages. Perhaps you can try to login again.
    and check it.

    Best regards,
    Sonja

    #1044883

    You only have to copy that whole file you edited, i.e. “search.php”, into the folder “shortcodes” inside of your child theme … directly into that folder without further subfolders.

    The documentation of Enfold also explains the part for your child theme functions.php.
    I didn’t found the link two days ago, that’s why i linked to that forum thread, but here it is:

    => https://kriesi.at/documentation/enfold/intro-to-layout-builder/#add-elements-to-alb

    #1044720

    Hi,

    If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.

    Thanks!

    Regarding the issue, please make sure that the site is running on Enfold 4.5.1. This update contains Gutenberg compatibility scripts.

    Best regards,
    Ismael

    #1044324

    Hi kjwaggz,

    I see that the slider is hidden on mobile, in the iPad mode you need to have the burger even at 1024px and I do the see fallback image and did not see the issue that you’re describing in Chrome on a Mac.

    The fallback image shows till the video loads.

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    @media only screen and (max-width: 1024px) {
      nav.main_menu, #menu-item-search {
        display: block !important;
      }
      .menu-item {
        display: none;
      }
      .av-burger-menu-main.menu-item-avia-special {
        display: block;
      }
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #1043761

    Hi Rikard,
    I’ve been in contact with Themeforest & have finally recovered my old account details.
    I downloaded the Enfold update & attempted to install it using the recommended theme update plugin but am getting this error

    ‘The uploaded file exceeds the upload_max_filesize directive in php.ini.’

    I read you can change the upload limit of the php.ini file but having looked in my C panel file manager & attempting to search via ftp, I can’t find it.
    Yes I have backups of my site.
    Ftp details provided as requested below.

    Regards
    Melanie

    #1043686

    link below
    i added another search bar below menu
    but i prefer to keep Enfold Ajax Search if possible with Polylang free
    thxs for your help

    #1043544
    SandyMcD
    Participant

    Hello I use Enfold across all my sites. Today I went into edit a site and got a message, welcome to Blocks. Then the original design was just one long text block with html all the way down. The original Avia layout builder was right at the bottom, but it does not show the text any longer. I tried to design a new page and on the new page the Avia layout builder did not show, just this plain block saying add text or images. I have searched your forums but can find no reference to this new system which is completely unworkable. Can you help please.

    #1043096
    chcnet
    Participant

    Hello ladies and gents,

    I am desperately searching for a solution to this problem concerning enfold theme and woo commerce: Does anybody have an idea, how to properly override woo commerce template files in enfold? I need to change HMTL in up-sells.php. Whatever I do, woo commerce ignores my woocommerce/templates/single-product/up-sells.php. it obiously doesn’t even include that file, as even a syntax error doesn’t trigger an error…

    Any ideas? Did I overlook something?

    Kind regards
    Christoph

    #1043094

    In reply to: WooCommerce cart table

    Radek
    Guest

    Hi Rikard,

    Thanks your for a reply, I clicked the support forum link you provided but it’s asking me to enter Purchase code, so obviously support forum is only for those who have already purchased your theme.

    The cart table behavior I mentioned can be seen here https://kriesi.at/themes/enfold-shop/ – just add product to cart and view the page on mobile or resize your desktop browser. In mobile portrait I can see just Delete, Product and Price columns, in landscape there’s Total column added but Quantity is missing.

    I searched your forum and the issue is mentioned here https://kriesi.at/support/topic/woo-commerce-chart-width-cut-off-on-cart-page/ and apparently was caused by user’s custom css. However, the first link I’ve given is your own demo, no custom css added, so it seems like a default Enfold theme setting.

    Question is: can it be changed to have all cart columns visible on mobile?

    Appreciate your help.

    #1042638

    Topic: Homepage Slider

    in forum Enfold
    alipdesign
    Participant

    Hi,
    I’ve installed Enfold 4.5 and the demo content.
    However there is no visible slider. I’ve searched the documentation and can’t find information on where and how to configure the homepage slider. Can you please let me know where I find it?
    Normally themes I buy have a slider plugin, however there is nothing with this one.
    Any help is greatly appreciated.
    Thanks
    Ali

    #1042635

    Topic: New stuff for Enfold

    in forum Enfold
    mynick
    Participant

    Hi guys,

    I don’t want to come of strong and please don’t get me wrong, I love Enfold, but is it that hard to add some more variants to the stuff we already have within Enfold?

    – Some different layouts for navigations ( logo in the middle, some neat hover effects, … )
    – More (hover)styles for masonry and blogitems
    – More effects/animations in sliders
    – More variants for widgets
    – Options to remove certain stuff for blogitems like: comment-indicator, category, tags, date, … just let me check it on or off… Seems like such a basic feature…
    – A differently styled searchbar
    – Squared ( or differently styled ) social media icons as a widget in the footer
    – The option to center text in the socket
    – Some cool preloaders
    – A little more fonts
    – Testimonial variants
    – …
    The possibilties are endless.

    Honestly… it seems, for me, so obvious to do more stuff like this… After making 30 sites with Enfold, it’s starting to look all the same to me :D.

    Just my 2 cents at midnight.

    Kind regards :)

    PS: Yes, I know about the documentation that shows some additional stuff. ^^

    #1042394

    In reply to: Fix Search Button

    Hey lbccomm,

    Please try the following in Quick CSS under Enfold->General Styling:

    #top #searchsubmit {
        width: 120px !important;
    }

    Best regards,
    Rikard

    @Vinay. Can you guys accept this is a bug and will be fixed in a new release?
    This is not about hiding a page from Google.
    ENFOLD knows the page ID. It is clearly defined in the Enfold theme settings.
    A user should not have to start hacking code when the expected functionality of a feature is NOT to appear in search results. It is common sense surely.
    Thanks @cg I will give this a go.

    #1042063

    In reply to: Enfold Child Theme

    Hello!
    After a few attempts I managed …. I had to copy the loop-search file that had been changed by enfold and paste it into enfold-child creating the “include” subfolder and editing the loop file again as per instructions (https: // kriesi.at/support/topic/add-featured-image-to-search-results/)
    so the previews have reappeared!
    I’m not sure it’s the process, if there’s a better way, please tell me.
    Best regards
    Sacha

    • This reply was modified 7 years, 3 months ago by Marco.
    #1042002
    liamgall80
    Participant

    Hi, i’ve found this procedure in another thred posted by a moderator:

    ###################################################################
    Updating from 4.4.1 to 4.5 via (S)FTP manually works like a charm
    However, the steps to get there are quite a lot. Let me describe it step-by-step here:
    1) Make a full backup of your website using a backup plugin.
    2) Safe the backup somewhere outside from the webserver of your website (e.g. on your local computer or in any cloud storage you trust).
    3) Sign out from your WordPress website.
    4) Go to your themeforest account, sign in and download the updated Enfold v4.5 to your computer. Extract it and search for the file enfold.zip. Extract this file as well to already have your folder ready to be uploaded.
    5) Sign in to FTP or SFTP using FileZilla or any other tool which is able to do that.
    6) Go to the folder ./wp-content/themes and search for “enfold”. If you want, you can download the enfold folder to your computer as well (just in case you want to restore if afterwards which is easier like that than using the whole backup).
    7) Delete the folder enfold via FTP. This may take 5-10min, depending on the server speed obviously.
    8) Wait until it is finished and the enfold folder is gone. If that is the case, upload the “new” enfold folder including v4.5 to your website in the same directory.
    9) Sign in to your WordPress website again and go to the Enfold tab (or the one from your child theme). Scroll down to the tab called Theme Update.
    10) Your current API token will not work anymore as Envato changed some stuff on their API. Therefore you need to remove your current key and generate a new private key as visible in your themeforest account under “Settings” -> “API keys”. Go to https://build.envato.com and follow the steps there. To me, https://kriesi.at/documentation/enfold/(Purchase code hidden if logged out) /#toggle-id-5 was also very helpful (scroll down a bit there to find out about the permissions your private API key needs in order to check for future Enfold updates). Without these permissions it will not work.
    11) After revalidating your new private key within the Enfold update tab, you should see a blue rectangle saying when it could be checked for the last time.
    12) Done!
    I hope this helps anybody who has/had issues with updating Enfold to version 4.5.
    Feel free to ask me in case you need any assistance.
    #######################################################################

    My question is:
    considering that i’m using an Enfold child theme, is this procedure still right?
    If yes, I have to apply this procedure only to the “Enfold” folder and not to the “Enfold child”, right?
    Thanks

Viewing 30 results - 2,401 through 2,430 (of 7,495 total)