Hey Luckyredsun,
Thank you for the inquiry.
We tried logging in, but the account above is invalid. Please check the info carefully. Which editor are you using, the classic editor or the block editor? Please try to reselect the editor in Enfold > Theme Options > Select Your Editor, located at the very bottom.

Let us know the result.
Best regards,
Ismael
Hey!
Thank you for the update.
Please add this to the style block or style element:
.ava-go-back-wrapper {
position: absolute;
z-index: 99;
left: 55%;
right: auto;
top: 5px;
}

Best regards,
Ismael
Hi,
It does works, but it prevents scrolling the page when touching the image. Not a major problem, but it feels a bit strange (like Google Maps that zooms in/out when we try to scroll). Since the same swiping problem occurs on iPad too, it is more likely someone will try to scroll the page from the (larger) image there.
Maybe we should do it the other way around: allow swiping and update the selected ingredient when that happens.
Best regards,
Serge
Thanks Ismael! almost OK :)
See here: before reaching 768px the header is fine…

After 768px, it creates an additional header, with the button in the middle :-)

In private the staging area info.
Thanks again!
Bye,
A.-
Hi,
Thank you for the short clip.
We were referring to the AJAX search. For the actual search results page, we removed the pre_get_posts hook and added this filter instead.
add_filter( 'the_posts', 'ava_filter_search_results', 10, 2 );
function ava_filter_search_results( $posts, $query ) {
if (
is_admin()
|| ! $query->is_main_query()
|| ! $query->is_search()
|| ! class_exists( 'WooCommerce' )
) {
return $posts;
}
foreach ( $posts as $key => $post ) {
if ( $post->post_type !== 'product' ) {
continue;
}
$product = wc_get_product( $post->ID );
if ( ! $product ) {
continue;
}
if ( ! $product->is_visible() ) {
unset( $posts[ $key ] );
}
}
return array_values( $posts );
}

Best regards,
Ismael
In the middle of the top menu bar on the mobile view, I’d like to place a “<=” button (or a menu item with an icon).
This button/menu item should have a simple “javascript:history.back()” link so that the user can go back to the previous page.
This is useful when the website is installed as a webapp and there is no browser around it.
Could you please help me? I’ve seen some requests in the forum for a secondary menu in addition to the hamburger menu, but the PHP + CSS code mentioned seems quite complex for what I want to do.
Here what I’d like to achieve…

Thanks in advance!
Bye,
A.-
Hey tricorntravels,
You can post images to an array of services online. Google Drive, Dropbox, Imgur and Snipboard are a few of them.
Best regards,
Rikard
Hi,
I see a map background image on both those pages, so I’m not 100% that I follow what you mean. If the plugin styling is overriding the theme, then there is no easy fix. You would have to manually override the plugin styling with CSS.
Best regards,
Rikard
Hi,
Sorry for the delay. Since removing the br tags also removes the list items, we used this css in the style.css file to hide the line breaks and display the list as a standard bullet list.
.av-masonry-entry-content ul br {
display: none;
}
.av-masonry-entry-content ul li {
padding-left: 10px;
position: relative;
}
.av-masonry-entry-content ul li:before {
content: "•";
position: absolute;
left: 0;
top: 5px;
font-size: 1em;
line-height: 1;
}
Please check the private field for the screenshot.

Best regards,
Ismael
On this page that I created with your very useful help, swiping on mobile devices changes the image, making it out-of-sync with the selected item in the ingredients list. How can I block user swiping? I cannot disable the Easy Slider navigation controls (set it to no user interaction) because the item selection code in the ingredient list needs them to display the corresponding image.
Best regards,
Serge Froment
you can see (including a snippet for child-theme functions.php ) a different solution – where the margin-bottom value is ruled by a script.
Only for masonry galleries – not for Masonry Entries
This code fixes caption overlay issues in Enfold’s Masonry elements by:
– Flexible Masonry: Places captions below images instead of overlaying them
– Perfect Grid: Dynamically calculates margin-bottom based on caption height
see: https://webers-testseite.de/masonry-with-captions/
PS: for pefect grid and automatic grid – there are sometimes timing problems . Maybe i find some time to correct it in the script. For flexible Masonry this solution works very good.
Hi,
When I check I see this:

Try this css in your Quick CSS field:
.portfolio .av-masonry-entry-content br {
display: none;
}
The result:

Best regards,
Mike
Hey milkrow,
Thanks for your patience, if I understand correctly you are adding images in the text element in the ALB (advanced layout builder):

and instead of just the caption showing below the image, you want caption, description, copyright, and title to show like this:

In my tests this snippet in your child theme functions.php works:
add_filter('the_content', 'enfold_add_image_metadata');
function enfold_add_image_metadata($content) {
// Only process on frontend
if (is_admin()) {
return $content;
}
// Pattern to match images with WordPress attachment IDs
$pattern = '/<img[^>]+wp-image-(\d+)[^>]*>/i';
preg_match_all($pattern, $content, $matches);
if (!empty($matches[0])) {
foreach ($matches[0] as $index => $img_tag) {
$attachment_id = $matches[1][$index];
// Get image metadata
$title = get_the_title($attachment_id);
$caption = wp_get_attachment_caption($attachment_id);
$description = get_post_field('post_content', $attachment_id);
$copyright = get_post_meta($attachment_id, '_avia_attachment_copyright', true);
// Build metadata HTML
$metadata_html = '';
if ($title || $caption || $description || $copyright) {
$metadata_html .= '<div class="image-metadata" style="line-height: 14px; color: #666;">';
if ($title) {
$metadata_html .= '<div class="image-title" style="font-weight: bold;">' . esc_html($title) . '</div>';
}
if ($caption) {
$metadata_html .= '<div class="image-caption" style="font-style: italic;">' . esc_html($caption) . '</div>';
}
if ($description) {
$metadata_html .= '<div class="image-description">' . wp_kses_post($description) . '</div>';
}
if ($copyright) {
$metadata_html .= '<div class="image-copyright">© ' . esc_html($copyright) . '</div>';
}
$metadata_html .= '</div>';
}
// Replace the image with image + metadata
if ($metadata_html) {
$replacement = $img_tag . $metadata_html;
$content = str_replace($img_tag, $replacement, $content);
}
}
}
return $content;
}
/**
* Add CSS to hide default WordPress caption text
* while keeping the caption container styling
*/
add_action('wp_head', 'enfold_hide_default_caption_text');
function enfold_hide_default_caption_text() {
?>
<style>
/* Hide the default WordPress caption text inside caption shortcode */
.wp-caption p {
display: none !important;
}
</style>
<?php
}
In your media library add the text to your image:

Best regards,
Mike
Hey ebenanders,
Try going to your Full With Easy Slider settings Advanced > Slideshow Transition and choose Fade:

Best regards,
Mike
Dear Support,
I am using a masonry element on the page.
The title is put on the bottom of the image.
Is it possible to put it below the image?
Regards
Stefan
Hi,
Thank you for the screenshot.
The lightbox is not working on our end. The images in the gallery redirect to the actual resource page instead of opening in the lightbox. Please provide the login details in the private field so we can check the issue.
Best regards,
Ismael
Hi,
Thank you for the update.
Image captions are associated with featured images or other media attachments, which are stored as a separate post type (attachment). This is different from regular posts or portfolio items, which do not have a built-in caption field — only an excerpt if supported. It is definitely possible to retrieve the caption of the featured image attached to a post but this will require modifications to the templates, which is beyond the scope of support.
If you want to try it yourself, you can find the Masonry template in the enfold/config-templatebuilder/avia-shortcode-helpers/class-avia-masonry.php file.
Thank you for your understanding.
Best regards,
Ismael
Hi Ismael,
I see your point, you’re calling it “Captions” because that is the display characteristic. However, the masonry grid content element doesn’t/can’t pull image captions. It’s not displaying a caption for an image, it’s supposed to display a post excerpt. Therefore, I humbly submit that the accordion should be called “Excerpts”. :)
But I’m still confused about the differences between the Masonry Gallery, and a Masonry Content element. BOTH pull images (not a custom field). BOTH show the ability to display Image Copyright.
In fact, when I try to use that feature in the Masonry Content element, it doesn’t work–the image copyright does not display. Shouldn’t it? See the private link below. On that page, both show images, both are set to display the image copyright, both are set to show the “excerpt”. In truth, the Masonry Gallery is showing the image “caption” and the Masonry Content element is showing…er…well NOTHING since it is neither accessing the excerpt nor the image caption.
What I believe you’re saying is that the Masonry Content element cannot display the image caption…but it can (er…should) display the image copyright? Aren’t those pieces of information coming from the image?
Can the “excerpt” source be modified?
Or is there another way to access the caption dynamically?
Any guidance and assistance here so I can effectively display the content with the elements provided in the theme would be greatly appreciated.
KC
Hey milkrow,
Thank you for the inquiry.
In the Caption panel of the masonry element, it says “Element Title and Excerpt” so it refers to the post title and excerpt, not the image caption.

Unfortunately, it’s not possible to pull in the featured image caption without significant modifications to the theme and the masonry templates. You can either contact a freelance developer or use the link below for more customization options.
— https://kriesi.at/contact/customization
Thank you for your understanding.
Best regards,
Ismael
Hi,
Thank you for the update.
Did you enable the classic editor? In the new block editor, the excerpt can be edited using the “Edit excerpt” button located just below the featured image preview. Please see the screenshot below.

Best regards,
Ismael
Hi,
Thank you for the link.
You might be referring to the portfolio category sort buttons. Please try this css code:
.main_color .sort_width_container #js_sort_items {
display: flex;
justify-content: center;
}

Best regards,
Ismael
Hey tlscaliti,
Thank you for the inquiry.
Would you mind providing a screenshot of the issue? You can use platforms like FreeImage, ImgBB, PostImages or Dropbox to upload and share the screenshot.
Have you tried adjusting or completely disabling the padding of the column element containing the slider in mobile view? Please check this screenshot.

Best regards,
Ismael
Hey sjahan,
Thank you for the inquiry.
Looks like you’re now using the Masonry element instead of the Portfolio Grid. Where can we find the Portfolio element? Please create a test page and provide screenshots so we can check this further.

Best regards,
Ismael
Hi,
Thank you for the inquiry.
The lightbox is not opening or working. Did you enable the Lightbox Modal Window option in the Enfold > Theme Options panel? Please check the screenshot below.

Let us know the result.
Best regards,
Ismael
Hi,
Thank you for the update.
We hid the original content slider, added a new one with the updated layout and set it to two columns because it doesn’t look good with three. We also made additional adjustment to the style.css file. Make sure to edit the images, remove the gray background around them and resize them accordingly.
Best regards,
Ismael
The easy slider images are distorted on the mobile site. You can see this by going to any of the services (aka, Remodeling) then scrolling to any of the featured sections (aka, Featured Remodel #1). What you will see is an image that looks “scrunched” into the mobile’s screen width. I would appreciate your help fixing this.
Hello:
Demo import: Import: Small Business – Flat Demo
The Enfold Logo will not stop displaying. Have cleared all cache. Have deactivated all plugins. Upon inspection, it says my logo should be showing, but the enfold logo displays. Enfold logo image has been deleted.
I have changed nothing on the demo except for the logo and some color in the general styling. My logo displayed perfectly in another demo import. Have no clue, but would appreciate help. Thank you.
Tim
I was looking for a way to display the image copyright information (in addition to the original image’s caption) when I place media in a text element. (Sadly, neither are available, only a custom caption.) Please add these options when placing media in a text element.
I considered that using the image element (though this would create lots of work for me), might be a work around. I was happy to see that the image copyright was available, but strangely not the image caption.
The dynamic field capability (thank you, very nice) does not allow me to choose the image caption.
I was attempting to add this field in a custom layout. I tried in a regular page, same issue.
Any way to make this consistent across the board so anywhere you place an image, you can use the values in the fields that are already associated with the image (caption, description, copyright, title)???
The Mason Grid for content (in this case, Portfolio items) refers to this content as a “caption”, but then specifies that I choose an “excerpt” as the displayed content. I understand why you’d do this, you want the user to get a concise “preview” of the content they will see if they click the item.
I think this is confusing. If you’re not going to display the “caption” (for the featured image associated with the portfolio item), then the display accordion should be called “Excerpt” (as shown in Portfolio Grid element) if it is ONLY able to pull the excerpt value for that post.
Masonry grids by design display images…it would be helpful if I could choose the featured image’s caption OR the portfolio item’s “excerpt” of the portfolio content entry. Can this be done?
Could you provide the option to display the image copyright below the image (as you do on nearly every other image copyright display setting)? Right now, I only have left or right. Yes, I know I can use css to do this, but that is also true of left or right placement. Right? :)
Thank you for any assistance or guidance!
-
This topic was modified 4 weeks, 1 day ago by
milkrow.
Hi,
Thank you for the update.
We moved the screenshot to the private field. Unfortunately, your screenshot is not accessible. Please try to use freeimage.host or postimages.org and share the screenshot in the private field if you want it to remain private.
Best regards,
Ismael