Viewing 30 results - 301 through 330 (of 244,012 total)
  • Author
    Search Results
  • #1492615

    Topic: Enfold Update missing

    in forum Enfold
    OGV-Oberbrueden-eV
    Participant

    Hello,
    I have been using the Enfold theme on our website since 2020. I actually assumed that I would receive regular updates for Enfold, which I could install via the WordPress dashboard. However, this is not the case. I am still using Enfold version 4.7.6.4.
    Currently, I am unable to edit the Layer Slider, and I suspect this is related to my outdated Enfold version.
    How can I update my website to the latest Enfold version? Any tips on, how to activate this latest version would be very helpful!
    Thank you very much!

    With kind regards

    Georg Rupp

    #1492613

    Thanks Ismael,

    You said that you manually cleaned up the code, so when I added it to the live site, I was seeing the same issues as before.

    I am now just testing the following, which appears to be working, but did break the nav builder when I first ran it, so filtered this so it would only work on pages and posts.

    I will update as to if it works fully.

    Thanks

    
    /**
     * ============================================================================
     * POLYLANG + ENFOLD CUSTOM_CLASS ISSUE FIXES
     * ============================================================================
     * 
     * Problem: When Polylang duplicates/translates pages, it incorrectly converts
     * custom_class attributes into id="custom_class" or id="custom_class=" in HTML output.
     * 
     * Solution: Multiple filters at different points in the translation/save process
     * to catch and fix the issue wherever it occurs.
     */
    
    /**
     * Solution 1: Fix content after Polylang processes it (Primary Fix)
     * This runs after Polylang has translated the content but before it's saved
     * 
     * CRITICAL FIX: Handles unclosed custom_class=' attributes that break Enfold's parser
     * IMPORTANT: Excludes nav_menu_item to prevent menu structure issues
     */
    add_filter('pll_filter_translated_post', 'fix_polylang_custom_class_issue', 20, 4);
    function fix_polylang_custom_class_issue($tr_post, $source_post, $target_language, $data) {
        if (!$tr_post instanceof WP_Post) {
            return $tr_post;
        }
        
        // Exclude menu items - they don't contain Enfold shortcodes
        if ($tr_post->post_type === 'nav_menu_item') {
            return $tr_post;
        }
        
        $content = $tr_post->post_content;
        $original_content = $content;
        
        // Fix 1: Remove malformed id="custom_class=" or id="custom_class" in HTML
        $content = preg_replace(
            '/\s+id=["\']custom_class(?:=["\'])?/i',
            '',
            $content
        );
        
        // Fix 2: Fix unclosed custom_class=' attributes (THE MAIN ISSUE)
        // Pattern: custom_class=' followed by space, closing bracket, or end of shortcode
        // Replace with custom_class='' (properly closed empty attribute)
        $before_fix2 = $content;
        $content = preg_replace(
            "/custom_class='(?=\s|'|])/i",
            "custom_class=''",
            $content
        );
        $fix2_count = substr_count($before_fix2, "custom_class='") - substr_count($content, "custom_class='");
        
        // Fix 3: Also handle custom_class=" (double quotes, unclosed)
        $before_fix3 = $content;
        $content = preg_replace(
            '/custom_class="(?=\s|"|])/i',
            'custom_class=""',
            $content
        );
        $fix3_count = substr_count($before_fix3, 'custom_class="') - substr_count($content, 'custom_class="');
        
        // Fix 4: Remove custom_class='' or custom_class="" if they appear as standalone (no value)
        // This cleans up empty attributes that might cause issues
        $before_fix4 = $content;
        $content = preg_replace(
            "/\s+custom_class=['\"]{2}/i",
            '',
            $content
        );
        $fix4_count = (substr_count($before_fix4, "custom_class=''") + substr_count($before_fix4, 'custom_class=""')) - 
                      (substr_count($content, "custom_class=''") + substr_count($content, 'custom_class=""'));
        
        // Fix 5: Fix in shortcode attributes - sometimes custom_class becomes id in shortcodes
        $before_fix5 = $content;
        $content = preg_replace(
            '/\[([a-z_]+)([^\]]*?)\s+id=["\']custom_class(?:=["\'])?([^\]]*?)\]/i',
            '[$1$2$3]',
            $content
        );
        $fix5_count = substr_count($before_fix5, 'id="custom_class') - substr_count($content, 'id="custom_class');
        
        // Debug logging (only if WP_DEBUG is enabled)
        if (defined('WP_DEBUG') && WP_DEBUG && $content !== $original_content) {
            error_log(sprintf(
                '[POLYLANG FIX] Post ID %d: Fixed %d unclosed custom_class=\' attributes, %d unclosed custom_class=", %d empty custom_class, %d id="custom_class" issues',
                $tr_post->ID,
                $fix2_count,
                $fix3_count,
                $fix4_count,
                $fix5_count
            ));
        }
        
        $tr_post->post_content = $content;
        return $tr_post;
    }
    
    /**
     * Solution 2: Clean content when post is saved (Backup Fix)
     * This catches the issue at save time as a safety net
     * 
     * CRITICAL: Fixes unclosed custom_class=' attributes
     * IMPORTANT: Excludes nav_menu_item to prevent menu structure issues
     */
    add_filter('wp_insert_post_data', 'clean_custom_class_on_save', 10, 2);
    function clean_custom_class_on_save($data, $postarr) {
        // Exclude menu items - they don't contain Enfold shortcodes and menu structure is in postmeta
        if (!isset($data['post_type']) || $data['post_type'] === 'nav_menu_item') {
            return $data;
        }
        
        if (!isset($data['post_content'])) {
            return $data;
        }
        
        $content = $data['post_content'];
        
        // Fix 1: Remove id="custom_class=" or id="custom_class" from content
        $content = preg_replace(
            '/\s+id=["\']custom_class(?:=["\'])?/i',
            '',
            $content
        );
        
        // Fix 2: Fix unclosed custom_class=' attributes
        $content = preg_replace(
            "/custom_class='(?=\s|'|])/i",
            "custom_class=''",
            $content
        );
        
        // Fix 3: Fix unclosed custom_class=" (double quotes)
        $content = preg_replace(
            '/custom_class="(?=\s|"|])/i',
            'custom_class=""',
            $content
        );
        
        // Fix 4: Remove empty custom_class='' or custom_class="" attributes
        $content = preg_replace(
            "/\s+custom_class=['\"]{2}/i",
            '',
            $content
        );
        
        $data['post_content'] = $content;
        return $data;
    }
    
    /**
     * Solution 3: Clean content right after Polylang duplication
     * This runs immediately after Polylang creates a sync post
     * 
     * CRITICAL: Fixes unclosed custom_class=' attributes that break Enfold
     * IMPORTANT: Excludes nav_menu_item to prevent menu structure issues
     */
    add_action('pll_created_sync_post', 'clean_enfold_content_after_duplication', 5, 4);
    function clean_enfold_content_after_duplication($post_id, $tr_id, $lang, $strategy) {
        $post = get_post($tr_id);
        if (!$post) {
            return;
        }
        
        // Exclude menu items - they don't contain Enfold shortcodes
        if ($post->post_type === 'nav_menu_item') {
            return;
        }
        
        $content = $post->post_content;
        $original = $content;
        
        // Fix 1: Remove malformed id="custom_class" issues
        $content = preg_replace('/\s+id=["\']custom_class(?:=["\'])?/i', '', $content);
        
        // Fix 2: Fix unclosed custom_class=' attributes (THE MAIN ISSUE)
        // Replace custom_class=' (unclosed) with custom_class='' (properly closed)
        $before_fix2 = $content;
        $content = preg_replace(
            "/custom_class='(?=\s|'|])/i",
            "custom_class=''",
            $content
        );
        $fix2_count = substr_count($before_fix2, "custom_class='") - substr_count($content, "custom_class='");
        
        // Fix 3: Fix unclosed custom_class=" (double quotes)
        $before_fix3 = $content;
        $content = preg_replace(
            '/custom_class="(?=\s|"|])/i',
            'custom_class=""',
            $content
        );
        $fix3_count = substr_count($before_fix3, 'custom_class="') - substr_count($content, 'custom_class="');
        
        // Fix 4: Remove empty custom_class='' or custom_class="" attributes entirely
        // Enfold doesn't need empty custom_class attributes
        $before_fix4 = $content;
        $content = preg_replace(
            "/\s+custom_class=['\"]{2}/i",
            '',
            $content
        );
        $fix4_count = (substr_count($before_fix4, "custom_class=''") + substr_count($before_fix4, 'custom_class=""')) - 
                      (substr_count($content, "custom_class=''") + substr_count($content, 'custom_class=""'));
        
        // Fix 5: Ensure custom_class attributes with values are properly formatted
        $content = preg_replace_callback(
            '/\[([a-z_]+)([^\]]*?)\s+custom_class=([^\s"\']+)([^\]]*?)\]/i',
            function($matches) {
                // Ensure custom_class has quotes if missing
                $value = trim($matches[3]);
                if (!preg_match('/^["\'].*["\']$/', $value)) {
                    $value = '"' . esc_attr($value) . '"';
                }
                return '[' . $matches[1] . $matches[2] . ' custom_class=' . $value . $matches[4] . ']';
            },
            $content
        );
        
        // Debug logging (only if WP_DEBUG is enabled)
        if (defined('WP_DEBUG') && WP_DEBUG && $content !== $original) {
            error_log(sprintf(
                '[POLYLANG FIX] Post ID %d (from %d): Fixed %d unclosed custom_class=\', %d unclosed custom_class=", %d empty custom_class attributes',
                $tr_id,
                $post_id,
                $fix2_count,
                $fix3_count,
                $fix4_count
            ));
        }
        
        if ($content !== $original) {
            wp_update_post(array(
                'ID' => $tr_id,
                'post_content' => $content
            ));
        }
    }
    
    /**
     * Solution 4: Clean content on frontend display (Final Safety Net)
     * This ensures broken content doesn't display even if it got into the database
     */
    add_filter('the_content', 'remove_custom_class_id_from_html', 999);
    function remove_custom_class_id_from_html($content) {
        // Remove id="custom_class=" (malformed with extra equals)
        $content = preg_replace('/\s+id=["\']custom_class=["\']?/i', ' ', $content);
        
        // Remove id="custom_class" (literal value only)
        $content = preg_replace('/\s+id=["\']custom_class["\']/i', ' ', $content);
        
        return $content;
    }
    
    #1492610

    hello
    i have the same problem…
    I’m about to put a site made with enfold online but when I test sending an email from the contact form, it says it was sent successfully but it doesn’t reach its destination. how to solve?

    #1492605

    Hi,

    Please try to update to the latest version first of all: https://kriesi.at/documentation/enfold/theme-update/. If that doesn’t help then try to temporarily deactivate all plugins or custom code you might have added, to see if that changes anything.

    Best regards,
    Rikard

    #1492601
    #1492591

    Hi,

    Thank you for the update.

    You can apply a custom css class (e.g “av-tab-section-title-limit”) to the tab sections where you need the modifications, then adjust the selectors in the css rules accordingly. Please check this documentation for more information on how to apply custom css class names to the elements.

    https://kriesi.at/documentation/enfold/add-custom-css/

    #top .av-tab-section-title-limit .av-tab-section-tab-title-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    #top .av-tab-section-title-limit .av-tab-section-tab-title-container > * {
        flex: 0 0 calc((100% / 6) - (10px * 5 / 6));
        max-width: calc((1310px - (10px * 5)) / 6);
        box-sizing: border-box;
    }

    Best regards,
    Ismael

    #1492589

    In reply to: Editor page not works

    Hey Luckyredsun,

    Thank you for the inquiry.

    We tried logging in, but the account above is invalid. Please check the info carefully. Which editor are you using, the classic editor or the block editor? Please try to reselect the editor in Enfold > Theme Options > Select Your Editor, located at the very bottom.

    fc5lVMx.md.png

    Let us know the result.

    Best regards,
    Ismael

    carrclaudia
    Participant

    Hello Enfold Support Team,
    I am experiencing a recurring fatal error on a live website (https://www.drisabelbalza.com) that triggers WordPress “Your Site is Experiencing a Technical Issue” emails repeatedly.

    Environment:
    WordPress version: 6.8.3
    Parent theme: Enfold 7.1.3
    Active theme: Enfold Child (version 7.1.3)
    Current plugin: (version )
    PHP version: 7.4.33

    Error Details:
    An error of type E_ERROR was caused in line 223 of the file /home/drisabel/public_html/wp-content/themes/enfold/includes/classes/class-social-media-icons.php. Error message: Uncaught Error: Class ‘avia_font_manager’ not found in /home/drisabel/public_html/wp-content/themes/enfold/includes/classes/class-social-media-icons.php:223

    Stack trace:
    #0 /home/drisabel/public_html/wp-content/themes/enfold/includes/classes/class-social-media-icons.php(259): avia_social_media_icons->build_icon(Array)
    #1 /home/drisabel/public_html/wp-content/themes/enfold/includes/classes/class-social-media-icons.php(288): avia_social_media_icons->html()
    #2 /home/drisabel/public_html/wp-content/themes/enfold/includes/helper-main-menu.php(22): avia_social_media_icons(Array, false)
    #3 /home/drisabel/public_html/wp-includes/template.php(812): require(‘/home/drisabel/…’)
    #4 /home/drisabel/public_html/wp-includes/template.php(745): load_template(‘/home/drisabel/…’, false, Array)
    #5 /home/drisabel/public_html/wp-includes/general-template.php(206): locate_template(Array, true, false, Array)
    #6 /home/drisabel/public_html/wp-content/themes/enfold/header.php(275): get_template_part(‘includes/helper’, ‘main-menu’)
    #

    What I’ve already tried:
    1- Purchased and installed a fresh, original Enfold 7.1.3 download
    2- Verified that only one Enfold parent theme exists in /themes/enfold
    3- Confirmed child theme only contains custom files (no class overrides). It exists in /themes/enfold-child
    4- Switched PHP versions (8.1 → 7.4.33)
    5- Cleared cache and re-uploaded theme via FTP
    Despite this, the error has persisted since August 27, 2025, and continues to send automated WordPress admin emails. The live website https://www.drisabelbalza.com works fine and normally, but my client wants to stop receiving these alert emails from WordPress.

    Questions:
    It appears that avia_font_manager is not being loaded before class-social-media-icons.php is called. Could you please advise:
    – Which file should load avia_font_manager in Enfold 7.1.3? May I need a code snippet somewhere?
    – Whether this indicates a corrupted load order or a missing include
    – If this is a known issue with WordPress 6.8.3
    – I had a long stack trace list when I switched from PHP 7.4.33 to PHP 8.1, and it was worse in PHP 8.3, which is why I downgraded to PHP 7.4.33, where the list is shorter.

    Thank you for your help.
    Best regards,
    Claudia.

    • This topic was modified 1 month, 2 weeks ago by carrclaudia.
    • This topic was modified 1 month, 2 weeks ago by carrclaudia.
    • This topic was modified 1 month, 2 weeks ago by carrclaudia.
    • This topic was modified 1 month, 2 weeks ago by carrclaudia.
    • This topic was modified 1 month, 2 weeks ago by carrclaudia.
    • This topic was modified 1 month, 2 weeks ago by carrclaudia.
    #1492577

    In reply to: Chacnging letterfont

    As far as i can see : https://www.microsoft.com/en-us/download/details.aspx?id=106087
    You can download it from Microsoft – but the included Eula Text is not clear enought if a web-font usage is allowed.

    If you own that font – maybe you should be clear what you like to use as font-weight. Even the normal Aptos got a lot of different font-weights (regular, light, semibold, bold, extrabold, black). My recommendation is to use a selection only on performance reasons – f.e. (light, regular, bold)

    To have a better modern browser support – take the ttf files and convert them to woff2. (f.e. on https://transfonter.org/)
    Put all font-weights (ttf and woff2) in a folder f.e. “Aptos” – and zip that folder for uploading it to the enfold font-manager.
    After that – you can choose that font at the end of the drop-downlist for Body font and headings.

    #1492573

    Hey astjo,

    Please try the suggestions listed here: https://kriesi.at/documentation/enfold/contact-form/#my-contact-form-is-not-sending-emails-

    Best regards,
    Rikard

    #1492572

    Hey CastlegateIT,

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

    .tabcontainer {
      margin: 0;
    }

    Best regards,
    Rikard

    #1492568
    Stephan_H
    Participant

    In your Law Demo (https://kriesi.at/themes/enfold-law/) the font file justice.woff2 seems to be missing (404). Where can I get that file from?
    Thanks.

    #1492564

    Topic: Chacnging letterfont

    in forum Enfold
    JoStudioDeRijp
    Participant

    Hi Enfold!
    I have a question; how can I change the letterfont on this website: https://waterlandendijken.nl
    into the font Aptos. It is now the Open Sans. Aptos is nog on the list but our cleint asks for it. Is that possible?
    I hope you can help me!

    Kind regards, Jolanda, JoStudio

    #1492543

    Hi,
    Glad that Guenni007 & Ismael could help, thank you Guenni007, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.

    Best regards,
    Mike

    #1492542

    Hi,
    Glad that Guenni007 could help, thank you Guenni007, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.

    Best regards,
    Mike

    #1492522

    The pages that are designated by the plugin do not apply the enfold general styling in terms of colours of fonts, backgrounds, etc.
    Such pages are for example this one: https://tricorn-travels.com/all-trips/
    You see if white (#ffffff) because i manually inputted the CSS for it. None of the text colours are what the enfold general styling should impose.
    If the enfold general styling was applying to the page, here how the trip search would look: https://tricorn-travels.com/
    Now, I could manually edit the CSS for everything on all plugin pages…. which is lenghty…..But I would like to know: is there a simple CSS that makes the Enfold Styling override plugins for all looks (font color, background, alternate colour etc) on all the pages of my website included the plugin designated pages?

    #1492519

    In reply to: Captcha problem

    Hey Paolo,

    Did you try generating a new token in your Google account? Please refer to the documentation for further help: https://kriesi.at/documentation/enfold/contact-form/#captcha

    Best regards,
    Rikard

    #1492512

    Hi,

    Thank you for the info.

    We just noticed that the site contains a very old version of the theme (6.0.6). Please download the latest version (7.1.3) from your Themeforest account, then try to update the theme manually via FTP. Please check the documentation below for more info.

    https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp

    The upgrade should fix the issue with the fold/unfold feature and the rest of the layout issues in the builder.

    Best regards,
    Ismael

    #1492502

    Hi,

    Thanks for the update, we’ll close this thread for now then. Please open a new thread if you should have any further questions or problems.

    Thanks @guenni007 for helping out :-)

    Best regards,
    Rikard

    #1492495

    Hey Alex,

    We are actively developing Enfold. So far we released 6 updates this year and planning to release another one before the new year.

    Adding new demos is something our team is considering, however, we can’t confirm if or when this would occur.

    If you have any specific features you’d like to see in Enfold, please feel free to share, and we’ll pass it to our development team.

    Best regards,
    Yigit

    #1492493

    Hi, i had to manually change the background color with CSS. You can see it in the customisation tab.
    However, it’s still not the best solution as those pages do not inherit all the styling set on Enfold via General Styling. Could you take a look? I put the new credentials for the account below

    you can see (including a snippet for child-theme functions.php ) a different solution – where the margin-bottom value is ruled by a script.

    Only for masonry galleries – not for Masonry Entries

    This code fixes caption overlay issues in Enfold’s Masonry elements by:
    – Flexible Masonry: Places captions below images instead of overlaying them
    – Perfect Grid: Dynamically calculates margin-bottom based on caption height

    see: https://webers-testseite.de/masonry-with-captions/

    PS: for pefect grid and automatic grid – there are sometimes timing problems . Maybe i find some time to correct it in the script. For flexible Masonry this solution works very good.

    Hey milkrow,
    Thanks for your patience, if I understand correctly you are adding images in the text element in the ALB (advanced layout builder):
    fYB7rrX.md.png
    and instead of just the caption showing below the image, you want caption, description, copyright, and title to show like this:
    fYBExaI.md.png
    In my tests this snippet in your child theme functions.php works:

    add_filter('the_content', 'enfold_add_image_metadata');
    
    function enfold_add_image_metadata($content) {
        // Only process on frontend
        if (is_admin()) {
            return $content;
        }
        
        // Pattern to match images with WordPress attachment IDs
        $pattern = '/<img[^>]+wp-image-(\d+)[^>]*>/i';
        
        preg_match_all($pattern, $content, $matches);
        
        if (!empty($matches[0])) {
            foreach ($matches[0] as $index => $img_tag) {
                $attachment_id = $matches[1][$index];
                
                // Get image metadata
                $title = get_the_title($attachment_id);
                $caption = wp_get_attachment_caption($attachment_id);
                $description = get_post_field('post_content', $attachment_id);
                $copyright = get_post_meta($attachment_id, '_avia_attachment_copyright', true);
                
                // Build metadata HTML
                $metadata_html = '';
                
                if ($title || $caption || $description || $copyright) {
                    $metadata_html .= '<div class="image-metadata" style="line-height: 14px; color: #666;">';
                    
                    if ($title) {
                        $metadata_html .= '<div class="image-title" style="font-weight: bold;">' . esc_html($title) . '</div>';
                    }
                    
                    if ($caption) {
                        $metadata_html .= '<div class="image-caption" style="font-style: italic;">' . esc_html($caption) . '</div>';
                    }
                    
                    if ($description) {
                        $metadata_html .= '<div class="image-description">' . wp_kses_post($description) . '</div>';
                    }
                    
                    if ($copyright) {
                        $metadata_html .= '<div class="image-copyright">© ' . esc_html($copyright) . '</div>';
                    }
                    
                    $metadata_html .= '</div>';
                }
                
                // Replace the image with image + metadata
                if ($metadata_html) {
                    $replacement = $img_tag . $metadata_html;
                    $content = str_replace($img_tag, $replacement, $content);
                }
            }
        }
        
        return $content;
    }
    
    /**
     * Add CSS to hide default WordPress caption text
     * while keeping the caption container styling
     */
    add_action('wp_head', 'enfold_hide_default_caption_text');
    
    function enfold_hide_default_caption_text() {
        ?>
        <style>
            /* Hide the default WordPress caption text inside caption shortcode */
            .wp-caption p {
                display: none !important;
            }
        </style>
        <?php
    }

    In your media library add the text to your image:
    fYBwZjS.md.png

    Best regards,
    Mike

    Hey ti2media,
    Try this css in your child theme stylesheet:

    #top.home #av-masonry-1.av-masonry a.av-masonry-entry {
    	margin-bottom: 50px !important;
    }
    #top.home #av-masonry-1.av-masonry .av-inner-masonry {
    	overflow: visible;
    }
    #top.home #av-masonry-1.av-masonry .av-inner-masonry-content {
    	position: relative !important;
    	top: 100%;
    	width: auto;
    }

    Then clear your cache and check.

    Based on Guenni007’s solution.

    Best regards,
    Mike

    #1492473

    Hi,
    Glad that Ismael could help, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.

    Best regards,
    Mike

    Hi,

    Thank you for the update.

    Image captions are associated with featured images or other media attachments, which are stored as a separate post type (attachment). This is different from regular posts or portfolio items, which do not have a built-in caption field — only an excerpt if supported. It is definitely possible to retrieve the caption of the featured image attached to a post but this will require modifications to the templates, which is beyond the scope of support.

    If you want to try it yourself, you can find the Masonry template in the enfold/config-templatebuilder/avia-shortcode-helpers/class-avia-masonry.php file.

    Thank you for your understanding.

    Best regards,
    Ismael

    #1492435

    The Demo: enfold-business-flat has on all pages a transparent header. !!!
    The transparency logo is shown then. So did you have inserted an alternate logo on :

    on the rest of your pages you do not see any logo because the default logo for transparency on that logo is white – and all pages of your page have a white color-section on top.

    #1492428

    Hey tricorntravels,

    Did you set your preferred colour under Enfold->General Styling->Body background?

    The login details that you posted are not working, please check and verify.

    Best regards,
    Rikard

    #1492425

    In reply to: Theme update

    Hey Grace,

    Thanks for reaching out to us. I see that you are running an old version of the theme, the update to 7.1.3 has to be done manually from the version you are running, please refer to my replies in this thread: https://kriesi.at/support/topic/enfold-4-5-theme-update-update-failed-download-failed-a-valid-url-was-not-pro/#post-1021541
    You can either update manually via FTP: https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#theme-update, or upload the theme as if it was new under Appearance->Themes->Add New Theme.
    If that doesn’t work then please try to delete the whole theme folder, then replace it with the new version. Make sure that you have backups of the site before starting updating.
    Also please read this after you have updated: https://kriesi.at/documentation/enfold/theme-registration/

    If you don’t own a license for the theme, then you can buy one here: https://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990

    Best regards,
    Rikard

    #1492422
    Grace Donaldson
    Guest

    HI Team,
    I need to update the enfold theme on my website to allow me to update PHP. (I have had the theme on the website now for around 7-8 years
    In order to update the theme on wordpress, I need themeforest username and API key which I don’t have.

    Are you able to assist?
    Thanks!

Viewing 30 results - 301 through 330 (of 244,012 total)