Hi there!
Your YT-tutorial “Custom Template and Dynamic Content with Enfold 6 & ACF” (https://www.youtube.com/watch?v=D1sMhQJYamw) explains how to add custom fields to the single page of a custom post type (in the example: Book) using ACF.
Is it also possible to layout the archive page of this custom post type in the same way? In the tutorial video you can only see the image and the title of all books in the overview. How can I add more ACF fields there?
Thanks!
Hello,
Can you get me CSS code or help me fix the Product image on this page attached? I basically need a way to show my product on 1/2 page column. Right now, as you can see, the photo is really blurry because it looks blown up. Can you help?
Thanks!!!
Hi,
Thank you for the update.
There are thumbnails in the Preview Image Size selection that crop the source image based on the specified dimensions, but they retain the original aspect ratio. For example, if the specified thumbnail size is 400x200px, which has an aspect ratio of 2:1, and an image with a 16:9 aspect ratio is uploaded, the image will be resized to a maximum width of 400px but it will retain its original aspect ratio. This means the height will be adjusted proportionally. This is why it’s recommended to upload images with a similar size and aspect ratio.
Best regards,
Ismael
Hey Maxime,
Thank you for the inquiry.
“Did you install any image lazy-loading plugin? Please try to deactivate it temporarily. You can also disable the Single Post Navigation in the Enfold > Blog Layout > Single Post Options panel. The navigation seems to contribute to the CLS issue.
Best regards,
Ismael
Hello,
Lately I have some issues on CSL performance warnend by Google search console (since 1 week).
from lighthouse they said that it is because : triathlon-quelle-distance
<div class=”avia-image-container av-m5y9jdhi-4e280f3a79db433ac854257f1c722489 av-styli…” itemprop=”image” itemscope=”itemscope” itemtype=”https://schema.org/ImageObject”>
If i delete the image I still have same performance problem and CLS lighthouse problem is :
<div class=”flex_column av-2dlx0m-1fa63b4abeeb340e0c6c900ca56c0d34 av_one_full avia-b…”>
I tried many stuff but nothing change could you please help me.
Hi Rikard,
Thanks! I have learned something again :-)
This is the screenshot:
https://www.awesomescreenshot.com/image/52473360?key=88acb4cfea4ac83237aceb72a15ec291
Maybe it is better when the squares are much darker.
Or is it possible to place them besides (on the left and right) the images of the slider?
I hope I explained it better this time!
Kind regards, Jolanda
Hi, again,
There are still images missing on our home page. Any thoughts on how to get them back? Under the hero image, there are four columns (hot tubs, inground pools, pool remodels, etc) and two rows. Seven of the images aren’t showing up, and only the image on shop online is showing up. This has never happened before. How can we fix it, please?
Thanks!
Justine
Hey edithfrei,
When I check your footer I’m not seeing any issues:

Please include a screenshot of what you see and paste the image URL in your post.
Best regards,
Mike
Hi,
When I check your two sites I don’t see a difference:

Best regards,
Mike
Hey schweg33,
I’m not sure that I see extra white space on mobile:

Please include a screenshot of what you see and paste the image URL in your post.
Best regards,
Mike
Hi,
To add a screenshot please try using an Screenshot service and pasting the image URL in your post.
Best regards,
Mike
Hi,
When I check you have a 1px padding in between the images, you could use this css to remove it:
#top .avia-logo-element-container .slide-entry {
padding: 0px;
}
change the zero if you want it larger.

Try this css to remove the top and bottom padding:
.flex_column.av-l3t08rf8-8f5e455205a44c3e3d9068782c55a0f9 {
padding: 0px 50px 0px 50px;
}

Best regards,
Mike
Hello,
I cannot get the Partner/Logo element to work properly. I want it to look like the top example on your demo page: https://kriesi.at/themes/enfold/shortcodes/partnerlogo-element/
I have made oodles of changes, tried so many things, and it worked once, for a few minutes… but then didn’t work again. Also, when I first look at the page, those logos show just blank. You have to click on it to get it to show.
Is there a certain size these images should be to show correctly? I can’t find that info anywhere. I made them all fit into a 260 x 185 box so they would be even.
Please help me! Clearly I am lost!!! (I am used to using Avada, but went with Enfold this time as I’ve used it before with success. I’m finding this particular demo very difficult)
Thank you!!
Hey Ismael
Super thanks and that has fixed most of them for now.
I have set a custom size via the Preview Image Size but my site (even with regenerating thumbnails) doesn’t seem to work. Does the system crop regardless of the original image ratio or does it required specifics?
Richard
Hallo,
i have seen in Phone size the footer image not in the middle too….
best regards und thank you for your answer
A. Krause
Hi,
Thank you for your patience, the test page that you created didin’t look the same so I created a new on linked below, to create a table use this code in the “text” tab of the text element:
<table>
<tbody>
<tr>
<td>image</td>
<td>text and button</td>
</tr>
</tbody>
</table>
then add your image and text and button

To create the button code, cue the shortcode wand in a new post with the Classic Editor

Then it will look like this:

Then you can use css to remove the borders and change the background color if you wish.
Best regards,
Mike
Hey Richard,
Thank you for the inquiry.
To avoid distorting the images, you can use the following css code instead:
.slide-image {
min-height: 223px;
}
.slide-image img {
object-fit: cover;
width: 100%;
height: 100%;
object-fit: cover;
min-height: 223px;
}
Aside from using the css above, other solutions include uploading images with the same height and aspect ratio, or selecting a specific thumbnail in the Styling > Appearance > Preview Image Size settings if you’re using the Blog Posts element.
Best regards,
Ismael
Hey navindesigns,
Thank you for the inquiry.
The error is due to the slider element below the headline:
<a href="https://bowl360astoria.nyc/" data-rel="slide-1" class="slide-image" title=""><span class="av-partner-fake-img" style="padding-bottom:76.666666666667%; background-image:url(https://xxxxxx.nyc/wp-content/uploads/2023/05/02-2.png);"></span></a>
To fix it, make sure to apply Link Title > Link Title to each slide, then add this script in the functions.php file.
function ava_custom_script_add_hidden_text()
{
?>
<script type="text/javascript">
(function ($)
{
$(document).ready(function ()
{
$('.slide-image').each(function ()
{
var $this = $(this);
var titleText = $this.attr('title');
if (titleText)
{
var hiddenSpan = $('<span>', {
'class': 'visually-hidden',
'text': titleText
});
$this.append(hiddenSpan);
}
});
});
})(jQuery);
</script>
<?php
}
add_action('wp_footer', 'ava_custom_script_add_hidden_text', 9999);
This will create a hidden span element inside the slide-image container.
<a href="https://bowl360astoria.nyc/" data-rel="slide-1" class="slide-image" title="Visit Bowl 360 Astoria">
<span class="av-partner-fake-img"
style="padding-bottom:76.666666666667%;
background-image:url(https://xxxxx.nyc/wp-content/uploads/2023/05/02-2.png);"
aria-hidden="true"></span>
<span class="visually-hidden">Visit Bowl 360 Astoria</span>
</a>
Best regards,
Ismael
I have read through all of the recent past support on this and my fullwidth easy slider stopped working on our website and I cannot figure out the solution.
It seemly happened randomly and I have tried updating Enfold to the current version, updating WordPress the its most current version, deactivating all my plugins, and building a new page. I remain stuck at the slider only showing the arrows and the dots for the images present, but none showing up when you click on these.
Can you please help me figure out what I have that is conflicting and causing the slider to not work?
riversandlands.org
Thank you so much!
Rebecca
-
This topic was modified 1 year, 3 months ago by
roconnor2.
Hi,
Thanks for the update. I see that the styling is different between your two sites, I’m not sure where the X text is located though?
1. File compression, not image compression. It might not be present in your production site since the theme version is very old.
2. If you have caching plugins or other cache applied to the site, then please clear that. Try clearing you local browser cache as well.
3. You could check the element options, to see if padding has been applied to it.
If you should need further help, then please include admin WordPress login details in private. Screenshots highlighting the problems that you are having would be helpful too.
Best regards,
Rikard
Hi there
I’ve spent ages trying to fix this issue but with no luck so far. I’ve resorted to stretching the images using the following CSS
.slide-image img {
height: 250px;
}
I’ve installed the plugins Simple Image Sizes and Force Regenerate Thumbnails, following guidance from other threads. No matter what size I select in the builder Blog Posts > Appearance or define via the plugin, along with regenerating I see no changes on the page added in Private Content.
What I am trying to achieve is a consistent height regardless of the size or ratio of the Featured Image added.
Any help would be very much appreciated.
Thanks
Richard
Rikard, the team & I really appreciate your response/help!
1. We could not locate the “image compression” settings via the path mentioned, however, we do have an “image optimization” plugin. How can we locate?
2. Also, where do we clear the referred to caches?
3. Lastly, could you please elaborate/explain what you mean when you say coming from “user input”?
In the original post, I did not make it clear this issue only occurs on mobile browsers*
Any response to the three above questions or information on the newest version of the theme without the padding issue will be greatly appreciated!
Best,
-
This reply was modified 1 year, 3 months ago by
drees202.
-
This reply was modified 1 year, 3 months ago by
drees202.
Hi,
That is not possible, unfortunately. You can try this modification but we can’t guarantee that it will work:
add_action('template_redirect', function() {
if (is_single(123)) {
remove_filter('the_content', 'featureimage_for_feeds');
}
});
Make sure the is_single argument (123) is set to the actual ID or slug of the post.
Best regards,
Ismael
Hi,
Thank you for the update.
Looks like you have selected a smaller version (300x199px) of the image. Please re-select the background image and make sure that the full size version is selected. (see private field)
Best regards,
Ismael
OK. Sorry for my bad english.
Here is a screenshot. The red rectangle shows one image. And it repeats what is OK.
BUT. The image i’ve uploaded as backgroundimage has a size of: 2560 x 1700 pixel and should fill most of the background nearly w/o repeating.
I’d like to change the size of what i call this rectangle to a much bigger one to have more of that wooden style. please ignore the red arrows…

Heres the original Background Image i use:

thanks again.
Auge
Hey Augeundso,
I’m not sure I fully understand your intentions, could post a screenshot highlighting them please? If it’s possible, then you could change the original image to better fit your needs, then upload and use that instead.
Best regards,
Rikard
Hi,
i’d like to change the size of the repeated backgroundimage.
Heres my link:
https://naturtrueb.at/
I’d like less but bigger wooden images to be repeated. How does that work if theres any possibillity.
Thanks in advance.
Auge (Austria)
Hey H.O. GmbH,
Thank you for the inquiry.
1.) Unfortunately, it’s not possible to display the slider video on mobile devices using the Fullscreen Slider, which is why a fallback image option is added. If you really need this, you can try using the Layer Slider element.
2.) We can’t reproduce the issue on our end. Would you mind providing a screenshot?
Best regards,
Ismael
Hey Matthias,
On your /kompetenzen/ page images like this:

are background images that are shown with css and don’t have a “title” attribute so there is not a way to do this.
Perhaps try a plugin like this one: Image Source Control Lite – Show Image Credits and Captions
Best regards,
Mike