Forum Replies Created
-
AuthorPosts
-
Hey jonroot,
Thank you for continuing to use Enfold.
Have you done any speed optimization on the site such as image compression? We have checked some of the images, and they are quite large relative to their dimensions, one image is only 800×600px but is almost half a megabyte. We recommend installing an image compression plugin and a caching plugin. Please see the articles below for tips on further optimizing your site.
— https://gtmetrix.com/wordpress-optimization-guide.html
— https://kriesi.at/archives/scoring-100-100-in-google-pagespeed-insights-gtmetrix-pagespeed-and-yslowBest regards,
IsmaelHey Tanja,
Thank you for the inquiry.
The video seemed to be loading quickly when we checked. The delay is quite normal since the video needs to buffer some content before it can play. Unfortunately, we don’t have direct control over this, as it depends primarily on Vimeo and network conditions, as well as the viewer’s device and browser. You could try optimizing the page further so that other resources load as quickly as possible, which should slightly improve the overall experience.
— https://gtmetrix.com/wordpress-optimization-guide.html
— https://kriesi.at/archives/scoring-100-100-in-google-pagespeed-insights-gtmetrix-pagespeed-and-yslowBest regards,
IsmaelOctober 28, 2025 at 6:36 am in reply to: Masonry Blog Posts no longer sorting date correctly #1490645Hi,
@Jason: You have probably enabled the Top Header before. If you really need to keep the left sidebar or header and still include a search field on the page for mobile view, you can try adding a Search element from the Advanced Layout Builder.
Please open another thread if you have more questions.
Best regards,
IsmaelHi,
Thank you for the info.
We adjusted the code in the Quick CSS field a bit. It should be working correctly now.
@media only screen and (min-width: 769px) { /* Add your Desktop Styles here */ #top .fullsize .template-blog .big-preview { padding: 0 0 10px 0; width: 40%; } .av-alb-blogposts .post-entry { display: block; } .av-alb-blogposts .big-preview.single-big a { height: 100%; } .av-alb-blogposts .big-preview.single-big a img { object-fit: contain; } #top .fullsize .template-blog .post-title { text-align: left; font-size: 30px; padding: 15px 0; max-width: 800px; margin: 0 auto; } #top .fullsize .template-blog .post-meta-infos { text-align: left; } #top .fullsize .template-blog .post .entry-content-wrapper { width: 60%; float: left; } #top .fullsize .template-blog .blog-meta { display: none; } #top .fullsize .template-blog .big-preview { padding: 0 0 10px 0; width: calc(40% - 50px); float: left; margin-right: 50px; min-height: 200px; } } @media only screen and (min-width: 989px) { #top .fullsize .template-blog .big-preview img { min-width: 494px; } }Best regards,
IsmaelHi,
Thank you for the update.
The read more link is no longer required since the full content is already visible. If you want to keep the link, remove this css rule.
.avia-fold-unfold-section .av-fold-button-wrapper { display: none; }Best regards,
IsmaelHey derdschuh,
Thank you for the inquiry.
Try adding this css code to properly resize the testimonial items on smaller screens:
@media only screen and (max-width: 1366px) { /* Add your Mobile Styles here */ #top .av-minimal-toggle .toggle_content .avia-testimonial { width: 50%; display: block; float: left; } } @media only screen and (max-width: 768px) { /* Add your Mobile Styles here */ #top .av-minimal-toggle .toggle_content .avia-testimonial { width: 100%; display: block; float: none; } }Result:
Best regards,
IsmaelHey Angelo,
Thank you for the inquiry.
Please add this css code to adjust the alignment of the logo on all screen sizes.
.logo, .logo a { display: flex; align-items: center; } .logo img.alternate, .logo .subtext.avia-svg-logo-sub svg { position: relative; } .logo .subtext.avia-standard-logo-sub { display: flex; align-items: center; height: 100%; width: 170px; position: absolute; }Best regards,
IsmaelOctober 28, 2025 at 5:33 am in reply to: How can we make it so that every time we interact with the filter, the page load #1490639October 28, 2025 at 5:30 am in reply to: Pagination and items settings in taxonomy-portfolio_entries.php #1490638Hi,
Thank you for the update.
We may need to log in to the site to properly check the issue. Please provide the login details in the private field.
Best regards,
IsmaelHey RENZCOM,
Thank you for the inquiry.
Try to add this css code to adjust the header height in tablet landscape view:
@media only screen and (max-width: 1366px) { .responsive.html_mobile_menu_tablet #top #header_main>.container .main_menu .av-main-nav>li>a, .responsive.html_mobile_menu_tablet #top #wrap_all .av-logo-container { height: 90px; line-height: 90px; } }Best regards,
IsmaelHi,
You need to remove this css code if you want the featured image to resize automatically based on screen size. This rule sets a minimum height of 630px for the image, preventing it from shrinking while resizing the window. It does preserve the aspect ratio using object-fit: cover.
#top.single-post .fullsize .template-blog .big-preview img { width: 1200px; min-height: 630px; object-fit: cover; }Best regards,
IsmaelHi,
@Jason: As mentioned in the previous thread, the search icon only works for the Top Header. It is disabled by default for the left and right sidebar/header layouts. If you need the search icon to display, you’ll have to modify the avia_append_search_nav function in the enfold/includes/config-enfold/functions-enfold.php file.
Best regards,
IsmaelOctober 27, 2025 at 6:54 am in reply to: Alignment issues with “image-overlay overlay-type-external” on hover #1490614Hi,
You can add the script to the child theme’s functions.php file.
Best regards,
IsmaelHi,
Thank you for the update.
The menu actually looks better on a single line, but if you prefer adding a second row, try to add this css to limit the height of each menu item.
#avia-menu > li { flex: 1 1 calc(25% - 10px); max-height: 24px; }Best regards,
IsmaelOctober 27, 2025 at 6:49 am in reply to: Pagination and items settings in taxonomy-portfolio_entries.php #1490612Hey milkrow,
Thank you for the inquiry.
Instead of editing the template, try adding this filter to the functions.php file:
function avf_avia_post_grid_query_mod( $query, $params ) { if ( is_tax( 'portfolio_entries' ) ) { $query['posts_per_page'] = 18; } return $query; } add_filter( 'avia_post_grid_query', 'avf_avia_post_grid_query_mod', 10, 2 );Let us know the result.
Best regards,
IsmaelHey dweddell,
Thank you for the inquiry.
Looks like you managed to work around this by creating a duplicate of the section with the fold/unfold option deactivated. If you still need to disable this feature on mobile, please try this css:
@media only screen and (max-width: 768px) { /* Add your Mobile Styles here */ .av-fold-unfold-container { max-height: max-content !important; } .avia-fold-unfold-section .av-fold-button-wrapper { display: none; } }Best regards,
IsmaelHi,
Thank you for the info.
We tried logging in, but the user account provided above does not exist. Please create a test page and provide valid login credentials so that we can check the modification.
Best regards,
IsmaelHi,
Thank you for this update @BigBatT. We’ll forward the files to our channel.
Have a nice day.
Best regards,
IsmaelHi,
Great! Glad to know this has been resolved. Please don’t hesitate to open another thread if you have more questions.
Have a nice day.
Best regards,
IsmaelOctober 24, 2025 at 7:00 am in reply to: How can we make it so that every time we interact with the filter, the page load #1490560Hi,
Thank you for the screenshots.
We can’t reproduce the same issue on our installation. We tried selecting a filter, but the images remained the same. We even tried resetting the sorting and then selecting another filter, but the images still look the same. Which browser are you testing this with?
Best regards,
IsmaelHi,
Thank you for the update.
Where did you place the css code? We are not seeing the modifications in the document, but we can see that the following css rule is preventing the main menu from displaying on mobile view. You need to place the css we suggested below that rule.
For the style adjustments of the custom search, please contact the plugin developers.
Best regards,
IsmaelHey Jables,
Thank you for the inquiry.
This layout is not available by default, but you can try using the Blog Posts element. Set Content > Select Entries > Blog Style to Single author, big preview pic, then add the following css code to place the featured image beside the post content.
.av-alb-blogposts {} .av-alb-blogposts .post-entry { display: flex; } .entry-content-wrapper .big-preview.single-big { min-width: 30%; } .av-alb-blogposts .big-preview.single-big a { height: 100%; } .av-alb-blogposts .big-preview.single-big a img { object-fit: cover; height: 100%; max-height: 300px; }Best regards,
IsmaelHi,
Great! Let us know if you have more questions. Have a nice day.
Best regards,
IsmaelHi,
We edited the functions.php file and adjusted the priority of the action hook. It should be working properly now.
Best regards,
IsmaelOctober 23, 2025 at 7:47 am in reply to: How can we make it so that every time we interact with the filter, the page load #1490530Hi,
Thank you for the inquiry.
The images are now visible, but they’ve changed from square to rectangular. If you refresh the page, they appear square again.
The images in the portfolio grid still look square when we checked. This is how the grid looks on our end:
Would you mind providing a screenshot of the issue? You can use platforms like Savvyify, ImgBB, PostImages or Dropbox to upload and share the screenshot. Here are the steps to follow:
1.) Visit the website of your chosen platform, such as Savvyify, ImgBB, PostImages or Dropbox.
2.) Locate the option to upload a file or an image.
3.) Select the screenshot file from your computer or device and upload it to the platform.
4.) After the upload is complete, you will be provided with a shareable link or an embed code.
5.) Copy the link or code and include it in your message or response to provide us with the screenshot.Thank you for taking the time to share the screenshot. It will help us better understand the issue you’re facing and provide appropriate assistance.
Best regards,
IsmaelHi,
We may need to inspect the site to properly check the issue. Please provide the login details in the private field and make sure that Appearance > Theme File Editor is enabled.
Best regards,
IsmaelHey svweb,
Thank you for the inquiry.
Did you add this css code? It shifts the main container upward, causing it to overlap with the header.
#main { margin-top: -150px!important; }This is how it should look normally without the css modification.
Try to replace it with this css code:
@media only screen and (min-width: 768px) { /* Add your Desktop Styles here */ #main { margin-top: -150px!important; } }Best regards,
Ismael -
AuthorPosts











