Forum Replies Created
-
AuthorPosts
-
June 27, 2025 at 7:55 am in reply to: Custom Posts No Longer Display After Saving Blog Post Eliment #1485996
Hi,
The “Select Post Type” option is not enabled by default, but it was probably enabled by the previous developer. You can disable it back by removing the following code from the functions.php file:
add_theme_support('add_avia_builder_post_type_option');
After disabling the option, you may need to re-add the Blog Posts element or manually edit the shortcodes and remove the post_type attribute, then update the page so it’s synced with the database.
Is it possible there is an issue with the Custom Post Type UI plugin?
Yes, it’s possible that there’s an issue with the creation of the custom post type “hotel-resorts.” Another thing you could try is to select all items or the “Post Types” option in the list, since the “hotel-resorts” post type is not available, and see if that works.
Best regards,
IsmaelHi,
Glad to know it’s working. What do you mean by “HTML entities and not HTML characters”? Please explain it a bit further or provide screenshots.
Best regards,
IsmaelJune 27, 2025 at 7:42 am in reply to: Bug Report: Gallery Image Subtitle Changes to “null” on Scroll / Reload #1485994Hey Martin,
Thank you for the inquiry.
We noticed that the title attribute of the featured image is removed on mouse hover and returns on mouse out. Did you add a script that disables the title attribute on hover to prevent the default browser tooltip from showing? Please note that the lightbox script relies on the title attribute for the caption or image subtitle.
You may need to remove the script that disables the title attribute to keep the lightbox subtitle or caption consistent. Let us know the result.
Best regards,
IsmaelHi,
We edited the code a bit and replaced avia_post_nav_entries with avf_post_nav_entries. Please try it again.
staff and projects are seperate
As mentioned above, you need to make sure that the items do not share the same category. If the items in the staff and projects taxonomies share even a single category or term, they will be included in the navigation.
Best regards,
IsmaelHey Richard,
Thank you for the inquiry.
The image overlay is disabled on mobile devices by default. You can enable it back but you have to edit the themes/enfold/js/avia.js file and remove the following code from the avia_hover_effect function, around line 769.
if( $.avia_utilities.isMobile ) { return; }
Make sure that the Enfold > Performance > File Compression is temporarily disabled. Let us know the result.
Best regards,
IsmaelHey Diana,
Thank you for the inquiry.
Try to add this code in the functions.php file to replace h4 with h3.
add_filter('avf_customize_heading_settings', function($args, $class, $extra) { if ($class === 'avia_sc_timeline') { if ($args['heading'] === 'h4') { $args['heading'] = 'h3'; } } return $args; }, 10, 3);
Let us know the result.
Best regards,
IsmaelHey Daniel,
Thank you for the inquiry.
The same SVG logo image is displayed on small screens when we checked the previous site. Would you mind providing a screenshot?
Best regards,
IsmaelHey torture4,
Thank you for the inquiry.
The “Register an API Key” link is still working when we tested it. Please check the link below for more info on how to register an API key: https://developers.google.com/maps/documentation/javascript/get-api-key#key
You can directly access the map console here: https://console.cloud.google.com/google/maps-apis/credentials
Let us know if you need more info.
Best regards,
IsmaelHey profumopuntoit,
Thank you for the inquiry.
You can add this css code to adjust the width and height of the SVG icons.
.responsive #top #wrap_all .menu-item-search-dropdown >a > svg { width: 24px; height: 24px; } .responsive #top #wrap_all #menu-item-shop .cart_dropdown_link .av-cart-container svg { width: 24px; height: 18px; }
Let us know the result.
Best regards,
IsmaelHey ellkam,
Thanks for reaching out.
Try to completely remove the image from the Media > Library, then add this code in the functions.php file:
function avf_customization_modify_thumb_size( $size ) { $size['entry_without_sidebar'] = array( 'width' => 9999, 'height' => 9999 ); $size['entry_with_sidebar'] = array( 'width' => 9999, 'height' => 9999 ); return $size; } add_filter( 'avf_modify_thumb_size', 'avf_customization_modify_thumb_size', 10, 1 );
This should set the maximum width and height of the thumbnail. Upload the image again afterward.
Best regards,
IsmaelHey keep12,
Thank you for the inquiry.
Yes, you can override the includes > loop-index.php file in the child theme folder. Create a folder named includes, then place the loop-index.php file inside it. You can then add the author markup within the file.
This thread should help with the author markup: https://stackoverflow.com/questions/20467008/how-to-add-author-image-and-description-wordpress
Best regards,
IsmaelHi,
Did you set the Min. Mobile Font Size to 10px? Please make sure to purge the cache and clear the browser history, or check the site on incognito mode.
i also noticed the video is not loading now on mobile
The video displays fine on our end.
Best regards,
IsmaelJune 26, 2025 at 7:33 am in reply to: Custom Posts No Longer Display After Saving Blog Post Eliment #1485927Hi,
Thank you for the update.
The post_type attribute can be adjusted using the Select Post Type option, but when we re-enabled it using the add_avia_builder_post_type_option in the functions.php file, the post type “hotels-resorts” was not found. This could be due to a missing parameter when the “hotels-resorts” post type was registered or created.
add_theme_support('add_avia_builder_post_type_option');
You may need to set this attribute manually by editing the element shortcodes directly in the debug mode field. Please check the link below:
— https://kriesi.at/documentation/enfold/intro-to-layout-builder/#debug-mode
Once debug mode is enabled, a shortcode field will appear below the Advanced Layout Builder where you can manually set the post_type attribute in av_blog shortcodes.
This is the Select Post Type option:
Another thing that you could try is to select all post types or items in the Select Post Type list.
Best regards,
IsmaelHey ImagineDesign,
Thank you for the inquiry.
The Portfolio Grid element should display portfolio items by default, but you need to select at least one portfolio category. Please see the screenshot below.
If the issue persists, please provide the login details in the private field.
Best regards,
IsmaelHi,
Thank you for the update.
Try to replace the whole filter with the following code:
add_filter('avf_post_nav_entries', 'avf_post_nav_entries_mod', 10, 2); function avf_post_nav_entries_mod($entries, $settings) { if ($settings['type'] == 'portfolio') { $settings['same_category'] = true; // swap prev and next $entries['next'] = get_previous_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']); $entries['prev'] = get_next_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']); } return $entries; }
when you get to the end of the projects it then shows all the staff
Also, make sure that the portfolio items don’t share even a single category, otherwise, they will be included in the navigation.
Best regards,
IsmaelHey lara666,
Thank you for the inquiry.
You can add this css code to apply the style of the default dark transparent button to the contact form’s submit button:
.contact-form :is([type=submit],button:not([type=reset])) { align-items: center; display: inline-flex; gap: .5em; justify-content: center; border-radius: 100px; color: rgba(0, 0, 0, 0.6); border: 1px solid rgba(0, 0, 0, 0.6); background: 0 0; font-size: 14px; border-style: solid; border-width: 1px; transition: all 0.4s ease-in-out; padding: 9px 10px 7px; width: 80px; }
Best regards,
IsmaelHi,
Thank you for the update.
The desktop score is now 98, and 80 on mobile. CLS is now resolved, but there’s still an LCP issue, which now points to the text element below the first gallery. It will probably help to further reduce the size of the background image (kuechen-schmidt_edelstahl_footer-bg.jpg), which is still 43KB and larger than necessary. Optimizing the slider images such as kuechen-schmidt_stellenanzeige_Technischer-Koordinator_2406.webp (88KB), kuechen-schmidt_service-check_kundenzufriedenheit-1-300×150.jpg (32KB), along with the others would also help.
Best regards,
IsmaelJune 25, 2025 at 9:37 am in reply to: No animation / no background on full width slider text? #1485883Hi,
Thanks for the update.
For the caption content, try to add this code:
.avia_transform .av_slideshow_full .active-slide .avia-caption-content, .avia_transform .av_fullscreen .active-slide .avia-caption-content { visibility: visible; animation: none; }
Best regards,
IsmaelJune 25, 2025 at 7:48 am in reply to: No animation / no background on full width slider text? #1485879Hey Tilman,
Thank you for the inquiry.
You can use this css code to deactivate the animation of the slider caption and remove the background:
.avia_transform .av_slideshow_full .active-slide .avia-caption-title, .avia_transform .av_fullscreen .active-slide .avia-caption-title { visibility: visible; animation: none; } .caption_framed .slideshow_caption .avia-caption-content p, .caption_framed .slideshow_caption .avia-caption-title, .avia-caption .avia-caption-content p, .avia-caption .avia-caption-title { background: transparent; }
Let us know the result.
Best regards,
IsmaelJune 25, 2025 at 7:42 am in reply to: Custom Posts No Longer Display After Saving Blog Post Eliment #1485878Hi,
Thank you for the update.
We may need access to the file server to further investigate the issue. Please provide the S/FTP details in the private field. In the meantime, try to temporarily disable all modifications in the functions.php file and any template overrides (footer.php, header.php etc) in the child theme, and see if that makes any difference.
Best regards,
IsmaelHi,
The code will only work if the Text Block is placed directly next to or below the Code Block element. (screenshot S1)
It should work on the previous page. (screenshot S2)
Best regards,
IsmaelHey Tilman,
Thank you for the inquiry.
The overlay option is not available for the Easy Slider element by default, but you can recreate the same effect using this css code.
.avia-slideshow .avia-slide-wrap:before { content: ''; display: block; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 10; position: absolute; left: 0; top: 0; }
Let us know if you need more info.
Best regards,
IsmaelHi,
Thank you for the inquiry.
Try to remove this part from the avia_post_nav_entries filter.
$entries[‘prev’] = get_previous_post($settings[‘same_category’], $settings[‘excluded_terms’], $settings[‘taxonomy’]); $entries[‘next’] = get_next_post($settings[‘same_category’], $settings[‘excluded_terms’], $settings[‘taxonomy’]);
Let us know if this makes any difference.
Best regards,
IsmaelHey tonyiatridis,
Thank you for the inquiry.
To adjust the color of the testimonial arrow, please add this css code:
.avia-testimonial-arrow-wrap .avia-arrow { background-color: #c8cedd !important; border-color: #c8cedd; }
The text or span element in the testimonial content has inline styling, so you’ll need to remove it in order to assign a different text color.
<span style="color: #808080;">“When it comes to customer service, Brookwood Construction is top notch. I have a great level of comfort knowing Brookwood is behind the wheel, driving the project to completion.”</span>
Remove this part:
style="color: #808080;"
Let us know the result.
Best regards,
IsmaelJune 25, 2025 at 6:35 am in reply to: Full with Easy Slider Tablet Mode and Mobile Mode text will not display #1485872Hey kurson,
Thank you for the inquiry.
Please try to add this css code to adjust the visibility of the caption on smaller screens.
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ .avia_transform .av_slideshow_full .avia-caption-content{ visibility: visible; } }
Best regards,
IsmaelHey kurson,
Thank you for the inquiry.
We added this code to the Quick CSS field to override the default styling of the < strong > and < b > elements.
strong, b { font-weight: normal; }
Please make sure to purge the cache before testing.
Best regards,
IsmaelHey Darren Dittrich,
Thank you for the inquiry.
And one more: is this v4.0 Enfold compatible with the latest WP 6.8.1 and PHP7.4?
The latest version of the theme is 7.1.1, so the version currently installed is a bit outdated. You may need to download the latest version from your ThemeForest account and update the theme manually via FTP.
— https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp
It would also be good if we could register a support account, and possibly have this purchase tranferred to (Email address hidden if logged out) since the person who bought this plugin is no longer associated with this site.
Unfortunately, we don’t handle any sales-related inquiries in the forum. You will need to forward this issue to the ThemeForest team.
Let us know if you need more info.
Best regards,
IsmaelHi,
Glad we could be of help! Feel free to reach out if you have more questions. Have a nice day.
Best regards,
IsmaelHey minhndq,
Thank you for the inquiry.
Unfortunately, the Table element doesn’t support cell merging out of the box, but you can try to manually create your own table using a Code or Text Block element.
Example:
<table> <tr> <td>Row 1, Col 1</td> <td>Row 1, Col 2</td> <td>Row 1, Col 3</td> </tr> <tr> <td colspan="2">Row 2, Col 1-2</td> <td>Row 2, Col 3</td> </tr> <tr> <td colspan="3">Row 3, Col 1-3</td> </tr> </table>
Let us know if you need more info.
Best regards,
Ismael -
AuthorPosts