Viewing 30 results - 1,711 through 1,740 (of 243,993 total)
  • Author
    Search Results
  • #1485981

    Hey faroestudio,
    Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function change_posts_titles_from_h3_to_h2_in_grid_view() { ?>
      <script>
    (function($) {
      $(function() {
        function replaceElementTag(targetSelector, newTagString) {
          $(targetSelector).each(function(){
            var newElem = $(newTagString, {html: $(this).html()});
            $.each(this.attributes, function() {
              newElem.attr(this.name, this.value);
            });
            $(this).replaceWith(newElem);
          });
        }
        replaceElementTag('.slide-entry-wrap h3.slide-entry-title.entry-title ', '<h2></h2>');
      });
    }(jQuery));
    </script>
      <?php
    }
    add_action( 'wp_footer', 'change_posts_titles_from_h3_to_h2_in_grid_view', 99 );

    If you are not using a child theme you could use the WP Code plugin then add a new snippet, in the top right corner use the PHP snippet as the code type:
    use wpcode php snippet and activate
    and ensure that it is activated, then add the above code and save.

    Best regards,
    Mike

    #1485980

    Hi,
    Glad Guenni007 could help, thank you Guenni007, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    #1485976

    Hi Rikard,

    Thank you for your reply!

    We had the problem with the current Enfold version: 7.1, and came across the old post while looking for a solution.

    We then solved the problem in a development environment as described and posted the article here if anyone else has the same problem.
    Perhaps there will also be an adjustment in Enfold itself in the next update.

    Best regards,
    jugalbandi3

    #1485975

    Topic: 2 Ränder

    in forum Enfold
    edendesign7
    Participant

    Hallo,
    Ich hätte 2 Anliegen.
    1) Auf meiner Website (Vorlage: Enfold Freelancer) wäre es ideal, wenn das Logo links am Rand ansteht. Geht das?
    2) Bei schmäleren Fenstern ist der Abstand vom Text zum Rand viel zu breit. Besonders am Handy bleiben nur 2 Wörter nebeneinander stehen. Kann ich den Rand wo editieren oder könnt ihr mir ein CSS dafür schreiben? Ich habe den Eindruck, dass der Rand fix definiert ist. 10% würde besser passen.

    Vielen Dank für eure Hilfe!
    lg alex

    #1485971
    DianaLoola73
    Participant

    Dear Support Team,
    I’m working on improving the accessibility of our website https://restaurant-weichandhof.de/candle-light-dinner/ and have encountered an issue with the Timeline element in the Enfold theme that causes errors in accessibility testing tools such as Google Lighthouse / WAVE ….
    The Timeline element automatically generates the following heading structure: (Example: first milestone point)
    <h2 class=”av-milestone-date”>Wertgutschein bestellen</h2>
    <h4 class=”av-milestone-title”>direkt online · Sofortversand</h4>
    As you can see, there is a heading level h2 directly followed by an h4, skipping h3 entirely. Lighthouse / WAVE flags this as a failure:
    “Heading elements are not in a sequentially-descending order”
    Properly ordered headings that do not skip levels convey the semantic structure of the page, making it easier to navigate and understand when using assistive technologies.
    Unfortunately, there is no option within the Timeline element to control or override the heading levels, and no content can be inserted between the two to preserve proper hierarchy.
    We are trying to follow WCAG 2.1 Level AA guidelines and ensure proper semantic heading order, but this structural limitation of the Timeline element makes it impossible.
    Could you please help me in this issue?
    Thank you very much for your support!
    Best regards
    Diana

    #1485968

    Hi,

    Thanks for the update. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

    #1485960

    Thank you@Guenni007! That is great information. Yesterday was the first time I had seen the site, as I am just helping one of my good friends who sent me an SOS message his site was broken. I have never used the Enfold theme before, but great advice to upgrade it, as it is on the latest version of PHP. Again, much thanks for your help!

    transdesign_dk
    Participant

    Hi Enfold Support,

    I’m experiencing a repeatable bug with the Enfold gallery — specifically when using image subtitles.

    On a page with an Enfold gallery, each image has been given a subtitle (via the built-in options). Everything works fine initially. However, after I scroll past the first image and then scroll back up to it, the subtitle is suddenly replaced with the string “null” on the frontend.

    This behavior suggests that the JavaScript responsible for handling image subtitles is not correctly preserving or restoring the subtitle data after the element is reloaded or redrawn (possibly due to lazy loading or Masonry reflow). It appears that the subtitle is being dynamically injected, but the value is lost or misread after scrolling, resulting in a “null” string being displayed instead.

    This only happens after interaction — when returning to the image — and seems like a client-side rendering issue.

    Could you please look into this? I’ve shared a few example pages in the private content. Thanks!

    Best regards,
    Martin

    Hi Ismael,
    Thanks for that info. We were able to set the post type using the shortcodes. However, that’s not ideal for our client when they are editing these pages.

    When editing the blog post elements should we be seeing the custom post type listed under “Select Post Type”? Or should anything in that list be selected? Previously, we have not needed to select anything from that list. But I am wondering if the issue is that nothing is selected?

    http://staging.maritimetravel.ca/wp-content/uploads/2025/06/Select-Post-Type.jpg

    Is it possible there is an issue with the Custom Post Type UI plugin? All of this was previously working for quite some time, until recently. So it seems like it could be related to an update to the plugin or Enfold.

    #1485950
    jugalbandi3
    Participant

    Hi,

    We observed duplicate id-attributes in the mobile menu (hamburger-menu), similar to what is described in

    This came up when trying to check and optimize website-compatiblity for screenreaders. Nodes of the main menu are copied over to the hamburger-menu. svg-icons (for the search) contain id-attributes which simply get duplicated – but obviously need to be transformed to become unique again.

    A modification of this copy-behaviour would for example be possible in
    wp-content/themes/enfold/js/avia-snippet-hamburger-menu.js
    in function normalize_layout().

    Quick-and-dirty code for those replacements:
    There was:
    var menu2 = $(‘#header .main_menu’).clone(true),
    ul = menu2.find(‘ul.av-main-nav’),
    id = ul.attr(‘id’);

    We then added lines to search for the corresponding nodes in the HTML with jQuery and make replacements for all hits. ‘-hamburger’ is appended to the IDs.

    var toChange;
    toChange = menu2.find(‘[id^=av-svg-desc-‘);
    toChange.each(function() {
    $(this).attr(‘id’, $(this).attr(‘id’) + ‘-hamburger’);
    });
    toChange = menu2.find(‘[id^=av-svg-title-‘);
    toChange.each(function() {
    $(this).attr(‘id’, $(this).attr(‘id’) + ‘-hamburger’);
    });
    toChange = menu2.find(‘[aria-labelledby^=av-svg-title-‘);
    toChange.each(function() {
    $(this).attr(‘aria-labelledby’, $(this).attr(‘aria-labelledby’) + ‘-hamburger’);
    });
    toChange = menu2.find(‘[aria-describedby^=av-svg-desc-‘);
    toChange.each(function() {
    $(this).attr(‘aria-describedby’, $(this).attr(‘aria-describedby’) + ‘-hamburger’);
    });

    It’s quite an edge case, but could potentially irritate a screen reader.

    #1485949
    dcgr
    Participant

    I am a new administrator of a website with Enfold Theme v5.2.1 active with update name and API Key typed.
    It says v5.2.1 and that I have the latest version and no update available.
    I have read Your other thread about updating to the latest version, but the procedure with downloading and
    installing a ZIP-file changes the format of the site and at the same time changes the default Logo to Enfold Logo.

    When You later on restore the website the Enfold logo keeps staying on the site no matter what I do.
    Luckily I had a snapshot of the server hosting the website and after restoring the snapshot the site was normal again.

    In the backend of the website I under Enfold options I Reset all options.
    After that I purchased a new license from Envato and created a new key to use for future updates.
    Now the website indicates that there is a new update, but the same happens again when I update.

    The website doesn’t look like it used to, but all the text is there and all links are working — however,
    the layout looks completely wrong. I need a method to update the website without changing the visual appearance.
    The website must look exactly as it did before we started the update.
    Could it be that some plugins need to be updated first to be compatible with the latest version of the theme?

    Can you please give me a complete guide to update from version 5.2.1 to the latest version
    without the website changing visually?

    #1485948

    Hello,
    I disabled every plugin from Smash Balloon, but the outcome is the same.

    The web hosting company points out to the theme and you are pointing out to the web hosting company. Now I am stuck :)
    Funny thing is, I do have other websites with Enfold designed and running with the same web hosting. No issues there.

    Would reinstall Enfold do any good?

    With kind regards,
    Arjan

    minhndq
    Participant

    Hello Enfold Support Team,

    I’m using Fluent Forms with the Enfold theme. When I embed a form with a date picker (flatpickr), the year dropdown does not appear when viewing the form on the frontend — even though it works in the form preview.

    The date field HTML is correctly rendered with flatpickr-input and ff-el-datepicker classes, but the Flatpickr calendar (including year selector) does not load fully unless I manually reinitialize it via JavaScript after page load. This issue seems related to how Enfold renders content or delays JavaScript execution.

    Could this be caused by theme-level JavaScript optimizations, lazy loading, or conflicts that prevent Flatpickr from initializing properly?

    Thank you!

    Hi Rikard,

    like I said in my initial post:
    – the problem is with BOTH 7.1.1 and 6.x
    – we use the included LS version ( bundled LS version numbers were mentioned in the post, ( Enfold 6.x / LS 7.12.4 , and Enfold 7.1.1 / LS 7.14.4 )

    Also, on both sites we are on the latest php 7.4 version, matching the requirements of WP, enfold and LS.
    Regards Ulrich

    #1485943
    marcofrigeri
    Participant

    Hi, I need to be able to manage the font size within woocommerce fields in both Account Details and also the Payment page.
    Through Enfold’s font management I can only manage the font size of the description.

    #1485942

    Hi Ismael – Great! It worked straight away. The cover image is visible again in full format. Many thanks for your quick support! (But: do I have to assume that I might have to use this snippet on my other Enfold websites as well? – Or will it be patched in the next update? Or is it perhaps not a bug at all?). Best regards, Lutz

    #1485941

    In reply to: smpv.ch

    Hey Dominik,

    We don’t do custom work like that unfortunately, but we can try to help you out on the support forum if you should run into any problems. Please refer to our documentation on how to update the theme: https://kriesi.at/documentation/enfold/theme-update/

    Best regards,
    Rikard

    Hi PRIDER,

    Please open a new thread and include WordPress admin login details in private, so that we can have a closer look at your site. Also let us know which shortcodes you are interested in.

    Best regards,
    Rikard

    #1485937
    emilconsor
    Participant

    Hello,

    we are using Enfold with WPML and have set a page in the theme settings to replace the footer and socket.

    Unfortunately, the setting is regularly simply reset or the selected page is thrown out and you have to set and save it again manually. This happens to us in all available languages.

    Is this a known problem and is there a solution?

    #1485935

    Topic: smpv.ch

    Dominik Stähli
    Guest

    Guten Tag
    Wir haben einen gemeinsame Kunde der auf enfold läuft.
    Nun habe ich gesehen das diese Netzwerkinstallation noch auf 4.6 läuft. Ist es unproblematisch diese zu aktualisiseren? Würden Sie mich da unterstützen? Wenn ja gerne ein kleine Kostenvoranschlag.
    Bermerkung: Bei dieser Installation wurde im child theme ein script geschrieben der auf allen Unterseiten das Hauptmenü anzeigt.
    Besten Dank und herzliche Grüsse
    Dominik Stähli

    Hi Rikard
    We occur the same issue with our Ovh hosting
    Is it possible to receive the shortcode for the Enfold in WordPress theme please
    Construction demo and instruction to load it
    Kind regards
    P. Rey / France

    Hi,

    Thank you for the update.

    The post_type attribute can be adjusted using the Select Post Type option, but when we re-enabled it using the add_avia_builder_post_type_option in the functions.php file, the post type “hotels-resorts” was not found. This could be due to a missing parameter when the “hotels-resorts” post type was registered or created.

    add_theme_support('add_avia_builder_post_type_option');
    

    You may need to set this attribute manually by editing the element shortcodes directly in the debug mode field. Please check the link below:

    https://kriesi.at/documentation/enfold/intro-to-layout-builder/#debug-mode

    Once debug mode is enabled, a shortcode field will appear below the Advanced Layout Builder where you can manually set the post_type attribute in av_blog shortcodes.

    This is the Select Post Type option:

    View post on imgur.com

    Another thing that you could try is to select all post types or items in the Select Post Type list.

    Best regards,
    Ismael

    #1485926
    torture4
    Participant

    Hi. Google maps has suddenly stopped working on my site, and the API I created before has been deleted by Enfold somehow.

    Now I can’t create a new API, because the “Register an API Key” link from inside the Enfold goes to a dead page, that just says “The link that you followed was not configured correctly. Required URL parameter apiid is missing”. What gives?

    This is a total mess.

    #1485921

    You are still using an outdated version of Enfold there. You should update the theme to match the current WordPress version, which uses a newer jQuery. You might want to get help with this. Enfold 4.5.7 and 7.1.1 are quite different, so you may need to customize it further then. At the very least you should have a full backup of your site. I recommend updating as follows: https://kriesi.at/support/topic/some-hints-and-advice-to-update-enfold/#post-1056107

    #1485913

    Hello,

    You give some solutions but the error comes from within the Enfold theme?

    I cannot change #2 and the web-hosting company says it’s as high as possible set. #1, 3 and 4? I cannot see why you mention them. #3 is even about changing a file system; I cannot change a file system etc. How do I even resize the file size of something within the Enfold theme regarding the Builder?
    Do you want to check on the site itself?

    Greetings,
    Arjan

    #1485912

    Hi,
    Glad Ismael could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    #1485908

    Hey Katie,

    Your site is running a very old version, so it needs to be updated. You can only purchase it at Themeforest, not directly from us. Once you have access to the theme files, then the update to 7.1.1 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/

    Best regards,
    Rikard

    #1485906

    Topic: Portfolio Grid

    in forum Enfold
    ImagineDesign
    Participant

    When trying to use the portfolio grid and load in portfolio items, I do not see that option. I’m just using the default Enfold portfolio post type. This is a basic install.

    Hey onlineprodcontent,

    First off, please make sure that you are running the latest version of the theme (7.1.1): https://kriesi.at/documentation/enfold/theme-update/.

    If you are running a standalone version of LayerSlider, then make sure that you disable the bundled version under Enfold->Layout Builder->Layerslider Options.

    Best regards,
    Rikard

    #1485899
    Katie Pritchard
    Guest

    Hi there,

    I’m in the process of taking over a customer’s website that was previously managed by another provider. The site is using the Enfold theme, currently running on PHP 7.3. I’m having trouble backing up and restoring it on my server, which is running a newer PHP version.

    I also downloaded the theme files from the existing site, but they’re not working correctly on my setup—likely due to outdated compatibility.

    Would it be possible to purchase the latest version of the Enfold theme directly from you? If so, would the child theme from the original site still work once installed with the updated parent theme on my server?

    Many thanks in advance for your help!

Viewing 30 results - 1,711 through 1,740 (of 243,993 total)