Forum Replies Created
-
AuthorPosts
-
November 11, 2025 at 3:58 am in reply to: Hamburger menu icon left, logo centered, search icon right #1491152
Hi,
Thank you for the inquiry.
Did you remove the search icon? Please enable it again so we can check it properly. A screenshot would also be helpful.
Best regards,
IsmaelNovember 11, 2025 at 3:51 am in reply to: Many display problems, not sure how to open a ticket for direct support. #1491151Hey,
Thank you for the update.
1. Yes, this is the maximum number of columns. If you need more, you can always use the code or text block element to manually create your own html.
2. Please create a test page, open a new thread, and provide the login details in the private field.
3-4. Simply add the
[nolink]placeholder in the **Enfold > Footer > Copyright** field.5. Please open a dedicated thread and provide a screenshot.
6. Make sure caching and compression are off, or temporarily disable the **Enfold > Performance > File Compression** settings.
7. Would you mind providing screenshot of the “stacking columns”? You can use image platforms like imgbb or imgur for the screenshot.
8. It’s possible that there is a heading configuration in the Enfold > Advanced Styling panel, or that they are Special Heading elements with their own configurations.
It usually takes a bit of time to get used to the theme, and you might have missed some options, so we recommend reviewing the documentation. For other inquiries, please open a dedicated thread.
If you would like to proceed with a refund, you may contact ThemeForest.
Thank you.
Best regards,
IsmaelHi,
Thank you for the inquiry.
Please provide the login details in the private field so we can check this properly. Did you select the Loop post navigation option in Enfold > Blog Layout > Single Post Navigation settings? Looping will not work correctly when same_category is enabled. Try to set the Single Post Navigation to the first option (Enable post navigation).
Best regards,
IsmaelNovember 11, 2025 at 3:31 am in reply to: Boxed content in grid row with fullwidth background #1491149Hi,
Thank you for the update.
We didn’t find any grid row elements on the test page. If you need to limit the width of the cells inside a grid row to 1400px, you can use the following css code. You may need to replace the selector #av-layout-grid-1 with your custom css class or element ID.
#av-layout-grid-1 { width: 100%; display: flex; justify-content: center; flex-wrap: wrap; } #av-layout-grid-1 > .av-gridrow-cell { flex: 0 0 25%; max-width: 350px; box-sizing: border-box; } #av-layout-grid-1 .flex_cell_inner { margin: 0 auto; } @media (max-width: 768px) { #av-layout-grid-1 > .av-gridrow-cell { flex: 0 0 100%; max-width: none; } }This should work for a grid row with 4 cells. Make sure to adjust the width values in this css rule based on the number of cells in the grid.
#av-layout-grid-1 > .av-gridrow-cell { flex: 0 0 25%; max-width: 350px; box-sizing: border-box; }Best regards,
IsmaelHi,
Thank you for the inquiry.
We may need to view the site again to properly check the issue. Please create a test page and provide the URL in the private field.
Best regards,
IsmaelNovember 11, 2025 at 2:53 am in reply to: Adding product images to search result page and fix search drop down closing #1491147Hi,
Thank you for the info.
Did you add this css code somewhere?
.js_active .woocommerce-tabs .panel { display: none; }Try to override it with this css code:
.js_active .woocommerce-tabs .panel { display: block; }Please make sure to temporarily disable the cache and compression plugin (Autoptimize) while testing the site.’
Clip: https://streamable.com/ih23g6
Best regards,
IsmaelHey agenturwendt,
Thank you for the inquiry.
Looks like you have successfully adjusted the background of the slides using this css code:
#top .av-video-slide .avia-slide-wrap, #top .av-video-slide iframe { background: #fdf1e3 !important; }Let us know if you need any additional assistance.
Best regards,
IsmaelNovember 10, 2025 at 4:17 am in reply to: Klick auf Button öffnet Formular in Modal/Lightbox #1491094Hey felix_frank,
Thank you for the inquiry.
Unfortunately, it’s not possible to use a custom layout as a shortcode (av_layout_template) outside of the builder. You may need to copy the html generated by the layout shortcode and use it instead of the custom layout shortcode.
Best regards,
IsmaelNovember 10, 2025 at 4:12 am in reply to: Many display problems, not sure how to open a ticket for direct support. #1491092Hi,
Thank you for the inquiry.
1.) You can open threads using the form on this page: https://kriesi.at/support/forum/enfold/#new-post
2.) The default image style is set globally by the theme. If you need to adjust a specific image, you can do so using the Image element in the builder or by applying custom css in the Quick CSS field.
3.) It’s possible that the sidebar is enabled for that particular page. Make sure the page is set to full width by adjusting Layout > Sidebar Settings to “No Sidebar”.
If you have any other questions, please open a separate thread for each inquiry. Longer threads can get hard to follow, tend to go off topic and make it tricky for other users to find solutions. Keeping each thread focused on its original question helps us track what’s been resolved and makes it easier for everyone to find answers to similar issues.
To learn more about the theme, please check out the documentation: https://kriesi.at/documentation/enfold/
Thank you for your understanding.
Best regards,
IsmaelHi,
Thank you for the info.
It seems to be working as expected. We created a test page, added a focus keyword “test”, and then added an image with both an alt and title attribute containing the word “test”. Make sure that the alt and title attributes of the images you add to the page contain one of the focus keywords (see private field).
Best regards,
IsmaelHi,
Did you regenerate the thumbnails using the plugins suggested above? You could also try re-uploading the featured images.
Best regards,
IsmaelHi,
Thank you for the inquiry.
You can use the following css code to disable all lightbox elements on smaller screens.
@media only screen and (max-width: 768px) { /* Add your Mobile Styles here */ .lightbox, .lightbox a, .lightbox img { pointer-events: none !important; } }Best regards,
IsmaelNovember 10, 2025 at 3:39 am in reply to: Adding product images to search result page and fix search drop down closing #1491088Hi,
Thank you for the update.
We cannot reproduce the issue with the search field or the details tab. The search field remains visible at all times, and the details tab is also visible on page load. If the tab is being deactivated on load, try adding this script in the functions.php file:
add_action('wp_footer', function() { ?> <script type="text/javascript"> document.addEventListener('DOMContentLoaded', function() { var activeTab = document.querySelector('#top div div.product .woocommerce-tabs ul.tabs li.active a'); if (activeTab) { activeTab.click(); } }); </script> <?php }, 999);Best regards,
IsmaelHey Gianluca,
Thank you for the inquiry
You can use the Blog Posts element and select which category to display under Content > Select Entries > Content To Display | Which Categories Should Be Used For The Blog. To adjust the blog layout or style, look for the Blog Style settings. Please refer to the screenshot below.
Let us know if you need more info.
Best regards,
IsmaelHi,
Thank you for the inquiry.
You can try this script in the functions.php file to deactivate slides that are not visible on the current screen size.
— https://pastebin.com/RKdaXj6s
add_action('wp_footer', function() { ?> <script> document.addEventListener("DOMContentLoaded", function() { const sliders = document.querySelectorAll(".avia-slideshow"); function activateVisibleSlider() { sliders.forEach(slider => { const isVisible = slider.offsetParent !== null; const slides = slider.querySelectorAll("li[data-img-url]"); slides.forEach(slide => { const bgUrl = slide.getAttribute("data-img-url"); if (isVisible) { slide.style.backgroundImage = <code>url("${bgUrl}")</code>; } else { slide.style.backgroundImage = "none"; } }); }); } activateVisibleSlider(); let resizeTimer; window.addEventListener("resize", () => { clearTimeout(resizeTimer); resizeTimer = setTimeout(activateVisibleSlider, 200); }); }); </script> <?php }, 999);Best regards,
IsmaelHey Angelo,
Thank you for the inquiry.
Are you using the default translation editor? Please provide the login details in the private field so we can check the issue properly.
Best regards,
IsmaelNovember 4, 2025 at 1:29 am in reply to: Easy slider arrow on desktop and dot navigation on mobile [solved] #1490903Hi,
Thank you for the update.
This is not working because only the navigation arrows are enabled. Try to edit the slider element and make sure that the Styling > Navigation Controls > Slider Navigation Elements is set to Navigation arrows and dots. Let us know the result.
Best regards,
IsmaelHi,
We adjusted the script slightly and added a condition so it only applies when the screen width is equal to or less than 767px. Please edit the functions.php file and replace the script with this code:
add_action('wp_footer', function() { ?> <script> jQuery(document).ready(function($) { if (window.innerWidth <= 767) { $(".avia-fold-unfold-section").each(function() { var $section = $(this); var $container = $section.find(".av-fold-unfold-container"); if ($container.length) { $container.css({ "max-height": "none", "transition": "none" }).removeClass("folded").addClass("unfolded"); } var $buttonWrapper = $section.find(".av-fold-button-wrapper"); if ($buttonWrapper.length) { $buttonWrapper.css("display", "none"); } }); } }); </script> <?php }, 999);Best regards,
IsmaelNovember 4, 2025 at 1:15 am in reply to: Adding product images to search result page and fix search drop down closing #1490900Hey mntsrvcs,
Thank you for the inquiry.
This is possible, but you will need to directly modify the includes > loop-search.php file. Please check the links below for more info.
— https://kriesi.at/support/topic/add-featured-image-to-search-results/#post-249161
— https://kriesi.at/support/topic/change-layout-search-results/#post-1359284Best regards,
IsmaelHi,
Thank you for the inquiry.
The code is supposed to fix the hidden product issue on the search page. If this is not working, we may need to view and access the site to check the issue further. Please provide examples of the hidden products that are not supposed to display on the search page, then include the login details in the private field.
Best regards,
IsmaelHi,
Thank you for the update.
Try to add this code to the functions.php file to adjust the size of the thumbnails used in posts.
function avf_modify_thumb_size_mod( $size_array ) { $size_array['entry_without_sidebar'] = array('width' => 9999, 'height' => 9999); $size_array['entry_with_sidebar'] = array('width' => 9999, 'height' => 9999); return $size_array; } add_filter( 'avf_modify_thumb_size', 'avf_modify_thumb_size_mod', 10, 1 );After adding the filter, make sure to create a site backup, then use one of the following plugins to regenerate the thumbnails.
— https://wordpress.org/plugins/regenerate-thumbnails/
— https://wordpress.org/plugins/regenerate-thumbnails-advanced/Best regards,
IsmaelHi,
Thank you for the update.
The site requires an additional .htaccess authentication. We tried using the login details provided above, but they didn’t work. Please include the complete credentials in the private field.
Best regards,
IsmaelHi,
The filter we recommended was placed in the style.css file instead of the functions.php file. We removed it and added the following script instead. The text will still display with a slight delay, but the transition should now be disabled.
add_action('wp_footer', function() { ?> <script> jQuery(document).ready(function($) { $(".avia-fold-unfold-section").each(function() { var $section = $(this); var $container = $section.find(".av-fold-unfold-container"); if ($container.length) { $container.css({ "max-height": "none", "transition": "none" }).removeClass("folded").addClass("unfolded"); } var $buttonWrapper = $section.find(".av-fold-button-wrapper"); if ($buttonWrapper.length) { $buttonWrapper.css("display", "none"); } }); }); </script> <?php }, 999);We also edited the modification in the Quick CSS field.
@media only screen and (max-width: 768px) { .av-fold-unfold-container { max-height: none !important; transition: none !important; opacity: 1 !important; } .avia-fold-unfold-section .av-fold-button-wrapper, .av-fold-button-container { display: none !important; } #top .avia-fold-unfold-section .av-fold-unfold-container:after { display: none !important; } .avia-fold-init, .avia-fold-init-done { display: block !important; max-height: none !important; opacity: 1 !important; } }Best regards,
IsmaelHi,
No problem! Let us know if you have more questions. Have a nice day.
Best regards,
IsmaelHi,
Great! Glad to know that you’ve found a working solution. Please don’t hesitate to open another thread if you have more questions.
Have a nice day.
Best regards,
IsmaelOctober 31, 2025 at 7:15 am in reply to: How can we make it so that every time we interact with the filter, the page load #1490795Hi,
Thank you for the screenshot.
Did you add this css code?
.responsive .fullsize .grid-col-4 .grid-image { height: 215px; }This limits the height of the grid items. Try to remove this css code or override it with the following css rule:
.responsive .fullsize .grid-col-4 .grid-image { height: auto !important; }Let us know the result.
Best regards,
IsmaelHey steviger,
Thank you for the inquiry.
You can continue using the Content Slider element. Add the following html in the editor:
<div class="av-flex-container"> <div class="av-image-column"> <img src="http://site.com/image.jpeg" alt="Sample Image" /></div> <div class="av-text-column"> <h2>Title Here</h2> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec vel urna at sapien tempor dictum. </div> </div>Then add this css code to create a container with two columns, an image on the left and a title with text on the right.
.av-flex-container { display: flex; width: 100%; height: 400px; flex-wrap: wrap; } .av-image-column { flex: 1; position: relative; overflow: hidden; } .av-image-column img { width: 100%; height: 100%; object-fit: cover; } .av-text-column { flex: 1; padding: 40px; display: flex; flex-direction: column; justify-content: center; background-color: #f5f5f5; } @media (max-width: 768px) { .av-flex-container { flex-direction: column; height: auto; } .av-image-column, .av-text-column { flex: 1 1 100%; height: auto; } .av-image-column img { height: 250px; } .av-text-column { padding: 20px; } }Best regards,
IsmaelOctober 31, 2025 at 6:51 am in reply to: Adding navigation per category for Portfolio Entires #1490791Hey milkrow,
Thank you for the inquiry.
You can add this filter to the functions.php file to limit post navigation to items within the same category. However, please note that this will also disable looping and will only work if each portfolio item belongs to a single category.
add_filter( 'avf_post_nav_settings', 'avf_post_nav_settings_mod', 10, 1); function avf_post_nav_settings_mod($settings) { $settings['same_category'] = true; return $settings; }Best regards,
Ismael -
AuthorPosts






