Forum Replies Created
-
AuthorPosts
-
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,
MikeHey mountaintopengraving,
Thanks for the link to your site, but I didn’t find any pages or events that were blank in the backend, and I was able to edit the pages that I tested.
Your page /donnys-at-core-restaurant-menu-live-music-specials/ was created with the Block Editor and not the Enfold Advanced Layout Builder, and your About, Capri Room, appetizer-add-ons, pages were created with the Advanced Layout Builder and I found no issues editing them.
Are you using the same login that you posted for us?
What page can you not update, and what changes are you trying to make?Best regards,
MikeHey schweg33,
I have opened the original thread so you can ask Guenni007, please post there and we will close this one.Best regards,
MikeHi,
Glad that you found the setting, it is not important to use this setting.Best regards,
MikeHi,
Thanks, between each image in your text element, you have a line break “br” and you also have a paragraph tag “p” wrapping some of your images, if you remove these the images will line up.
It would be easier for you to see these in the text element using the “code” tab instead of the visual tab.
Best regards,
MikeHi,
Thanks, if I disable your LiteSpeed Cache plugin the jQuery error doesn’t show, but I don’t see any settings for it in your plugin. So try reviewing the settings and try disabling them one by one to find the setting causing this, or you can the plugin support forum to find the setting.
I don’t know this plugin so they would know more about this then us.Best regards,
MikeHi,
Thanks, now the login is admin, I added the code above to your “My Custom Functions” plugin and now your magazine titles are “p”, please check.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,
I see that you have this custom css:#top .avia-smallarrow-slider:not(.av-slideshow-ui) .avia-slideshow-arrows a, #top .avia-smallarrow-slider.av-slideshow-ui .avia-slideshow-arrows.av-visible-prev a.prev-slide, #top .avia-smallarrow-slider.av-slideshow-ui .avia-slideshow-arrows.av-visible-next a.next-slide { width: 24px !important; opacity: 1; }
this is forcing the width to 24px, you can change this css and then add the css above, or try this css instead:
#top .avia-smallarrow-slider:not(.av-slideshow-ui) .avia-slideshow-arrows a, #top .avia-smallarrow-slider.av-slideshow-ui .avia-slideshow-arrows.av-visible-prev a.prev-slide, #top .avia-smallarrow-slider.av-slideshow-ui .avia-slideshow-arrows.av-visible-next a.next-slide { width: 50px !important; height: 50px !important; line-height: 50px !important; font-size: 20px !important; } #top .avia-smallarrow-slider .avia-slideshow-arrows { position: relative; width: 120px; left: auto; height: 50px; right: 10px; } #top .avia-smallarrow-slider .avia-slideshow-arrows a.avia-svg-icon svg:first-child, #top .avia-smallarrow-slider .avia-slideshow-arrows a.avia-svg-icon img[is-svg-img="true"] { height: 20px; margin-top: 17px; }
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
currently:
with this new css:
After applying the css, please clear your browser cache and check.Best regards,
MikeHi,
Typically this occurs when the jQuery script is added before the main jQuery code is.
Check if you have a caching plugin that is forcing jQuery into the footer or delaying it, if you are not sure try disabling it.
Then check if Enfold Theme Options ▸ Performance ▸ Load jQuery in your footer is enabled.
also try disabling Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression, and check again.
If this doesn’t help, include a admin login in the Private Content area so we can examine.Best regards,
MikeHey Kat,
Thank you for your patience and the link to your site, I tested with my Android device and with Safari on Mac in Responsive Design Mode to emulate a iPhone, but the burger menu and header image worked correctly. Unfortunately, I don’t have a iPhone to test with.
Try disabling your plugins and clear your iPhone cache and check again.
Please note that iPhones can be hard to clear the cache, often you need to also clear the history to fully purge the cache, following these steps for Safari and note Step 4 where you will Clear the History.Best regards,
MikeMay 11, 2025 at 2:10 pm in reply to: Move blog-tags after blog-categories on the post-meta-infos #1484020Hi,
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,
It looks like Guenni007 added a button element with the custom class “my-find-button”.Best regards,
MikeHey rixi,
Please link to your page where we can see this and examine.Best regards,
MikeHi,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:.dropdown_widget_cart:has(.woocommerce-mini-cart__empty-message) { display: none !important; }
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
After applying the css, please clear your browser cache and check.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,
MikeHey shantidevii,
Each license can be installed on one domain and unlimited sub-domains of that domain. Each domain/license needs a unique Token, using the same Token on more than one domain will cause an error. If you have a domain and multiple sub-domains you can use the same Token since Envato (Theme Forest) only counts that as one domain.
If you forgot which Token goes with which domain, it is fine as long as each license/Token is used only once.Best regards,
MikeMay 10, 2025 at 8:58 pm in reply to: mobile menu trap focus and/or escape to close overlay menu #1484001Hey sky19er,
Thank you for your patience and the link to your site. The following javascript will trap focus in the burger menu when it is opened and cycle though the items until the escape key is used, which will then focus on the close button and trigger it.
Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:function trap_focus_in_burger_menu_esc_to_close() { ?> <script> function trapFocusInBurgerMenu() { let menu = document.getElementById('av-burger-menu-ul'); let burgerButton = document.getElementById('burger-button'); let focusableElements = []; let firstFocusableElement = null; let lastFocusableElement = null; function getFocusableElements() { focusableElements = menu.querySelectorAll( 'a[href], button, input, select, textarea, [tabindex]:not([tabindex="-1"])' ); focusableElements = Array.from(focusableElements).filter( (el) => !el.hasAttribute('disabled') ); firstFocusableElement = focusableElements[0]; lastFocusableElement = focusableElements[focusableElements.length - 1]; } function closeMenu() { if (menu) { menu.style.display = 'none'; const mainMenuItem = document.querySelector('li.av-burger-menu-main'); if (mainMenuItem) { const focusableChild = mainMenuItem.querySelector( 'a[href], button, input, select, textarea, [tabindex]:not([tabindex="-1"])' ); if (focusableChild && !focusableChild.hasAttribute('disabled')) { focusableChild.focus(); focusableChild.click(); } else { if (!mainMenuItem.hasAttribute('tabindex')) { mainMenuItem.setAttribute('tabindex', '0'); } mainMenuItem.focus(); mainMenuItem.click(); } } else if (burgerButton) { burgerButton.setAttribute('aria-expanded', 'false'); burgerButton.focus(); } if (burgerButton) { burgerButton.setAttribute('aria-expanded', 'false'); } } } function handleKeyDown(e) { if (e.key === 'Escape') { e.preventDefault(); closeMenu(); } else if (e.key === 'Tab') { if (e.shiftKey) { if (document.activeElement === firstFocusableElement) { e.preventDefault(); lastFocusableElement.focus(); } } else { if (document.activeElement === lastFocusableElement) { e.preventDefault(); firstFocusableElement.focus(); } } } } const observer = new MutationObserver((mutations) => { menu = document.getElementById('av-burger-menu-ul'); if (menu) { getFocusableElements(); if (focusableElements.length > 0) { firstFocusableElement.focus(); document.addEventListener('keydown', handleKeyDown); } if (burgerButton) { burgerButton.setAttribute('aria-expanded', 'true'); } } else { document.removeEventListener('keydown', handleKeyDown); if (burgerButton) { burgerButton.setAttribute('aria-expanded', 'false'); } } }); observer.observe(document.body, { childList: true, subtree: true }); window.addEventListener('unload', () => { observer.disconnect(); }); } document.addEventListener('DOMContentLoaded', trapFocusInBurgerMenu); </script> <?php } add_action( 'wp_footer', 'trap_focus_in_burger_menu_esc_to_close', 99 );
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
Best regards,
MikeMay 10, 2025 at 7:15 pm in reply to: Move blog-tags after blog-categories on the post-meta-infos #1483999Hi,
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:
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.
Best regards,
MikeMay 10, 2025 at 6:14 pm in reply to: Too much white space between header and content on mobile #1483998Hi,
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,
The login is not admin so we don’t have access to the Appearance > Theme File Editor > functions.php file.
Please adjust.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,
MikeMay 10, 2025 at 5:44 pm in reply to: Too much white space between header and content on mobile #1483992Hi,
Add this css:@media only screen and (max-width: 767px) { #main .title_container { display: none; } }
Best regards,
MikeMay 10, 2025 at 5:30 pm in reply to: Too much white space between header and content on mobile #1483990Hi,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:@media only screen and (max-width: 767px) { .responsive #top #wrap_all #header .social_bookmarks { display: block; } #avia2-menu #menu-item-8506,#avia2-menu #menu-item-9168,#avia2-menu #menu-item-6813 { display: none; } #header_main #text-8,#main .main-title { display: none; } #top #main .title_container .container { padding-bottom: 0; min-height: 25px; } #full_slider_1 *:not(.avia-caption-title, .avia-caption-content, .avia-caption-content p) { min-height: 90px; } }
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
without this css:
with this css:
Best regards,
MikeHi,
Your section with the ID #samplewebsites is hidden on small mobile devices:
probably because you wanted to show the next section only on small mobile:
but that section has no ID, so the mobile menu can’t link to it.
Note that all IDs on a page must be unique and used only once, so to correct your issue, add a ID to the second color section like “mobilesamplewebsites”
then add a second menu item under the current samplewebsites menu item, with the custom classes “av-desktop-hide av-medium-hide av-small-hide” and a link of #mobilesamplewebsites
and then add the custom class “av-mini-hide” to the current samplewebsites menu item.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,
Thank you for your patience, try removing the css above and add this instead:#top #menu-item-search a { z-index: 1; position: relative; }
Best regards,
MikeHey Oriano,
Users with “edit_published_posts” permissions such as Administrators, Editors and Authors can view the site.
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,
MikeHi,
It looks like you had a duplicate thread for the overlay icon, check here.Best regards,
Mike -
AuthorPosts