Forum Replies Created
-
AuthorPosts
-
May 15, 2025 at 7:51 am in reply to: Performance is slow when editing content elements with icon features. #1484281
Hi,
Is it intended behavior that in the dropdown for the icon fields under “WordPress Media Library,”
Which dropdown? Looks like you’re using a third-party plugin Media Library Folders. Please contact the plugin authors for additional info about this.
Since we can’t reproduce the issue on our installations, we recommend reaching out to your hosting provider to inform them about the problem. It’s possible that the issue is related to server configurations.
Have you tried creating a clone of the site on a different host or platform?
Best regards,
IsmaelHi,
Have you tried switching to incognito mode or completely removing the browser history on your phone? Please provide the site URL in the private field so we can check it properly.
Best regards,
IsmaelHi,
Thank you for the update. We get this error when we try to validate the map.
main.js:154 Geocoding Service: This API project is not authorized to use this API. For more information on authentication and Google Maps JavaScript API services please see:
Please make sure that the Geocoding API is enabled in your Google Console. For more info, please check the links below:
— https://kriesi.at/documentation/enfold/google-map/#enable-services-for-google-api
— https://developers.google.com/maps/documentation/javascript/get-api-key?utm_source=devtools&utm_campaign=stableBest regards,
IsmaelHi,
We added the Katalogue element in the page and adjusted the css a bit. It will still require a few styling adjustments, and you have to add the rest of the items.
For additional help with customizations, you can contact Codeable.
— https://kriesi.at/contact/customization
Best regards,
IsmaelMay 15, 2025 at 6:59 am in reply to: Reopening ticket to closed thread re fixed backgrounds on ipad not displaying #1484276Hi,
Thank you for the screenshots.
Yes, you can try removing the selector “.avia_mobile” selector and set the background-size property to contain.
@media only screen and (max-width: 1366px) { /* Add your Mobile Styles here */ .avia-full-stretch, .avia-bg-style-fixed { background-attachment: scroll !important; background-size: contain !important; } }
We would like to check the site but it is currently inaccessible on our end. Do you have a staging version of the site without cloudflare?
Best regards,
IsmaelHi,
Thank you for the screenshot.
We can’t reproduce the issue on our end — see the screenshot below. Have you tried purging the cache or switching to incognito mode?
Best regards,
IsmaelHey slikslok,
Thank you for the inquiry.
You can set the display property to block, but the placement of the date would be incorrect. If you really need the date to display on mobile view, we recommend changing the Styling > General Styling > Milestone Placement to Left or Right, instead of Alternate.
Best regards,
IsmaelHi,
It’s possible to create custom builder elements or shortcodes in the child theme, but you’ll need to implement them on your own because this is beyond the scope of support. You can find more information in the documentation below:
— https://kriesi.at/documentation/enfold/intro-to-layout-builder/#add-elements-to-alb
You can use the enfold/config-templatebuilder/avia-shortcodes/blog element as a reference or starting point.
Best regards,
IsmaelHi,
Great! Let us know if you have more questions. Have a nice day.
Best regards,
IsmaelHi,
“Multi-author” is one of the available styles for the blog layout. It doesn’t actually mean “multiple authors”, if that’s what you were expecting. To integrate the plugin features into the template, you may need to modify the includes > loop-index.php file.
Best regards,
IsmaelHi,
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,
Ismael -
AuthorPosts