-
Search Results
-
Hello,
I was looking for the blog layout for individual posts in the Enfold settings. Unfortunately, under “Style for single posts” I can’t find an option to remove the preview image that precedes the single post altogether. Setting it to display:none via CSS is not an option, since the image will still load.
I don’t want the post image to be displayed at the top of the post at all, otherwise it often duplicates the image in the post, or we use post images that would simply be inappropriate for the top of the post at single level. Is there a code snippet to hide the post images at the top of the post altogether (without output in the HTML)?
Thanks in advance and best regards,
MarcelTopic: Enfold Gallery Duplicated
Hi Rikard,
Per your request, I’m starting this new thread…
I’m having a problem with the Gallery on this webpage: https://www.structint.com/nde-inspection-services/. I have a 5 column gallery and it is being duplicated. Using the debugger, the code is:
[av_gallery ids='1770,1769,1776,1772,1773' style='thumbnails' preview_size='portfolio' crop_big_preview_thumbnail='avia-gallery-big-crop-thumb' thumb_size='portfolio' columns='5' imagelink='lightbox' link_dest='' lightbox_text='caption' lazyload='deactivate_avia_lazyload' img_scrset='' html_lazy_loading='disabled' alb_description='' id='' custom_class='' template_class='' av_uid='av-v1pj' sc_version='1.0' admin_preview_bg='']
Website admin login details are provided in the Private Content area.
Any help is greatly appreciated.
Thank you!
All the Best,
NathanI am suddenly unable to rearrange Gallery items that display thumbnails. I am using Gallery with Preview (large image above & thumbnails below).
After adding 2 new images I cannot move them to become the first 2 images.
The images previously were able to Drag & Drop – but they no longer move.
Tested in Firefox & Chrome.
Using latest Enfold and latest WP version.Hello,
I’ve noticed just recently a strange phenomenon on my blog posts. On the sidebar of each post, the thumbnail image for that particular post (but not the other thumbnails) is somehow corrupted, or at least displaying incorrectly. They are squeezed horizontally. See examples:https://centerforworldmusic.org/2022/02/juan-carlos-blanco/
https://centerforworldmusic.org/2022/01/laurel-grinnell-wilson/
https://centerforworldmusic.org/2021/10/access-seniors/
I’d appreciate suggestions as to how to fix this.
Note: I’ve already regenerated the 36 x 36 thumbnails.
Thanks! Lance
I have 6 images in a gallery, but each thumbnail shows up twice underneath the big image. I’ve deleted the gallery and added back in even, but still shows up like that.
How can i remove featured image link in my single posts ?

I want to keep the featured image on the blog archive page but not on the single post pages.
https://mvservice.de/news/ >> this page is OK.I Included in the enfold child functions.php following code:
Code snippets:
//——————————————————–
// PHP function – Remove featured image on all post page
//——————————————————–function wordpress_hide_feature_image( $html, $post_id, $post_image_id ) {
return is_single() ? ” : $html;
}
// add the filter
add_filter( ‘post_thumbnail_html’, ‘wordpress_hide_feature_image’, 10, 3);This code only removed the featured image but not the link with the placeholder image
Next step: I tried from Kriesi Documentation following change:
Remove featured image link from single post
To remove featured image link on single post, please add following code to bottom of Functions.php file of your child theme in Appearance > Editor
add_filter(‘avf_post_featured_image_link’,’av_remove_featured_image_link’);
function av_remove_featured_image_link(){
if(is_single()){
echo get_the_post_thumbnail( $current_post[‘the_id’], ‘featured’ );
}>> This code removes the the featured images on the archive page !! and in the single post pages the link with placeholder image is still visible.
Can you help?
