Forum Replies Created
-
AuthorPosts
-
October 9, 2025 at 7:29 am in reply to: Masonry Blog Posts no longer sorting date correctly #1489975
Hey GWS,
Thank you for the inquiry.
We are not really sure why the items are not sorting correctly, but we do know that there’s a known quirk with the masonry or isotope script where sorting may fail at times, often due to differences in content or image sizes between items.
Please try this script in the functions.php file and let us know the result:
add_action('wp_footer', function () { ?> <script> document.addEventListener('DOMContentLoaded', function () { const masonryContainer = document.querySelector('.av-masonry-container'); if (!masonryContainer) return; const masonryItems = Array.from(masonryContainer.querySelectorAll('.av-masonry-entry')); const masonryWithDates = masonryItems.map(item => { const dateElement = item.querySelector('.av-masonry-date'); const dateText = dateElement ? dateElement.textContent.trim() : ''; const parsedDate = new Date(dateText); return { element: item, date: parsedDate }; }); masonryWithDates.sort((a, b) => b.date - a.date); masonryWithDates.forEach(({ element }) => { masonryContainer.appendChild(element); }); }); </script> <?php }, 9999);Best regards,
IsmaelOctober 9, 2025 at 7:19 am in reply to: Table of Contents Widget – Current Position and Headline #1489974Hi,
Thank you for the update.
We found a minor issue in the code. Please look for this line:
link.classList.toggle('active', link.getAttribute('href') === #${currentId});Replace it with:
link.classList.toggle('active', link.getAttribute('href') === '#' + currentId);Hope this helps.
Best regards,
IsmaelOctober 9, 2025 at 7:15 am in reply to: Main Page Moves Few Pixels Right When Shopping Cart is Clicked #1489973Hi,
The css modification was still in place when we checked. Where exactly did you add the css? Please try to override it in the Quick CSS field using the css rule we provided above and make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings.
Best regards,
IsmaelHey Brugmedia,
Thank you for the inquiry.
The “cloudy sky” background seems to be displaying correctly on our end. Would you mind providing a screenshot of the changes you’d like to make? You can upload and share it using platforms such as Savvyify, ImgBB, PostImages, or Dropbox.
Best regards,
IsmaelOctober 9, 2025 at 7:06 am in reply to: Extremely slow image uploads and admin pages when using Enfold #1489971Hi,
Glad to know that switching to another image editor or image extension resolved the issue. Please feel free to open a new thread if you have any further questions.
Have a nice day.
Best regards,
IsmaelOctober 9, 2025 at 7:02 am in reply to: Issue recap – blocks displayed side by side instead of below each other on “Einblicke und Referenzen” #1489970Hey Verena Pichler,
Thank you for the update.
We can’t be entirely sure why there’s a shortcode inside your Text block. It’s possible that it was added manually, or that someone switched from the Advanced Layout Builder to the default editor and then back to the builder, which is not recommended. Another possibility is that invalid html was added in the Text block, such as unclosed tags. You may need to remove the broken elements and recreate them from scratch, making sure there are no invalid html tags in the content. Let us know the result.
Best regards,
IsmaelOctober 9, 2025 at 6:51 am in reply to: How to Put a Custom Element Button into a Sidebar Widget #1489969Hey Valerie,
Thank you for the inquiry.
This is possible, but you will need to switch the builder to debug mode to enable the shortcode field. Once enabled, you can copy the shortcode of the element from the shortcode field and paste it into a Text or HTML widget. Please refer to the documentation below for more info.
— https://kriesi.at/documentation/enfold/intro-to-layout-builder/#debug-mode
Let us know how it goes.
Best regards,
IsmaelOctober 9, 2025 at 6:40 am in reply to: Mobile Menu Styling Not Working on Child Theme on Staging Site #1489968Hi,
Glad to know this has been resolved. We’ll forward your request to our channel. In the meantime, please keep the css modification, and let us know if you have any further questions.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for the video.
This happens because the columns are set to have equal height. When this option is enabled, the rows are displayed as a table and the columns inside as cells, which by default resize automatically to occupy the remaining space. If you don’t want this behavior, you can either disable the equal height option or make sure that the remaining space is filled. Let us know how it goes.
Best regards,
IsmaelOctober 8, 2025 at 7:12 am in reply to: How to build 1/2 + 2×2 image grid with text overlays #1489947October 8, 2025 at 7:05 am in reply to: Main Page Moves Few Pixels Right When Shopping Cart is Clicked #1489946Hi,
Thanks for following up.
You need to remove the css code or override it with this css rule.
body.xoo-wsc-cart-active { padding-right: auto; }Let us know how it goes.
Best regards,
IsmaelOctober 8, 2025 at 6:59 am in reply to: Table of Contents Widget – Current Position and Headline #1489945Hey atx_m,
Thank you for the inquiry.
The TOC widget doesn’t have an active state by default, but you can use this script in the functions.php file to add an active class on click and while scrolling.
add_action('wp_footer', function () { ?> <script> document.addEventListener("DOMContentLoaded", function () { const tocLinks = document.querySelectorAll('.avia-toc-link'); const headingSelectors = document.querySelector('.avia-toc-container').dataset.level.split(','); const headings = Array.from(document.querySelectorAll(headingSelectors.join(','))); tocLinks.forEach(link => { link.addEventListener('click', function () { tocLinks.forEach(l => l.classList.remove('active')); this.classList.add('active'); }); }); function onScroll() { let scrollPosition = window.scrollY + 100; let currentId = null; for (let i = headings.length - 1; i >= 0; i--) { const heading = headings[i]; if (heading.offsetTop <= scrollPosition) { currentId = heading.id; break; } } if (currentId) { tocLinks.forEach(link => { link.classList.toggle('active', link.getAttribute('href') ===#${currentId}); }); } } window.addEventListener('scroll', onScroll); onScroll(); }); </script> <?php }, 9999);You can then include this css to adjust the color of the active TOC links:
.avia-toc-link.active { color: #fe9000; font-weight: bold; }To change the heading tags, edit the widget and look for the “Select headlines to include” option.
Let us know the result.
Best regards,
IsmaelOctober 8, 2025 at 6:40 am in reply to: Mobile Menu Styling Not Working on Child Theme on Staging Site #1489943Hi,
Thank you for the update.
We added this code to the Quick CSS field to make sure the font of the submenu links remain regular on smaller screens. Unfortunately, there is no a dedicated option for this, so a custom css modification was necessary.
#top #wrap_all .av-burger-overlay .av-burger-overlay-scroll #av-burger-menu-ul > li > ul.sub-menu li a { font-weight: normal; }Hey Verena Pichler,
Thank you for the inquiry.
Looks like there’s a builder shortcode inside a Text Block element. Could you clarify why the Text Block shortcode was placed within another Text Block? We may need to inspect the site to better understand the issue. Please create a test page and share the URL in the private field.
Hope your friend gets well soon.
Best regards,
IsmaelHey condonp,
Thank you for the inquiry.
Adding this css code should center-align the images in the footer widgets on smaller screens.
@media only screen and (max-width: 768px) { /* Add your Mobile Styles here */ #footer .widget.widget_text { margin: 0 auto; } }Please make sure toggle or temporarily disable the Enfold > Performance > File Compression settings, then purge the cache before checking the page.
Best regards,
IsmaelOctober 7, 2025 at 7:18 am in reply to: Extremely slow image uploads and admin pages when using Enfold #1489912Hi,
The configuration looks typical for WordPress installations — almost the same as our local installation. What configuration did you add to your .htaccess file?
Another thing you can try is to switch the default image editor from WP_Image_Editor_Imagick to WP_Image_Editor_GD to see if that helps.
— https://developer.wordpress.org/reference/hooks/wp_image_editors/
We tried uploading six files to the media library, around 6MB, and it took about 10 seconds or less. It’s not particularly fast, but not terribly slow either. We also noticed that you’re using a custom media library plugin (WP Media Folder), which could be contributing to the slowdown. Have you tried disabling this plugin to see if it makes a difference?
Best regards,
IsmaelOctober 7, 2025 at 6:46 am in reply to: Main Page Moves Few Pixels Right When Shopping Cart is Clicked #1489910Hi,
Thank you for the update.
This is what happens when we toggle the css rule — you’ll notice how the document moves when we turn it on and off. The issue is definitely caused by the css rule. Please check this short video:
Best regards,
IsmaelOctober 7, 2025 at 6:40 am in reply to: Background Video in colour section shows the beginning of video once it has play #1489909Hi,
Great! Glad to know this has been resolved. Please feel free to open another thread if you have more questions.
Have a nice day.
Best regards,
IsmaelHey luca,
Thank you for your interest in the theme.
The Enfold theme has its own Advanced Layout Builder, which is on par with other page builders and contains numerous types of elements. You can find more information about the builder in the documentation: https://kriesi.at/documentation/enfold/intro-to-layout-builder/
The theme also features advanced theme options, dynamic data, custom element templates and should be compatible with plugins like Woocommerce.
Let us know if you need to know more.
Best regards,
IsmaelHi,
Thank you for the update.
You can add this css code to adjust the width of the featured images in mobile view, make sure they don’t overflow outside the screen.
@media only screen and (max-width: 989px) { /* Add your Mobile Styles here */ #top.single-post .fullsize .template-blog .big-preview img { width: 100%; min-height: auto; object-fit: contain; } }Result:
Best regards,
IsmaelHi,
Thank you for the update.
If a child theme is not activated, you can add the code using a plugin like Code Snippets or a similar tool to make sure the modification is preserved during updates. Still, it’s recommended to install a child theme. Let us know how it goes.
Best regards,
IsmaelOctober 6, 2025 at 7:18 am in reply to: Extremely slow image uploads and admin pages when using Enfold #1489877Hi,
We are not encountering this issue on our end, and there have been no similar reports from other users, so this is probably related to your server configuration or specifications. Where is the site hosted, and what are the server specs?
If you have access to your PHP configuration or php.ini, try to add the following options:
max_execution_time = 300 memory_limit = 512M upload_max_filesize = 20MYou can also add it in the .htaccess file in the root directory of your WordPress installation.
php_value max_execution_time 300 php_value memory_limit 512M php_value upload_max_filesize 20MAnother thing you could try is disabling the thumbnails generated by the theme using this filter in the functions.php file:
add_action('init', 'ava_remove_enfold_image_thumbnails'); function ava_remove_enfold_image_thumbnails() { remove_image_size('square'); remove_image_size('featured'); remove_image_size('featured_large'); remove_image_size('portfolio'); remove_image_size('portfolio_small'); remove_image_size('gallery'); remove_image_size('magazine'); remove_image_size('masonry'); remove_image_size('entry_without_sidebar'); remove_image_size('entry_with_sidebar'); remove_image_size('shop_thumbnail'); remove_image_size('shop_catalog'); remove_image_size('shop_single'); remove_image_size('shop_gallery_thumbnail'); } add_filter( 'intermediate_image_sizes_advanced', 'ava_intermediate_image_sizes_advanced_mod' ); function ava_intermediate_image_sizes_advanced_mod( $sizes ) { unset( $sizes['large']); unset( $sizes['medium_large']); return $sizes; }We recommend reaching out to your hosting provider for additional assistance.
Best regards,
IsmaelHi,
It’s actually good to disable lazy loading for elements that affect LCP because lazy loading can delay their appearance. In this case, it’s already handled correctly, so there’s nothing you need to do for this part.
For the fetchpriority issue, if you’re using Image layers in the Layer Slider, go to Layer Settings > Attributes > Custom Attributes tab of the layer, then add fetchpriority as the attribute and set its value to high. The following article should explain what this attribute does.
— https://addyosmani.com/blog/fetch-priority/
Best regards,
IsmaelOctober 6, 2025 at 6:52 am in reply to: Main Page Moves Few Pixels Right When Shopping Cart is Clicked #1489874Hey a_edemirci,
Thank you for the inquiry.
This seems to be an issue with a custom css style from the cart plugin.
body.xoo-wsc-cart-active { padding-right: 15px; }Try to override it with this css:
body.xoo-wsc-cart-active { padding-right: auto; }Please make sure to purge the cache before checking the page.
Best regards,
IsmaelOctober 6, 2025 at 6:48 am in reply to: Layer Slider 7 Text Link Deleted But Cursor Still Shows #1489873Hey Valerie,
Thank you for the inquiry.
Where can check the issue? Please provide a screenshot using platforms like Savvyify, ImgBB, PostImages or Dropbox, then create a test page so we can inspect the elements.
Best regards,
IsmaelHey furtivo,
Thank you for the inquiry.
We may need to log in to the site to properly investigate the issue. Please provide the login details in the private field and make sure that the Appearance > Theme File Editor is activated in case we need to check the theme files.
Best regards,
IsmaelHey Alexandre,
Thank you for the inquiry.
The site was not loading when we checked. Unfortunately, we do not provide support for third-party extensions or plugins as stated on our support policy. Please contact the plugin developer for additional assistance.
Best regards,
IsmaelHi,
The column animations can be disabled under the Advanced > Animation tab. We created a copy of the home page, disabled all animations and added the following filter using the Code Snippets plugin (named “Enfold Header Scroll Offset”). This resolved the scroll issue.
Please make sure to purge the cache before checking the page (see private field).
function avf_header_setting_filter_mod($header) { $header['header_scroll_offset'] = $header['header_scroll_offset'] + 200; return $header; } add_filter('avf_header_setting_filter', 'avf_header_setting_filter_mod', 9999, 1);Best regards,
Ismael -
AuthorPosts






