-
AuthorSearch Results
-
June 28, 2025 at 8:55 pm #1486086
In reply to: Font management in WooCommerce text fields
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,
MikeJune 28, 2025 at 8:30 pm #1486084Hi,
Thanks for that. Please try the following in Quick CSS under Enfold->General Styling:
@media only screen and (min-width: 991px) { .html_header_transparency #main { padding-top: 118px !important; } }Best regards,
RikardJune 28, 2025 at 6:33 pm #1486081In reply to: ALTERNATIVE MOBILE MENU NOT SHOWING ON MOBILE
Hi,
When I login to your site I can not change the user profile language to Eng, nonetheless I don’t see a menu: TKA Menu mobile that you wanted to be the mobile menu:

you would need to create this menu and choose it at Enfold Theme Options ▸ Main Menu ▸ General ▸ Alternate Menu For Mobile as you see here you are using the same main menu for mobile:

Perhaps there is a language issue, if so please change the user language to Eng so I can check again. But I would think that since I see TKA Main Menu I would see a TKA Menu mobile for the mobile menu.Best regards,
MikeJune 28, 2025 at 3:58 pm #1486078In reply to: duplicate id-attributes in the mobile menu
Hi,
Thank you for sharing your solution, but when I test our demo there are no IDs added to the mobile menu items, unless you mean a menu link with an ID to an anchor on the page. I tested in WAVE and found no errors for IDs.
If you mean the link IDs to anchors on the page, note that the mobile menu is not created until the menu is clicked, nonetheless since most people use the same link IDs on their page for mobile and desktop, this would break their links.
Since I can not reproduce your issue and this is beyond what we can do here, you are welcome to open a Github Feature Request to place a request and follow it as the Dev Team reviews it.Best regards,
MikeJune 28, 2025 at 3:15 pm #1486076Hey Diana,
Thanks for the login, I added this code to your theme functions.php file:function change_aria_hidden_for_scroll_top_link_when_it_shows() { ?> <script> window.addEventListener('scroll', function() { const scrollTopLink = document.getElementById('scroll-top-link'); if (!scrollTopLink) return; const style = window.getComputedStyle(scrollTopLink); const rect = scrollTopLink.getBoundingClientRect(); const inViewport = rect.width > 0 && rect.height > 0; const ariaValue = (style.display !== 'none' && style.visibility !== 'hidden' && inViewport) ? 'false' : 'true'; scrollTopLink.setAttribute('aria-hidden', ariaValue); const childSVGs = scrollTopLink.querySelectorAll('svg'); childSVGs.forEach(svg => { svg.setAttribute('aria-hidden', ariaValue); }); }); </script> <?php } add_action( 'wp_footer', 'change_aria_hidden_for_scroll_top_link_when_it_shows', 99 );It changes the aria-hidden for the scroll-top-link and the SVG icon when it shows, from false to true.
I tested in the browser DOM and it works. Unfortunately we don’t have access to the AXE tool as it looks like a paid tool, but I did check in WAVE. Unfortunately, while in the live browser the code works, the WAVE tool doesn’t update the DOM so it doesn’t look like it is working, perhaps this is a limitation of the free version, I don’t know.
I tried to add this to your snippet Header Footer Code Manager plugin but it didn’t work there, the plugin seems limited, if you find this workshop for you and 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:

and ensure that it is activated, then add the above code and save, after you remove it from the theme functions.php file so it will not be lost when you update.PS for testing this is the snippet with console log comments that I tested with that will show that the aria-hidden changes while the page is scrolled:
function change_aria_hidden_for_scroll_top_link_when_it_shows_log() { ?> <script> window.addEventListener('scroll', function() { const scrollTopLink = document.getElementById('scroll-top-link'); if (!scrollTopLink) { console.log('Element #scroll-top-link not found.'); return; } const style = window.getComputedStyle(scrollTopLink); const rect = scrollTopLink.getBoundingClientRect(); const inViewport = rect.width > 0 && rect.height > 0; console.log('Scroll event triggered.'); console.log('Display:', style.display); console.log('Visibility:', style.visibility); console.log('BoundingClientRect:', rect); console.log('In viewport:', inViewport); const ariaValue = (style.display !== 'none' && style.visibility !== 'hidden' && inViewport) ? 'false' : 'true'; console.log(#scroll-top-link is ${ariaValue === 'false' ? 'visible' : 'hidden'}. Setting aria-hidden to ${ariaValue}.); // Set on the main link scrollTopLink.setAttribute('aria-hidden', ariaValue); // Set on any child SVGs const childSVGs = scrollTopLink.querySelectorAll('svg'); childSVGs.forEach(svg => { svg.setAttribute('aria-hidden', ariaValue); console.log('Updated child SVG aria-hidden to', ariaValue); }); }); </script> <?php } add_action( 'wp_footer', 'change_aria_hidden_for_scroll_top_link_when_it_shows_log', 99 );don’t use both snippets at the same time, this is just for proof of work.
Best regards,
MikeJune 28, 2025 at 1:23 pm #1486074In reply to: Theme update
Hey maxb130,
It looks like your site is using an old theme v5.6.6 and your updates are disabled.
I was not able to login, but it looks like you are using JetPack and your images a hosted on WP though JetPack with caching.
I don’t know what your site should look like, but I assume that you are missing background images for each section, these are added via css.
First I recommend disabling the JetPack plugin and disable Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression and enable Enfold Theme Options ▸ Performance ▸ Delete old CSS and JS files and disable any server caching. If JetPack was also using a CDN it may take up to 24 hours for it to clear.
Since your site is using an old theme v5.6.6 and your updates are disabled, I don’t think this is an update issue, but a plugin/caching issue, hopefully these steps will help.
Another option may be to use your webhost backup to roll back to when your site was working correctly, and then disable JetPack and see if the issue is solved.
The theme is now at v7.1.1Best regards,
MikeJune 28, 2025 at 12:44 pm #1486073In reply to: where do i find downloads
Hi,
Above you write the error is “An error occurred while updating Enfold: Could not move the old version to the upgrade-temp-backup directory.” this might be related to folder permissions, try to fix the issue by creating the /wp-content/upgrade-temp-backup folder manually, then set the permission to 775.
If I’m looking at the correct site your Envato Market plugin doesn’t have a token:

Note that the Envato Market plugin doesn’t use the same permissions as the theme, so please read carefully when creating a token:

Best regards,
MikeJune 28, 2025 at 12:04 pm #1486071In reply to: Padding between a code block and text block
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,
MikeJune 28, 2025 at 12:03 pm #1486070In reply to: Color hover effect content element
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,
MikeJune 28, 2025 at 11:18 am #1486069DianaLoola73
ParticipantDear 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, DianaJune 28, 2025 at 12:53 am #1486062In reply to: where do i find downloads
i am getting this error message when i try to update teh theme. can you pls help?
The update process is starting. This process may take a while on some hosts, so please be patient.
Enabling Maintenance mode…
Updating Theme Enfold (1/1)
Downloading update from https://marketplace-downloads.customer.envatousercontent.com/files/637407377/enfold.zip?response-content-disposition=attachment%3B+filename%3Dthemeforest-ArHfsqXd-enfold-responsive-multipurpose-theme-wordpress-theme.zip&Expires=1751065327&Signature=eIKG1aRUulZdTmyMmXhnlfONe7onxXTCMDjULXU1LPCkQU3PfvD0ThCv04TGiaEo3-kR5-PW3QP5Voa3IIksicjQ81~d6gDogvr64XraZFCplzIrlEbSzXz-Okc-vXTHNSTrzaYJz95XxrSgN6Zm2m~SJAKsRcR75LZmvk3ZsPd1Xlh8VKEV1giNTNv06HNLYlj7wAaKOc2WOhLHnmn7ALfxRwQp4s~-n3JMLWMchE8hMw4MvEyYtw5EP2FsXz04f~vj~2zYL3KF~WTtFHjs9F6JDgc6ybmMSniL3-MjY5TmEBr4C3pGNysNkHK2cN69sFzIf92IfMaXkWXJ6auCc1uH5ZcI3jX-nvCJhwvvZJoTqOGzAFNdMBPAaramvOX38jmhHjAD2BUJubSIpllU-syzqRR1tJ5e-z0xvAOa6Ykk54bX2yjt64bO~bHIUh5wjVucPtgyBWYnwgVFTCE1nFtwql4Vefa3l1CE5ET~Z8W2CAoaR4zFuIK321~jD3872ouNd09AkIAZu7bSKABYgA2BSlyNWrDKYEJ9J-x9QpYJ6wxoKdKLwUotRLDxkrV4271SKJepGO5EzxdlE2bHsFcSaO6-QDkwq7boxQnKgob2KZ7dPpYNkDrIBafOesA9EN5ABA3URc-kJZKUQVwolBHHP8UrfWYP4uqada~46e8_&Key-Pair-Id=APKAJRP2AVKNFZOM4BLQ…
Unpacking the update…
Installing the latest version…
Theme update failed.An error occurred while updating Enfold: Could not move the old version to the upgrade-temp-backup directory.
June 28, 2025 at 12:05 am #1486061Topic: Theme update
in forum FAQ & Video Tutorialsmaxb130
ParticipantHello 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
June 27, 2025 at 11:33 pm #1486057In reply to: I need to modifie my footer in Enfold
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,
MikeJune 27, 2025 at 11:22 pm #1486056In 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,
MikeJune 27, 2025 at 10:53 pm #1486055In reply to: Blog post grid overlay not showing on mobile
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,
MikeJune 27, 2025 at 10:51 pm #1486054In reply to: Google reCAPTCHA alternatives in Enfold
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,
MikeJune 27, 2025 at 10:08 pm #1486052In reply to: Problem with the menu on one page
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,
MikeJune 27, 2025 at 6:17 pm #1486048Topic: Where is contact from drag and drop in the theme
in forum General Questionsrajprajapati
ParticipantI 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.
June 27, 2025 at 4:24 pm #1486046Topic: I need to modifie my footer in Enfold
in forum Enfolddave_montana
ParticipantI need to modifie my footer in Enfold, how to get rid of link to Kriesi and add a link to terms of service?
June 27, 2025 at 3:42 pm #1486043In reply to: New post image in wrong format on homepage
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
June 27, 2025 at 2:35 pm #1486042In 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; }June 27, 2025 at 1:21 pm #1486038In 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>';June 27, 2025 at 10:53 am #1486022June 27, 2025 at 9:34 am #1486014Topic: Google reCAPTCHA alternatives in Enfold
in forum EnfoldYourChoice Informatik GmbH
ParticipantHi
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
MikeJune 27, 2025 at 9:10 am #1486008In 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
NancyJune 27, 2025 at 8:07 am #1485998In reply to: Hamburger Menu contents not appearing in Mobile
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, 1 week ago by
AIMEnfold.
June 27, 2025 at 7:28 am #1485992In reply to: Blog post grid overlay not showing on mobile
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,
IsmaelJune 27, 2025 at 12:59 am #1485984Topic: lightbox issues
in forum EnfoldMunford
Participanthi
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
NancyJune 26, 2025 at 10:46 pm #1485981In reply to: Change Posts Titles from h3 to h2 in Grid View
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:

and ensure that it is activated, then add the above code and save.Best regards,
MikeJune 26, 2025 at 10:25 pm #1485980In reply to: Accessibility Issue with Search Icon
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 -
This reply was modified 7 months, 1 week ago by
-
AuthorSearch Results
-
Search Results
-
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, DianaTopic: Theme update
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
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.
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
MikeTopic: lightbox issues
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
