Forum Replies Created
-
AuthorPosts
-
Hi,
You’re welcome! Good to know you found a plugin that meets your requirements. If you have any more questions, feel free to open another thread.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for the update. With entypo-fontello disabled, you won’t be able to use the default icons on the page. You will need to replace them with images or SVG icons manually. Unfortunately, it’s not possible to automatically inject SVG icons as a replacement for the icon fonts.
Best regards,
IsmaelHi,
What do you mean by “child sites”? Please provide a screenshot using platforms like Savvyify, Imgur or Dropbox.
Best regards,
IsmaelHi,
As mentioned above, it’s not possible to disable the animation because it is required for the slides to switch properly. You may need to use a different slider from a third-party extension.
Best regards,
IsmaelHi,
You may have forgotten to include the password. Please post the info in the private field.
Have you tried using ?sort_tag=inbound?Make sure to update this line with the correct parameter name.
const tag = urlParams.get("tag");
Best regards,
IsmaelHi,
Yes, that could work, but you can’t set it to 0 because it will cause the transition to fail. Please try this css code:
#top .avia-content-slider, #top .avia-content-slider-inner, #top .avia-content-slider-inner .slide-entry-wrap { transition: opacity 0.0001s !important; }
Best regards,
IsmaelMay 14, 2025 at 7:40 am in reply to: Performance is slow when editing content elements with icon features. #1484209Hi,
What happens when you add this code in the functions.php file?
add_filter('avf_font_manager_load_font', function($icon_font) { return ''; }, 10, 1);
Please note that this will completely disable the default fontello icons.
Thank you for your patience.
Best regards,
IsmaelHi,
No, it’s not possible because the transition is what displays the next slide and hides the other slides in the slider — especially when you select the fade-in transition. Selecting sideward should minimize the effect.
Best regards,
IsmaelMay 14, 2025 at 7:33 am in reply to: One page restaurant demo: Transparent logo is the wrong size, main logo is the K #1484206Hey David,
Thank you for the inquiry.
Have you tried updating the logo with your own? You may also need to adjust the Header Size settings in the Enfold > Header > Header Layout tab. We’d be happy to check this once the site goes live.
Best regards,
IsmaelHey Madison,
Thank you for the inquiry.
We are not seeing the issue on our end. Would you mind providing a screenshot? You can use platforms like Savvyify, Imgur or Dropbox to upload and share the screenshot.
Best regards,
IsmaelHey M,
Thank you for the inquiry.
The overlay menu seems to be working correctly when we checked. Did you figure out the issue?
Best regards,
IsmaelHi,
If you can provide the login details, we’ll try to add the modification. Please post the details in the private field.
Best regards,
IsmaelHey Karol,
Thanks for reaching out.
Unfortunately, we do not offer phone or chat support, but you can find us on the support forum. Please register an account using your purchase code.
— https://kriesi.at/support/register/
Once registered, you can open new inquiries using the form below.
— https://kriesi.at/support/forum/enfold/#new-post
Let us know if you need more info.
Best regards,
AviaHey Jason,
Thank you for the inquiry.
Which field are you trying to select? This is not possible at the moment, but you can try modifying the blog posts query using the avia_post_slide_query filter.
Example:
add_filter( 'avia_post_slide_query', 'avf_custom_avia_post_slide_query', 10, 2 ); function avf_custom_avia_post_slide_query( $query, $params ) { $query['meta_query'] = [ [ 'key' => 'your_acf_field_key', 'value' => 'desired_value', 'compare' => '=', ] ]; $query['orderby'] = 'date'; $query['order'] = 'ASC'; return $query; }
Best regards,
IsmaelHey williamslyd,
Thank you for the inquiry.
It’s possible that this will require additional adjustments to the post templates. Unfortunately, we do not provide support for third-party plugins. You may need to contact the plugin author for additional assistance.
Best regards,
IsmaelHey Tina,
Thank you for the inquiry.
We tried logging in but the wp-admin and wp-login pages are inaccessible or have been disabled. Please reactivate the login pages or provide the custom login URL.
Best regards,
IsmaelHi,
Unfortunately, it’s not possible to completely disable the default animation of the content slider because it is required for transitions or slide switching.
Best regards,
IsmaelHey Helmut,
Thank you for the inquiry.
Those are the thumbnails registered by the theme. If you need to remove them, be sure to create a site backup, then use the remove_enfold_image_sizes function provided in this thread: https://kriesi.at/support/topic/prevent-auto-multi-image-generation/#post-1431800
Best regards,
IsmaelHi,
i put this instead and it seems to be OK:
We tested it on our end but it didn’t work. Try to add this script in the functions.php file instead:
add_action( 'wp_footer', 'av_custom_script_mod', 100 ); function av_custom_script_mod() { ?> <script> jQuery(document).ready(function($) { $(document).on('click', '.lightbox-added', function () { setTimeout(function() { if ($('body').hasClass('mfp-zoom-out-cur')) { $('html').css('overflow', 'hidden'); } }, 100); }); $('.lightbox-added').on('mfpClose', function () { $('html').css('overflow', ''); }); }); </script> <?php }
Best regards,
IsmaelHi,
FacetWP is one of the most advanced filtering and sorting plugins available for WordPress. If it doesn’t meet your requirements, there may not be better alternatives. However, you can try the plugins listed below.
— https://wordpress.org/plugins/filter-everything/
— https://wordpress.org/plugins/ymc-smart-filter/
— https://wordpress.org/plugins/search-filter/Best regards,
IsmaelHi,
The site is not using a child theme. We recommend activating the default child theme to preserve the modifications during theme updates. Please refer to the documentation below.
— https://kriesi.at/documentation/enfold/child-theme
Best regards,
IsmaelMay 14, 2025 at 6:27 am in reply to: Reopening ticket to closed thread re fixed backgrounds on ipad not displaying #1484192Hi,
Thank you for the inquiry.
Would you mind providing a screenshot? As mentioned in the previous thread, this is a known issue on iOS devices, so disabling the fixed background effect is recommended. Have you tried removing the selector “.avia_mobile”? You can also try setting the “background-size” property from “cover” to “contain”.
Best regards,
IsmaelHi,
Thank you for the update.
The suggested filter does allow the font to load, but since the path is incorrect, the font list won’t load, leading to a 404 error. Try to use this filter instead:
add_filter('avf_font_manager_load_font', function($icon_font) { return ''; }, 10, 1);
Best regards,
IsmaelHey goldengate415,
Thank you for the inquiry.
There are elements with this option, such as the Masonry element or pagination for Blog Posts, but it is not available for an entire page. For text elements, you can use the Fold/Unfold option but it may not have any significant effect on performance. If you have a fairly large homepage, consider moving some content to subpages and reduce the use of images. If you can provide the site URL, we’ll try to check the site further.
Best regards,
IsmaelHey Faatje79,
Thank you for the inquiry.
We may need to log in to the site to properly check the issue. Please provide the site URL and login details in the private field. Do you have version 7.1 of the theme?
Best regards,
IsmaelMay 14, 2025 at 6:00 am in reply to: Fixed and shrinked Header: Placement problems with logo and menu #1484187Hey slikslok,
Thank you for the inquiry.
You may need to use a smaller logo or limit the number of items in the main menu. To adjust the size of the logo, try to add this css code:
.logo img, .logo svg { max-width: 400px; top: 40px; }
You can also set the main menu to display as icon instead of text (Main Menu > General > Menu Items For Desktop).
Best regards,
IsmaelHi,
Thank you for the inquiry.
1.) You have to add heading (h1, h2) elements in the page in order for the TOC to display any content. If you’re using the Advance Layout Builder, try to use the Special Heading element.
2.) What do you mean by “sites of root-level and makes child-sites clickable”?
Best regards,
IsmaelHi,
Thank you for the update.
What happens when you replace the URL param with sort_tag or something else other than tag? We may need to access the site to properly test the modification. Please provide the login details in the private field.
Best regards,
IsmaelHi,
Great! Glad to know that you managed to fix the issue. Let us know if you have more questions. Have a nice day.
Best regards,
Ismael -
AuthorPosts