Viewing 30 results - 301 through 330 (of 16,897 total)
  • Author
    Search Results
  • Hi Ismael,

    I do have the problem on multiple installs right now. The editor can “edit_posts” and I still get the error …

    You find the login details in private.

    The settings are:
    • Deactivated ALB for everyone exept admin
    • Code in functions.php to allow it for admin AND editor
    • Without “remove_filter” because change in 2021 (see above)
    • Both have “edit_posts” capability
    • Error occurs only in Enfold 7

    Hope you find a solution. Thanks in advance!

    Best regards,
    Daniel

    #1484525
    NBSGMBH
    Participant

    Hallo,

    unsere Seite ist total zerpflügt. Enold Version 7.1, PHP 8.3.21
    Brauche dringend Hilfe.
    Vielen Dank, Martin

    Hello, our site is totally ploughed up. Enold version 7.1, PHP 8.3.21
    Need urgent help.
    Many thanks, Martin

    • This topic was modified 11 months, 1 week ago by NBSGMBH.
    spooniverse
    Participant

    Dear support members, hi @Ismael,

    in 2021 I got a helpful piece of code that is misbehaving in the latest version of the theme right now. See this thread and post #858672.

    It ist still working to load the ALB for defined user roles (in this example editor and administrator), while the option in the theme settings is set to restrict the ALB only for admins:

    function ava_enable_alb_for_editor() {
    	add_filter('avf_allow_drag_drop', 'avia_disable_alb_drag_drop_mod', 40, 1);
    }
    add_action('init', 'ava_enable_alb_for_editor');
    
    function avia_disable_alb_drag_drop_mod( $disable )
    {
        $user = wp_get_current_user();
        $allowed_roles = array('editor', 'administrator', 'author');
    	$check = array_intersect( $allowed_roles, $user->roles );
    
    	if( ! empty( $check ) )
    	{
    		$disable = avia_get_option('lock_alb', 'disabled') != "lock_alb" ? true : false;
    	}
    
    	return $disable;
    }

    I can access the ALB as administrator and as editor, so this part of the code is alright. Perfect! But as editor I can’t load a template from the template dropdown in the upper right corner. Everything else is editable and finde, but as I want to load an ALB template I get an error message:

    An error has occurred
    Error retrieving content – please reload the page and try again

    Seems to be a rights problem. If I delete the code above from functions.php I can’t access the ALB as editor. If I furthermore toggle the option to access the ALB for everybody I can use the ALB as editor and load ALB templates from the dropdown. But: I want only admins and editors to use ALB (and ALB templates).

    Any ideas why the behaviour of the code changed and I can’t access the ALB templates anymore?

    I appreciate your help!

    Kind regards,
    Daniel

    #1484414

    Hey envis,
    You should upload only the webp images and add them to the galleries and other elements. I tested this on the different galleries, masonry, featured images, color section background image, blog post element, ect. There is no need to upload two versions of each image, just use the webp format directly.
    Assuming that you are only uploading jpg images and then using a plugin to convert them to webp copies, you could add this code to the end of your child theme functions.php file in Appearance ▸ Editor to show the webp version if the file name and location is exactly the same, the draw back to this approach is that you have twice as many images on your server with only half being used. This also won’t rewrite CSS background images in external CSS files — only inline styles and HTML output, so if you are using CSS File Compression And Merging, or another caching plugin and have background images such as a background image in a color section or a masonry element it may not work. In my tests once I cleared the css and cache it worked for me except the gallery short code like [gallery link="file" columns="5" ids="4350,870,868,864,862"] the gallery and other elements did work.

    add_filter('wp_get_attachment_image_src', function($image, $attachment_id, $size) {
        $webp_path = preg_replace('/\.(jpe?g|png)$/i', '.webp', get_attached_file($attachment_id));
        $webp_url = preg_replace('/\.(jpe?g|png)$/i', '.webp', $image[0]);
    
        if (file_exists($webp_path)) {
            $image[0] = $webp_url;
        }
    
        return $image;
    }, 10, 3);
    //for background images
    // Replace image URLs with .webp if the .webp version exists
    function enfold_replace_with_webp($buffer) {
        // Replace src="...jpg|png" and url('...jpg|png') with .webp if available
        return preg_replace_callback(
            '/(?:src|url)\s*=\s*["\']([^"\']+\.(?:jpe?g|png))["\']|url\(\s*["\']?([^"\')]+\.(?:jpe?g|png))["\']?\s*\)/i',
            function($matches) {
                $original_url = $matches[1] ?: $matches[2];
                if (!$original_url) return $matches[0];
    
                $parsed_url = wp_parse_url($original_url);
                if (empty($parsed_url['path'])) return $matches[0];
    
                $img_path = $_SERVER['DOCUMENT_ROOT'] . $parsed_url['path'];
                $webp_path = preg_replace('/\.(jpe?g|png)$/i', '.webp', $img_path);
                $webp_url = preg_replace('/\.(jpe?g|png)$/i', '.webp', $original_url);
    
                if (file_exists($webp_path)) {
                    // Return updated string (preserving whether it was src= or url())
                    if ($matches[1]) {
                        return str_replace($original_url, $webp_url, $matches[0]);
                    } else {
                        return 'url("' . $webp_url . '")';
                    }
                }
    
                return $matches[0];
            },
            $buffer
        );
    }
    
    // Start output buffering early
    function enfold_start_webp_buffering() {
        ob_start('enfold_replace_with_webp');
    }
    add_action('template_redirect', 'enfold_start_webp_buffering');
    

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    Also note that your server media handling editor needs to also support webp files, mine is WP_Image_Editor_GD, which is default for WordPress:
    Screen Shot 2025 05 18 at 5.02.43 PM
    If you are not able to directly use the webp images in your elements, this could be the cause.

    Best regards,
    Mike

    #1484291

    Hello,

    Is there already a solution for the problem? The burger is visible, but clicking it on any device doesn’t open the menu.
    I alos tried various changes in settings but nothing helps.

    Versions:
    Enfold 7.1
    Wordpress 6.8.1
    PHP 8.3.19 (ea-php83)

    Kind Regards,

    Teun van Wijck

    Hi,

    Deprecated: Function avia_font_manager::frontend_icon is deprecated since version 7.0! Use Use

    Did you modify any shortcodes in the child theme? It’s possible they are still using a deprecated function. You should also check the child theme’s functions.php file. We can’t access the file anymore because the Appearance > Theme File Editor is no longer available.

    We also recommend testing this on a different host, as it’s possible the issue is server-related. Try cloning the site to a server hosted by another company or platform.

    Best regards,
    Ismael

    Good morning, Ismael,

    Thank you for the solution to the select warning; it seems to have resolved the issue. We do have an online test environment, but it is not a clone of the live version—only a local site that is a copy.

    What do you suggest I should test?

    Thank you!
    #edit 1
    Update regarding the deprecation warnings: When I deactivate Yoast, they are gone. I’ll pass that problem to the plugin author.

    That sadly leaves us with the core problem, which still persists: the slow editing for content elements with icon features.
    sill a thing

    #edit 2
    some more digging on the local test environment i found this:

    Deprecated: Function avia_font_manager::frontend_icon is deprecated since version 7.0! Use Use avia_font_manager::get_frontend_icon instead instead. in C:\**local-path**\wp-includes\functions.php on line 6121

    • This reply was modified 11 months, 2 weeks ago by ekf_wp.
    • This reply was modified 11 months, 2 weeks ago by ekf_wp.
    #1484007

    In reply to: Ctrl + F in html

    Many thanks Guenni007

    Thank you very much for your presentation:

    I have now installed everything according to your instructions
    Test page: https://wuensche.li/
    in the functions.php
    and
    in the quick css
    How do I now make the button appear on the imprint page?

    Many thanks
    Best regards
    Frank

    Hi,
    When I check my single post using the Default (Business) blog style, the Tags show at the bottom of the page without the filter above:
    Screen Shot 2025 05 10 at 1.07.11 PM
    To move them in line with the categories and other meta try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function move_tag_meta_inline_with_other_meta_on_single_posts() { ?>
      <script>
    document.addEventListener('DOMContentLoaded', function() {
        if (document.querySelector('.single-post')) {
            const blogTags = document.querySelector('.blog-tags');
            const blogCategories = document.querySelector('.blog-categories');
            
            if (blogTags && blogCategories) {
                const strongTag = blogTags.querySelector('strong');
                if (strongTag && strongTag.textContent === 'Tags:') {
                    strongTag.replaceWith(strongTag.textContent);
                }
                
                const separator = document.createElement('span');
                separator.className = 'text-sep';
                separator.textContent = '/';
                
                blogCategories.insertAdjacentElement('afterend', separator);
                separator.insertAdjacentElement('afterend', blogTags);
            }
        }
    });
    </script>
      <?php
    }
    add_action( 'wp_footer', 'move_tag_meta_inline_with_other_meta_on_single_posts', 99 );

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    Screen Shot 2025 05 10 at 1.13.38 PM

    Best regards,
    Mike

    Hey Oriano,
    Users with “edit_published_posts” permissions such as Administrators, Editors and Authors can view the site.
    Screen Shot 2025 05 10 at 9.42.27 AM
    You could edit line 304 in /enfold/includes/classes/class-avia-custom-pages.php
    but there is not a way to change this in your child theme, so you would need to update this file for each version update.
    Your best option would be to use a plugin instead.

    Best regards,
    Mike

    #1483967

    Hey Martin,
    To add a red border to items that you tab to, you can add this css:

    a:focus,button:focus {
      border:1px solid red !important;
    }

    adjust the color and size to suit.
    Your accessibility plugin is at the bottom of the page in the DOM, so you would need to tab the whole page to get to it, perhaps the plugin settings has an option to move it to the top of the DOM? The plugin button also has a tabindex of -1 so you can’t tab to it, check the plugin settings.
    If you can’t change these in the settings, try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function custom_script() { ?>
      <script>
    document.addEventListener('DOMContentLoaded', function() {
    	const accessibilityButton = document.querySelector('#accessibility-trigger-button');
        const messageBar = document.querySelector('#accessibility-button');
        const body = document.querySelector('body#top');
        body.prepend(messageBar);
        accessibilityButton.setAttribute('tabindex', '1');
    });
    </script>
      <?php
    }
    add_action( 'wp_footer', 'custom_script', 99 );

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    This javascript will move the accessibility-button in the DOM to the top of the page so it is the first tab, the icon will still show at the bottom of the page, it will also change the tabindex so you can tab to it. With the css above to add a red border, the first tab will show this:
    Screen Shot 2025 05 10 at 6.24.55 AM
    and then if you hit the enter key it will open:
    Screen Shot 2025 05 10 at 6.27.43 AM

    Best regards,
    Mike

    #1483964

    In reply to: Ctrl + F in html

    hail brave new AI world

    New snippet
    see in Action here: https://webers-testseite.de/impressum/

    it is a draggable Window:

    this is for child-theme functions.php:

    see code here on paste bin: https://pastebin.com/zc4fvX1w

    because of a innerHtml (lines 158-176) it is not possible to post it here – (maybe mod knows how)

    and here is the style for quick css

    /* --- Draggable Search Window --- */
    #gcmSearchUIContainer { /* Changed ID for clarity */
      position: fixed;
      top: 100px; /* Initial position from the top */
      left: 50%;  /* Start horizontally centered */
      transform: translateX(-50%); /* Adjust for true centering */
      width: 380px; /* A suitable width for a small window */
      background-color: #f9f9f9;
      border: 1px solid #ccc;
      border-radius: 8px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.25);
      z-index: 100001; /* Ensure it's on top, slightly higher than before if needed */
      overflow: hidden; /* To contain rounded corners with header */
    }
    
    #gcmSearchUIContainer.hidden {
      display: none;
    }
    
    #gcmSearchUIHeader {
      padding: 10px 15px;
      background-color: #e8e8e8;
      border-bottom: 1px solid #ccc;
      cursor: move; /* Indicates this area is draggable */
      border-top-left-radius: 8px; /* Match container's radius */
      border-top-right-radius: 8px; /* Match container's radius */
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    #gcmSearchUIHeader .gcm-title {
      font-weight: bold;
      font-size: 1.1em;
      color: #333;
    }
    
    #gcmSearchUIHeader #gcmCloseSearchBtnDraggable { /* Specific ID for close button in this context */
      background: none;
      border: none;
      font-size: 1.3em;
      font-weight: bold;
      color: #777;
      cursor: pointer;
      padding: 0 5px;
    }
    #gcmSearchUIHeader #gcmCloseSearchBtnDraggable:hover {
      color: #000;
    }
    
    #gcmSearchUIBody {
      padding: 15px;
      display: flex;
      flex-direction: column; /* Stack elements vertically */
      gap: 10px; /* Space between elements in the body */
    }
    
    #gcmSearchUIBody #gcmSearchInputDraggable { /* Specific ID for input */
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 4px;
      box-sizing: border-box;
    }
    
    #gcmSearchUIBody .gcm-controls-row {
      display: flex;
      justify-content: space-between; /* Space out controls */
      align-items: center;
      gap: 8px; /* Space between buttons in a row */
    }
    
    #gcmSearchUIBody .gcm-navigation {
        display: flex;
        gap: 5px;
    }
    
    #gcmSearchUIBody button {
      padding: 8px 12px;
      border: 1px solid #aaa;
      border-radius: 4px;
      background-color: #e7e7e7;
      cursor: pointer;
      min-width: 40px; /* For Next/Prev buttons */
      text-align: center;
    }
    
    #gcmSearchUIBody button:hover {
      background-color: #d7d7d7;
    }
    
    #gcmSearchUIBody #gcmSearchBtnDraggable { /* Specific ID */
        flex-grow: 1; /* Allow Find button to take more space if needed */
    }
    
    #gcmSearchUIBody .gcm-results-count-draggable { /* Specific ID */
      font-size: 0.95em;
      color: #333;
      white-space: nowrap; /* Prevent wrapping */
    }
    
    /* --- Highlighting Styles (remain the same) --- */
    .custom-highlight {
      background-color: yellow;
      color: black;
      font-weight: bold;
    }
    
    .custom-highlight.current-custom-highlight {
      background-color: orange;
      outline: 1px solid red;
    }

    Do not forget to remove the leading php on that downloaded snippet before you insert it to your child-theme functions.php

    Download: https://pastebin.com/dl/zc4fvX1w

    #1483927
    targetors
    Participant

    Hi, after some recent updates, our Enfold burger menu stopped opening at some point (used to work fine for years). The burger is visible, but clicking it on any device doesn’t open the menu.

    Error caught in the browser console: Uncaught RangeError: Maximum call stack size exceeded

    We have tried disabling all plugins, clearing cache and various other changes to burger menu settings, and nothing has worked.

    This is pretty big problem for us, since it is the main navigation method for mobile and smaller screen users, please help!

    Versions:
    Enfold 7.1
    Wordpress 6.8.1
    PHP 8.3.19 (ea-php83)

    34oldcat29
    Participant

    Pretty sure there’s a newer version. I already purchased a new license (7.1). I activated the license in the theme options. So why would it tell me this is the newest version?

    Additional info;
    Currently on PHP: 7.4
    Currently on WordPress: 6.7.2
    Currently on Enfold: 4.2.6

    Can’t update php as Enfold 4.2.6 won’t run 8.2 php
    Tried to update wordpress but Installation failed
    Received the following error message…
    Could not copy file.: wordpress/xmlrpc.php
    Installation failed.

    Not sure what else to try. Thoughts?

    Hi @Ismael, @Guenni007 thanks for your help.


    @Guenni007

    I have try to your code (on child theme function.php), but don’t worg. :(


    @Ismael

    Have you tried removing the condition if( $show_meta_tags && has_tag() )?

    I’m working on MAMP, so I can get an acces :(

    This is the Blog settings that I’m using.
    But I can also change the setting of the blog.
    Important for me is to have the tags below the meta line Date, categories etc…

    Best regards,
    Oriano

    Hey epkdesign,

    Thank you for the inquiry.

    Do the portfolio entries share the same category aside from commercial or residential? If they do, sorting by category will not be possible since they are all grouped under the same category. If that’s not the case, you can use the following filter in the functions.php file.

    add_filter( 'avf_post_nav_settings', 'avf_post_nav_settings_mod', 10, 1);
    function avf_post_nav_settings_mod($settings)
    {
        $settings['same_category'] = true;
        return $settings;
    }

    Best regards,
    Ismael

    #1483765

    Topic: Typ E_ERROR

    in forum Enfold
    SanKlei
    Participant

    Hallo @kriesi, ich habe vom WordPress Support eine E-mail erhalten, dass etwas in meinem Theme fehlerhaft sei und ich beim Anbieter Hilfe suchen soll.

    WordPress-Version 6.8.1
    Aktives Theme: Enfold (Version 7.1)
    Aktuelles Plugin: (Version )
    PHP-Version 7.4.30

    Fehler-Details
    ==============
    Ein Fehler vom Typ E_ERROR wurde in der Zeile 182 der Datei /var/www/html/wp-content/themes/enfold/framework/php/widgets/widget-classes/class-avia-instagram.php verursacht. Fehlermeldung: Allowed memory size of 134217728 bytes exhausted (tried to allocate 4096 bytes)

    Das Instagram Widget wollte ich tatsächlich schon des Öfteren nutzen im Blog z.B., es lädt aber nie die 3 aktuellsten Beiträge und zeigt dann an, man solle es später versuchen. Später funktioniert es aber auch nicht. Ich dachte eigentlich, ich hätte das Widget dann nicht genutzt. Aber vielleicht ist das eine Spur.

    Ich freue mich über eine Kontaktaufnahme und Hilfe hier.
    Danke und viele Grüße, Sandra

    Getting this in debug.log

    [06-May-2025 23:25:05 UTC] PHP Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the it-l10n-ithemes-security-pro domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /var/www/vhosts/conoverlawllc.com/httpdocs/wp-includes/functions.php on line 6121

    Hey Oriano,

    Thank you for the inquiry.

    You can modify the includes > loop-index.php file and look for this code around line 573:

    if( $show_meta_tags && has_tag() )
    							{
    								$meta_tags  = '<span class="blog-tags-header minor-meta">';
    								$meta_tags .=		get_the_tag_list( __( 'Tags:', 'avia_framework' ) . ' <span> ', ', ', '</span>' );
    								$meta_tags .= '</span>';
    
    								$meta_info['tags'] = $meta_tags;
    							}
    

    You can move it below this block of code (526):

    if( 'blog-meta-category' == avia_get_option( 'blog-meta-category' ) )
    						{
    							if( ! empty( $cats ) )
    							{
    								$meta_cats  = '<span class="blog-categories minor-meta">' . __( 'in', 'avia_framework') . ' ';
    								$meta_cats .=	trim( $cats );
    								$meta_cats .= '</span>';
    
    								$meta_info['categories'] = $meta_cats;
    							}
    						}
    

    Or you can remove the is_single() condition and the if ( $show_meta_tags && has_tag() ) block.

    Best regards,
    Ismael

    #1483615

    put this to your child-theme functions.php:

    function only_one_toggle_open_at_the_same_time(){
    ?>
    <script>
    window.addEventListener("DOMContentLoaded", function () { 
    (function($){
        $('.toggler').on('click', function(){
            $('.toggler').not(this).next('.toggle_wrap').removeClass('active_tc');
            $('.toggler').not(this).removeClass('activeTitle'); 
        }); 
    })(jQuery);
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'only_one_toggle_open_at_the_same_time');

    if you like to have that only for that page – use conditional tags – and insert instead:

    function only_one_toggle_open_at_the_same_time(){
    if ( is_page(719) ) {
    ?>
    <script>
    window.addEventListener("DOMContentLoaded", function () { 
    (function($){
        $('.toggler').on('click', function(){
            $('.toggler').not(this).next('.toggle_wrap').removeClass('active_tc');
            $('.toggler').not(this).removeClass('activeTitle'); 
        }); 
    })(jQuery);
    });
    </script>
    <?php
    }
    }
    add_action('wp_footer', 'only_one_toggle_open_at_the_same_time');

    Hi,

    Thank you for the update.

    Try to use this shortcode instead:

    
    function avia_search_cb() {
        ob_start();
        ?>
        <span id="menu-item-search" class="noMobile menu-item menu-item-search-dropdown menu-item-avia-special" role="menuitem">
            <a class="avia-svg-icon avia-font-svg_entypo-fontello"
            aria-label="Search"
            href="?s="
            rel="nofollow"
            title="Click to open the search input field"
            data-avia-search-tooltip='<?php echo esc_attr("
        <search>
            <form role='search' action='" . home_url() . "' id='searchform' method='get'>
    <div>
                    <span class='av_searchform_search avia-svg-icon avia-font-svg_entypo-fontello' data-av_svg_icon='search' data-av_iconset='svg_entypo-fontello'>
                        <svg version='1.1' xmlns='http://www.w3.org/2000/svg' width='25' height='32' viewBox='0 0 25 32' preserveAspectRatio='xMidYMid meet' role='graphics-symbol' aria-hidden='true'>
                            <title>Search</title>
                            <desc>Search</desc>
                            <path d='M24.704 24.704q0.96 1.088 0.192 1.984l-1.472 1.472q-1.152 1.024-2.176 0l-6.080-6.080q-2.368 1.344-4.992 1.344-4.096 0-7.136-3.040t-3.040-7.136 2.88-7.008 6.976-2.912 7.168 3.040 3.072 7.136q0 2.816-1.472 5.184zM3.008 13.248q0 2.816 2.176 4.992t4.992 2.176 4.832-2.016 2.016-4.896q0-2.816-2.176-4.96t-4.992-2.144-4.832 2.016-2.016 4.832z'></path>
                        </svg>
                    </span>
                    <input type='submit' value='' id='searchsubmit' class='button' title='Enter at least 3 characters to show search results in a dropdown or click to route to search result page to show all results' />
                    <input type='search' id='s' name='s' value='' aria-label='Search' placeholder='Search' required /></div>
    </form>
        </search>
        "); ?>'
            data-av_svg_icon="search"
            data-av_iconset="svg_entypo-fontello">
                <svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="25" height="32" viewBox="0 0 25 32" preserveAspectRatio="xMidYMid meet" role="graphics-symbol" aria-hidden="true">
                    <title>Click to open the search input field</title>
                    <desc>Click to open the search input field</desc>
                    <path d="M24.704 24.704q0.96 1.088 0.192 1.984l-1.472 1.472q-1.152 1.024-2.176 0l-6.080-6.080q-2.368 1.344-4.992 1.344-4.096 0-7.136-3.040t-3.040-7.136 2.88-7.008 6.976-2.912 7.168 3.040 3.072 7.136q0 2.816-1.472 5.184zM3.008 13.248q0 2.816 2.176 4.992t4.992 2.176 4.832-2.016 2.016-4.896q0-2.816-2.176-4.96t-4.992-2.144-4.832 2.016-2.016 4.832z"></path>
                </svg>
                <span class="avia_hidden_link_text">Search</span>
            </a>
        </span>
        <?php
        return ob_get_clean();
    }
    add_shortcode('avia_search', 'avia_search_cb');
    

    Best regards,
    Ismael

    #1483415

    In addition: My current Parent Theme (Enfold) version number is 6.0. 6 and PHP version: 7.4. 33.

    Sorry for the confusion.

    Looking forward to your reply,
    best,
    Marjo

    #1483393
    tomekiii
    Participant

    Hello Everybody,
    For some unexplained reason, the sidebar PHP file was not updated during the latest update (7.1). Does anyone have the file or just the code and could send me a copy here?

    herzliche Grüße
    Tomek

    #1483356
    Marci Rosen
    Guest

    Hi there,

    I have a token for a theme that was purchased 6 years ago and I am trying to update it inside WordPress Admin Dashboard, but it’s saying that there are NO updates in the dashboard. Looks like the Child theme is Version: 4.5.7.1561765787 and the parent theme is 4.5.7, but our hosting company is saying that there is a severe security risk at this version of the theme. How do I get the latest update so that I can then update the PHP to 8.2?

    Lion Speer
    Guest

    Dear Enfold Support Team,

    I am currently running a WordPress website using Enfold version 3.5.4. After updating WordPress to version 6.8, I began experiencing errors when attempting to edit pages. The WP-Admin dashboard and the public-facing website continue to work normally.

    However, when using the layout builder, certain blocks report errors and a message like the following briefly appears:
    Warning: Illegal string offset ‘shortcodehandler’ in /var/www/s7web485/apps/wp2016/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/shortcode-template.class.php on line 480

    I suspect this issue is due to incompatibility between the old theme version and the current WordPress/PHP version.

    I would like to know if updating to the latest version of Enfold would resolve this issue. Unfortunately, I cannot update the theme directly, as it was originally set up by someone else and I do not have access to the purchase key.

    Could you please advise me on the best way to proceed?
    Is there an option to re-register or purchase a new license to receive updates?

    Thank you very much for your support.

    #1483327

    Hi,

    This is what we see on a clean installation of version 7.1.

    View post on imgur.com

    And only –enfold-font-size-theme-content is declared in the themes/enfold/css/dynamic-css.php file, line 108.

    Best regards,
    Ismael

    Margot
    Guest

    I am encountering a significant issue with the Avia Layout Builder on my website.
    When I try to edit a page or post, the Avia Builder does not load at all — the editing area remains completely blank, with no elements or options visible.

    Here are the details of my situation:
    WordPress version: 6.8
    Enfold theme version: 5.6.9
    PHP version: 8.1.32
    Website URL: https://6et7.fr/
    Hosting provider: OVH

    What I have already tried:
    Deactivated all plugins except Enfold, and the problem persisted.
    Cleared all caches (WordPress cache, browser cache, server cache if applicable).
    Checked for JavaScript errors in the browser console (I can provide error logs if needed).
    Re-installed the Enfold theme with the latest version.
    Confirmed that the server meets the theme requirements (memory limit, PHP version, etc.).

    Symptoms observed:
    Avia Layout Builder does not display any elements when opening a page or post.
    No loading spinner or error message visible in the WordPress dashboard.

    Additional Information:
    The issue started occurring two weeks ago.
    No new plugins or major updates were installed immediately before the problem appeared.
    I am ready to provide admin credentials privately if you need to access the dashboard for further investigation.

    I would appreciate your support and any troubleshooting guidance you can offer to help resolve this as soon as possible.
    Thank you very much in advance for your assistance.

    diraastro
    Participant

    Problem after enfold theme update. Timeline content element is displayed incorrectly on small screens. Every second date is missing. https://diraweb.de/blog/
    WP 6.8
    enfold 7.1
    php 8.1

    Thx

    coleen15
    Participant

    I’m using NameCheap hosting, have an SSL certificate, have chatted with NameCheap hosting and they modified my php.ini and tested a variety of things and told me I needed to reach out to “kriesi.at” as that’s where the issue is coming from.

    No matter what demo I try to install, I get the following error:

    Error accessing file for download:
    cURL error 28: Connection timed out after 10002 milliseconds

    I’ve tried the instructions from the following URL to try to manually install the demos (URL: https://kriesi.at/documentation/enfold/import-demos/ )
    “Please add following line to Functions.php file in Appearance > Editor
    add_theme_support( ‘avia_demo_store_downloaded_files’ );

    Download the zip file of the demo you would like to import from https://github.com/KriesiMedia/enfold-library/tree/master/demos
    Extract it in \uploads\avia_demo_files\ folder. If you are importing Enfold 2017 demo, files should be extracted inside \enfold-2017\ so it should look as \uploads\avia_demo_files\enfold-2017\
    Go to Enfold theme options > Demo Import and import the demo”

    I’m absolutely pulling my hair out…this shouldn’t be this difficult and I have no idea what is wrong….I’ve installed WordPress and themes hundreds of times and NOTHING is working.

    Can you offer some assistance? I’ve included both admin credentials to my wordpress installation along with cPanel login details.

    • This topic was modified 1 year ago by coleen15.
    #1481939

    In reply to: Theme not working

    Hi,

    How exactly did you increase the memory? I’m asking since some hosting provider has fixed memory, and increasing it in wp-config will not change it.

    Ive spoke to Bluehost and they say its in the scripting of the theme.

    That sounds extremely vague, try asking them what “scripting” is wrong please. I’m running a test installation with only 128mb memory and it’s working without any problems.

    Error messages will change depending on what is requesting memory. Also note that everything on your WordPress installation will consume memory, not only the active theme. This for example is a default WordPress file:

    Fatal error: Allowed memory size of 41943040 bytes exhausted (tried to allocate 196608 bytes) in /home/goldbet4/public_html/wp-includes/class-wp-block-metadata-registry.php on line 175

    Best regards,
    Rikard

Viewing 30 results - 301 through 330 (of 16,897 total)