Forum Replies Created
-
AuthorPosts
-
Hey envis,
Thank you for the inquiry.
Have you tried placing the shortcode inside a Text Block? You should be able to translate the content of the Text Block element in the WPML Translation Editor. If this doesn’t work, please provide the login details in the private field. For additional assistance, please contact the WP Booking System plugin developers.
Best regards,
IsmaelHi,
Thank you for the update.
Instead of placing the search widget inside a Color Section, try inserting it directly into the header using a widget or widget area. Please refer to this documentation for more info.
— https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area
This is the html of the search element, which can be placed inside a Text widget: https://pastebin.com/K8x7qu9g
Best regards,
IsmaelApril 2, 2025 at 5:31 am in reply to: Show ACF fields in Blog Post simple list instead of Author and Date #1480610Hi,
You need to place the loop-index.php file inside the “includes” folder. Follow the folder structure: child theme > includes > loop-index.php. Let us know the result.
Best regards,
IsmaelHey Loveronika,
Thank you for the inquiry.
We were not able to check the site because it has an invalid SSL certificate. Please ask your hosting provider to renew the certificate or register a new one.
Best regards,
IsmaelApril 2, 2025 at 5:10 am in reply to: lost ability to add or edit link in team member element #1480608Hi,
Thank you for the update.
It’s not possible to directly apply a link to the Team Member element, but you can use the Content > Add/Edit Social Service or Icon Links settings to add icons or buttons that link to different URLs.
Best regards,
IsmaelHi,
Unfortunately, we’re not sure why the sender form is removed after toggling the popup. Please contact the script or plugin authors for additional assistance.
Best regards,
IsmaelHi,
We’re from all over the world — Austria, Philippines, Turkey, United States and Sweden. Let us know once it’s ready.
Best regards,
IsmaelApril 1, 2025 at 5:30 am in reply to: WooCommerce hover over image changes to first gallery image #1480555Hi,
This modification is intended only for the Enfold theme — it will not work with other themes.
Best regards,
IsmaelHi,
We removed the screenshot. Have you tried clicking “Purge All” in the LiteSpeed Cache plugin?
Best regards,
IsmaelApril 1, 2025 at 5:23 am in reply to: Show ACF fields in Blog Post simple list instead of Author and Date #1480553Hi,
Thank you for the update.
We may need to inspect the page and access the dashboard to properly check the modification. Please provide the site URL and login details in the private field.
Best regards,
IsmaelHi,
Great! Glad to know that this has been resolved. Let us know if you have more questions. Have a nice day.
Best regards,
IsmaelHi,
Glad to know you managed to make this work! Unfortunately, there is no list of scripts or functions like this, but you can always ask in the forum if you need anything. Have a nice day.
Best regards,
IsmaelHey Munford,
Thank you for the inquiry.
You can try the following modification — simply replace the lines above with this code.
if (is_page([1147, 945])) { $preloader = avia_get_option('preloader') === "preloader" ? 'av-preloader-active av-preloader-enabled' : 'av-preloader-disabled'; }
Let us know the result.
Best regards,
IsmaelHi,
Could you provide a screenshot of the issue? We tried logging into the site, but the account details above are incorrect. Please provide another login account so we can check the live site.
Best regards,
IsmaelHey finchkelsey,
Thank you for the inquiry.
We may need to inspect the site and inspect the elements. Please post the site URL in the private field and provide a screenshot using platforms like Savvyify, Imgur or Dropbox.
Best regards,
IsmaelHi,
Thank you for the update.
The image size settings were not being applied because of the post_thumbnail_size filter in the functions.php file. We adjusted the condition a bit.
if( !is_singular('post') && is_page(1307) ) {
(removed screenshot)
Best regards,
IsmaelMarch 31, 2025 at 7:28 am in reply to: Show ACF fields in Blog Post simple list instead of Author and Date #1480506Hey Elena,
Thank you for the inquiry.
You can add this in the includes > loop-index.php file around line 471:
echo '<span class="post-meta-infos">';
Create a copy in your child theme, then do the modifications. You can also use the avf_post_metadata_array filter.
Example:
add_filter('avf_post_metadata_array', function($meta, $context) { global $post; if($context == 'loop-index') { $updated_date = get_the_modified_date('F j, Y', $post->ID); $meta['updated_date'] = '<span class="blog-updated-date minor-meta">Updated on: ' . $updated_date . '</span>'; } return $meta; }, 10, 2);
Best regards,
IsmaelHi,
I don’t understand why the size of the model image (enfold gym) is 1500 x 720 and the actual height of the page banner is 420…
Please note that the section size depends on the content, not the background image. We recommend uploading images at least the same size as the demo image, with a 16:9 aspect ratio. However, if you’re trying to focus on a specific part of the image, this will require a lot more adjustments. You may need to use css to adjust the background position and, as recommended, disable the parallax and fixed effects. We also noticed that the part you’re trying to focus on is not vertically or horizontally aligned in the actual image, so you may need to adjust this as well.
And regarding the image quality, the theme already sets this to highest quality possible (100 or 100%) but if you need to adjust it, you can add this filter in the functions.php file:
add_filter("avf_jpeg_quality", "avf_set_quality_mod", 9999, 1); add_filter("avf_wp_editor_set_quality", "avf_set_quality_mod", 9999, 1); function avf_set_quality_mod($quality) { $quality = 100; return $quality;}
Best regards,
IsmaelHi,
Thank you for the update.
We removed the screenshot. Try to include thi css code to remove the top padding on pages with transparent headers:
.html_header_top.html_header_sticky.html_header_transparency #top #wrap_all #main { padding-top: 0 !important; }
Make sure to place this below the first css rule suggested above, inside the css media query.
Best regards,
IsmaelHi,
Thank you for the inquiry.
You need to click the X icon in the top right corner of the tab section content. Please check the screenshot below.
If you need more assistance, please feel free to open another thread.
Best regards,
IsmaelHey AlpineWeb,
Thank you for the inquiry.
You can add the following css code to hide the play icon, but please note that this will affect all videos on the site:
.mejs-layer.mejs-overlay-play { display: none; }
Best regards,
IsmaelMarch 31, 2025 at 6:59 am in reply to: The thumbnails on the magazine element are different sizes #1480500Hey mosaic,
Thank you for the inquiry.
Try to add this filter in the functions.php file to adjust the default magazine thumbnail size:
function avf_magazine_defaults_mod( $defaults ) { $defaults['image_size']['small'] = 'portfolio'; return $defaults; } add_filter( 'avf_magazine_defaults', 'avf_magazine_defaults_mod' );
Best regards,
IsmaelHi,
Thank you for the inquiry.
You may need to remove the css rules that define specific dimension to the video on different screens sizes such as this:
.bheAnimation { background-color: #fff !important; width: 807px !important; height: 504px !important; }
Then, try to add this to make sure that the whole video is visible within the container:
#top .avia-video .mejs-container, #top .avia-video .mejs-container video { object-fit: contain; }
This might create black spaces around the video.
Best regards,
IsmaelHi,
Thank you for the inquiry.
The content slider is activated using the AviaSlider function. You’ll find this in the enfold/js/shortcodes.js file around line 205. You may need to use the same function to re-initialize the slider inside the lightbox container.
//content slider $( '.avia-content-slider-active', container ).aviaSlider({wrapElement: '.avia-content-slider-inner', slideElement: '.slide-entry-wrap', fullfade: true});
The AviaSlider function can be found in the enfold/config-templatebuilder/avia-shortcodes/slideshow/slideshow.js file.
Best regards,
IsmaelHi,
Thank you for the info.
The breadcrumb container is present but is being covered by the header. Try to add this css code to adjust the top padding of the main container.
@media only screen and (max-width: 768px) { /* Add your Mobile Styles here */ .html_header_top.html_header_sticky #top #wrap_all #main { padding-top: 65px !important; } }
(removed screenshot)
Best regards,
IsmaelHey my247restore,
Thank you for the inquiry.
The animations worked correctly when we checked the site. Please try to purge the cache before checking the page or switch to incognito mode. Let us know if the issue persists.
Best regards,
IsmaelHey fanlokbun,
Thank you for the inquiry.
We should be able to define a different color for the menu on a specific page using css. Please provide a link to the page where you need a different menu color so we can inspect it.
Best regards,
IsmaelHi!
Glad we could be of help! Let us know if you have more questions. Have a nice day.
Regards,
IsmaelHi,
Thank you for the update.
The site is still using an older version of the theme. It’s possible that the automatic update is no longer working as expected. You may need to download the latest version (7.0.1) from your ThemeForest account and update the theme manually via FTP. Please check the documentation below for more info.
— https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp
Best regards,
IsmaelMarch 28, 2025 at 6:48 am in reply to: Space between color section and column section on mobile #1480315Hi,
Try applying a Custom CSS Class name to the element where you need this applied, and replace the auto-generated class names .av-1v2pat2-53d1a210d34319a1e3263b9b4acfe09f .av-1tepg6e-5d320ae52f7edb1070659a131dbdac1d with it.
— https://kriesi.at/documentation/enfold/add-custom-css/#enable-custom-css-class-name-support
Best regards,
Ismael -
AuthorPosts