Forum Replies Created
-
AuthorPosts
-
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 in reply to: Accessibility Issue with Scroll-to-Top Button (ARIA-hidden focusable element) #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,
MikeHey 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,
MikeHi,
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,
MikeHi,
please include an admin login in the Private Content area so we can examine.Best regards,
MikeHi,
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,
MikeHi,
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,
MikeHi,
Try this thread.Best regards,
MikeHey 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,
MikeHey 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,
MikeHi,
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,
MikeHey 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,
MikeHi,
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 1:15 pm in reply to: Flatpickr Date Picker – Year Dropdown Not Displaying in Fluent Forms #1486037Hey minhndq,
Duplicate thread for https://kriesi.at/support/topic/flatpickr-date-picker-year-dropdown-not-displaying-in-fluent-forms/#post-1485947
We will close this one.Best regards,
MikeHi,
Try this instead:.page-id-23244 #nieuws .flex_column:hover { background-color: red; }
After applying the css, please clear your browser cache and check.
Best regards,
MikeHey 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,
MikeHi,
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,
MikeHi,
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,
MikeHey Katie,
The child theme should work, please note that we recommend that you make s full backup of your site via your webhost including your database, and not a plug just in case.
Typically the only issues with a childtheme is having custom php files in the childtheme, such as header.php or footer.php, or any elements .php, you should remove these
before the update.Best regards,
MikeHi,
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 24, 2025 at 9:30 pm in reply to: Load More on Masonry with post doesn’t work on mobile #1485857Hey Gianluca,
I checked on my Android device and the load more works for me. I don’t have a iPhone, but I checked in Safari on a Mac in Responsive Design Mode to emulate a iPhone and it also works there.
Perhaps you can post the device you are using and we can try to reproduce it.Best regards,
MikeHi,
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,
MikeHi,
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,
MikeHi,
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,
MikeHey ajaxkls,
Could you add a admin login so we can examine, your snippet above is not in a “code” clip so we can’t examine it fully and our test site doesn’t have the same categories so it is hard to reproduce.Best regards,
MikeJune 21, 2025 at 1:41 pm in reply to: Freelance work to design and maintain Enfold theme sites #1485756Hey bemodesign,
We don’t have a thread for hiring freelancers, but you could start a thread “looking to hire” and add your requirements and contact info.
The Mods may “mark it as read” so it is off our list in the backend, but I don’t think any Mods would close it.Best regards,
MikeHey John,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:.page-id-4128 #after_section_1 { padding-top: 50px; }
adjust to suit.
Best regards,
MikeHey Ernst Grubbauer,
Thank you for the login, please note that your version 4.1.2 is not compatible with PHP 8+, and it can not be updated in the theme, due to how Envato (Theme Forest) changed from a API key to a Token. Unfortunately this occurs when a old “developer” buys the theme in their Envato account and doesn’t create an account for the customer. Envato will not transfer the license nor issue a new license.
Due to our exclusive contract with Envato we can not issue licenses.
Your customer should create an account with Envato and purchase a new license The upside to this is that by purchasing a new license you will also get 6 months of support on our forum to help with any issues. I recommend upgrading to a full year of support for just a little more, as the cost of the theme and a full year of support costs the same as a single hour of support from many developers..
To update your version of Enfold you will need to download the latest installable WP version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New
after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue
then you will see the Theme updated successfully message.
Please note that using the contact form is not appropriate for support questions, please log in to the support forum and open a new thread if you need further assistance.
After you purchase a new license you can register for the support forum and post your questions.Best regards,
Mike -
AuthorPosts