Viewing 30 results - 1,861 through 1,890 (of 244,163 total)
  • Author
    Search Results
  • #1486070

    Hi,
    Glad we were able to 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

    DianaLoola73
    Participant

    Dear Enfold Team,
    During accessibility testing of our website (https://restaurant-weichandhof.de) built with the Enfold theme, the AXE tool reported an issue concerning the built-in Scroll-to-Top button.
    Specifically, the tool flags an error indicating that an element with aria-hidden=”true” is focusable. This error appears when the page is scrolled before starting the test (so the Scroll-to-Top button is visible). If the page is not scrolled prior to testing, the button is not visible and the error does not appear. This suggests the issue exists on every page but is only flagged depending on test conditions. This error really appears in EVERY SITE. Is there a way to fix it by not changing the ENDOLD-php-Code (> not consistent solutions for updates) ?
    So I kindly ask you to review this ARIA issue and advise on how to ensure the Scroll-to-Top button meets WCAG 2.1 AA requirements.
    Thank you in advance for your support.
    Best regards, Diana

    #1486062
    #1486061
    maxb130
    Participant

    Hello we have enfold. It seems there was an update and it broke our landing page. We are struggling with the visibiilty of all features and need assistance to get it back up and running without issue. rtstracks.com

    #1486057

    Hey Dave,
    To remove the link in the footer, add this: [nolink] see our documentation here.
    You have spaces in your code, I don’t see a link to terms of service on your site.

    Best regards,
    Mike

    #1486056

    In reply to: Cannot gain access

    Hey Max Buettner,
    Unfortunately, your support expired on 2024-03-28
    You don’t have a activate support contract, please try going to your Theme Forest account and renew your support and then log in to the support forum and open a new thread.
    We can not issue licenses or purchase codes due to our contract with Envato (Theme Forest), only they can.

    Best regards,
    Mike

    #1486055

    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

    #1486054

    Hey Michael,
    If you would like to request this feature the Dev Team has opened a new Github Feature Request for users to place requests and follow them as the Dev Team reviews them.

    Best regards,
    Mike

    #1486052

    Hi,
    Glad to hear that you have this sorted out, 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

    rajprajapati
    Participant

    I just purchased the Enfold theme .. i have already used the theme before inthe past there is a drag and drop contact form now in the new theme i cannot see it Can anyone help me out where it is now.

    #1486046
    dave_montana
    Participant

    I need to modifie my footer in Enfold, how to get rid of link to Kriesi and add a link to terms of service?

    #1486043

    Hi, I don’t quite understand that, because about 2 years ago the post image was displayed correctly in the same original size on the homepage without this snippet. It seems you have changed something in Enfold … but anyway – it works now. Best regards and thanks, Lutz

    #1486042

    In reply to: lightbox issues

    the code snippet will work on your page for all images. Even on that graphics page.
    But if you create these images in a different way – and i see some Enfold Lightbox on paintings page we had to find then a different solution.
    But if you use the same way like on mixed media and graphics page – the code will work there too.

    But as mentioned – it would be nice to have a fallback for the bottom-bar title on lightbox. my advise – and not only for seo purpose – give an alt tag to your images via media library.

    and use that snippet with fallback alt -tag as title inside bottom-bar:

    Edit
    this checks if original image is present and if widget-text or alt is present :

    function mixed_media_lightbox() {
    ?>
    <script type="text/javascript">
    window.addEventListener("DOMContentLoaded", function () { 
    (function($){
        $('.widget_media_image').magnificPopup({
          delegate: 'img',
          type: 'image',
          removalDelay: 500,  // to allow animated closing in ms
          mainClass: 'avia-popup mfp-zoom-in mfp-image-loaded mixed-media',  
          midClick: true,
          gallery: { 
            enabled:true,
            preload: [1, 1] ,
          },
          image: {
            titleSrc: false,
            markup: '<div class="mfp-figure">'+
                      '<div class="mfp-close"></div>'+
                      '<div class="mfp-img"></div>'+
                        '<div class="mfp-bottom-bar">'+
                          '<div class="mfp-title"></div>'+
                      //  '<div class="mfp-counter"></div>'+
                        '</div>'+
                    '</div>',
            },  
            callbacks: {
              elementParse: function(item) {
                var originalSrc = item.el.attr('src');
                var fullSizeSrc = originalSrc.replace(/-\d+x\d+\./, '.');
    
                // Create a temporary image object to check whether the full resolution exists
                var img = new Image();
                img.onload = function() {
                  item.src = fullSizeSrc;
                };
                img.onerror = function() {
                  item.src = originalSrc;
                };
                img.src = fullSizeSrc;
                item.src = originalSrc;
              },
    
              markupParse: function (template, values, item) {
                var title = ''; // Initialize title as an empty string. This is our default fallback.
    
                // 1. Highest Priority: Check for content from a nearby .widget_text element
                var textWidget = item.el.closest('.panel-grid-cell').find('.widget_text');
                if (textWidget.length && textWidget.html().trim() !== '') {
                  title = textWidget.html();
                } else {
                  // 2. Second Priority: If no text widget, check the image's alt attribute
                  var altAttribute = item.el.attr('alt');
                  if (altAttribute && altAttribute.trim() !== '') { // Checks if exists AND has non-empty content
                    title = altAttribute;
                  } else {
                    // 3. Third Priority: If no alt, check the image's title attribute
                    var titleAttribute = item.el.attr('title');
                    if (titleAttribute && titleAttribute.trim() !== '') { // Checks if exists AND has non-empty content
                      title = titleAttribute;
                    }
                  }
                }
    
                // Finally, assign the title to values.title, wrapping it in <h3> ONLY if there's content
                if (title) {
                  values.title = '<h3 class="heading">' + title + '</h3>';
                } else {
                  values.title = ''; // If no title was found at all, ensure nothing is displayed
                }
              },
            },
        });
    })(jQuery);
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'mixed_media_lightbox', 9999);

    And

    #top .mixed-media .mfp-image-holder .mfp-content {
      max-width: 1200px; 
      box-sizing: border-box; 
      padding-bottom: 90px; 
      vertical-align: middle; 
    }
    
    #top .mixed-media .mfp-bottom-bar {
      margin-top: -36px;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      cursor: auto;
      background-color: rgba(0,0,0,0.3);
      backdrop-filter: blur(4px);
      padding: 5px 10px;
    }
    
    #top .mixed-media .mfp-bottom-bar .mfp-counter {
      right: 5px
    }
    
    #top .mixed-media .mfp-content img.mfp-img {
      width: auto;
      max-width: 100%;
      max-height: 90vh !important;
      height: auto;
      display: block;
      line-height: 0;
      box-sizing: border-box;
      padding: 40px 0 40px;
      margin: 0 auto;
    }
    
    #top .mixed-media .mfp-content .mfp-title .heading * {
      font-weight: 400 !important;
    }
    
    #top .mixed-media .mfp-content .mfp-title .heading p {
      margin: 0.3em 0;
    }
    
    #top .widget_media_image img {
      cursor: pointer;
    }
    #1486038

    In reply to: lightbox issues

    Now – what you have to do. : not all your images do have that widget_text
    See Paintings Page. Or you have tried to do it with enfold lightbox implementation there. ?

    the script is working – but the shown title is not allways defined. the reason – see above.

    Best would be to set an alt or title tag as fallback to all of your images. For SEO purpose it might be better to use the alt tag.
    then you had to change the else condition to:

    values.title = '<h3 class="heading">' + item.el.attr('alt') + '</h3>';
    

    Hi minhndq,

    Open a new thread and post a link to your site.

    Best regards,
    Rikard

    #1486014

    Hi
    Is it planned, that we can use Google reCAPTCHA alternatives with Enfold in the near future?

    For example Contact Form 7 implemented Cloudflare Turnstile:

    Would be nice, if we could also use Google reCAPTCHA alternatives with Enfold.

    Best regards
    Mike

    #1486008

    In reply to: lightbox issues

    Thanks for taking a look.
    this is how the image is set up – it’s similar to Enfold (which I have used exclusively for years).
    on the mixed media page: https://imgur.com/iqrN3T2 and https://imgur.com/1VgypnI
    but on the front end I don’t see the link in the preview or page view.
    on the paintings page, the first image is set up the same way, but the link is there –
    in the preview it opens in lightbox: https://imgur.com/uYtdXbb and https://imgur.com/RLnBpBQ
    but when I save a view the page, it opens the image in another page. The second image on that page is set up the same way but there doesn’t seem to be a link: https://imgur.com/yHRPIj7
    I have gone back and forth through all the settings. The lightbox is enabled.
    Any advice?
    thanks
    Nancy

    #1485998

    Ok, so I was able to update the Enfold theme to 7.1.1 (I see that in the debug code when viewing SRC), but that didn’t seem to fix my issue. Looking into it, it seems that maybe my font colors in the CSS are a bit off so I will have to dig into that, but thank you for pointing me in the right direction!

    • This reply was modified 7 months, 4 weeks ago by AIMEnfold.
    #1485992

    Hey Richard,

    Thank you for the inquiry.

    The image overlay is disabled on mobile devices by default. You can enable it back but you have to edit the themes/enfold/js/avia.js file and remove the following code from the avia_hover_effect function, around line 769.

    if( $.avia_utilities.isMobile )
    		{
    			return;
    		}
    

    Make sure that the Enfold > Performance > File Compression is temporarily disabled. Let us know the result.

    Best regards,
    Ismael

    #1485984

    Topic: lightbox issues

    in forum Enfold
    Munford
    Participant

    hi
    I just took over a site that is using another theme together with Site Origin builder. (I am used to using enfold). I was having trouble with the lightboxes not working even though my images are set to open in a media file. Some of them work and some don’t, and sometimes the images seem to default back to no lightbox. I switched the theme to Enfold on a staging site, but the same thing is happening. I still have Site Origin installed since I don’t want to rebuild the whole site. Can you see if there is a conflict or what the issue is?
    thanks for your help
    Nancy

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

Viewing 30 results - 1,861 through 1,890 (of 244,163 total)