Forum Replies Created
-
AuthorPosts
-
April 5, 2021 at 11:12 am in reply to: Multilanguage second DSGVO checkbox-text for contactform #1292446
Hi,
Sorry for the delay. I forgot to include the $fields and $atts parameters in the new function. Please try the updated code above.
If it does not work, please post the FTP and WP details in the private field so that we could test the modification.
Best regards,
Ismael1April 5, 2021 at 5:37 am in reply to: Srcset (image-set CSS) for ALB Colour Section Background images #1292417Hey Thomas,
Thank you for the inquiry.
The image-set property would be a nice solution to this, but it is not yet fully supported by major browsers.
// https://developer.mozilla.org/en-US/docs/Web/CSS/image-set()
Using the Fullwidth Slider can be a solution if you are not planning to insert additional content inside the section, or if the intention is to just display a hero image.
So it looks like the better solution is to actually insert an image inside the section, adjust its position relative to the section container and stack order to make sure that it is behind the content. You might be able to test it using the avf_section_container_add filter, which can be used to insert additional content or element inside the section.
Best regards,
IsmaelHi,
Thank you for the inquiry.
Temporary solution is to do a page redirect after sending the message to prevent the user from soft refreshing the contact form or the page containing it after sending an initial email. You can toggle that option in the contact form’s Content > Frontend > What should happen once the form gets sent? settings. Or add a short note that they have to do a hard refresh to ensure that the succeeding emails are sent.
Best regards,
IsmaelApril 5, 2021 at 4:42 am in reply to: CLS (Content Layout Shift) Troubleshooting help please #1292409Hey Synthea79,
Thank you for the inquiry.
Looks like the site have not been fully optimized, yet. You will have to do basic optimization steps in order to improve site speed such as installing a cache plugin and utilizing the browser cache. Please check the following articles for more info about site or WordPress optimization.
// https://kriesi.at/archives/scoring-100-100-in-google-pagespeed-insights-gtmetrix-pagespeed-and-yslow
// https://gtmetrix.com/wordpress-optimization-guide.htmlBest regards,
IsmaelHi,
Thank you for the inquiry.
It seems to be working properly on our end using Chrome on Mac. Please check the screenshot below.
Is it fixed? Please try to purge the cache and do a hard refresh, then check the page again.
Best regards,
IsmaelApril 5, 2021 at 4:25 am in reply to: Gallery Thumbnail Layout Issue on Chromium-based browsers #1292405Hi,
Glad it helped. Please keep the css code in the Quick CSS field or in your child theme’s style.css file, temporarily.
Best regards,
IsmaelHey Asterios,
Thank you for the inquiry.
The upcoming event element can only display the latest event, but not recurring on repeated events. This is the same issue that was reported in the following thread.
// https://kriesi.at/support/topic/latest-event-not-showing-when-using-upcoming-events/#post-1244278
For the events countdown element, please upgrade the theme to version 4.8.1.
Related thread: https://kriesi.at/support/topic/events-calendar-12/#post-1280529
Best regards,
IsmaelApril 5, 2021 at 3:43 am in reply to: Animation does not appear in Safari until after element is passed #1292402Hey Vada,
Thank you for the inquiry.
The items in the card-container section only shows when we scroll past them, and it might have something to do with the hidden layer slider below the first. What happens when the other layer slider is removed?
Best regards,
IsmaelHi,
Thank you for the update.
The file is located in the enfold/config-templatebuilder/avia-shortcodes/postslider folder, look for the slide_navigation_arrows around line 996 as suggested by @Guenni007 above.
Best regards,
IsmaelHi,
Sorry for the delay. We are having a bit of difficulty navigating the site and understanding your request because of the site language. If you would like to modify the breadcrumb, you can either directly edit the function or use the avia_breadcrumbs_trail filter to adjust the existing trails or links.
Examples:
// https://kriesi.at/support/topic/doubled-breadcrumb-element-translation-issue/#post-1004401
// https://kriesi.at/support/topic/breadcrumbs-avia-breadcrumbs-error/#post-1254285
// https://kriesi.at/support/topic/modify-breadcrumbs-from-shop-to-store/#post-914699Best regards,
IsmaelHey marladesign,
Thank you for the update.
Instead of using the avia_custom_query_extension function, try to adjust the blog posts query directly using the avia_blog_post_query filter.
Example:
add_filter('avia_blog_post_query', 'avia_modify_post_grid_query_desc'); function avia_modify_post_grid_query_desc( $query ) { $query['orderby'] = 'date'; $query['order'] = 'DESC'; return $query; }
You will have to include the meta_value or the meta_value_num parameters, and define the meta_key accordingly.
// https://developer.wordpress.org/reference/classes/wp_query/#order-orderby-parameters
Best regards,
IsmaelHi,
Thank you for opening the thread. Please continue there.
// https://kriesi.at/support/topic/modal-pop-up-window-on-mobiles/#post-1292390
We will close this one for now.
Best regards,
IsmaelHi,
We provided another solution in the following thread.
// https://kriesi.at/support/topic/search-box-in-mobile-menu-2
Please add the snippet in the functions.php file and make sure to purge the cache.
Best regards,
IsmaelHi,
Thank you for the info.
The solution by @Guenni007 in the following thread might help. It inserts additional callbacks and applies the “no-scroll” class name to the open-popup-link element.
// function no_background_scroll_on_lightbox_open(){ ?> <script type="text/javascript"> (function($) { jQuery(window).load(function(){ jQuery('.open-popup-link').addClass('no-scroll'); jQuery('.open-popup-link').magnificPopup({ type:'inline', midClick: true, callbacks: { beforeOpen: function () { jQuery('body').css("overflow-y", "hidden"); }, close: function() { jQuery('body').css("overflow-y", "auto"); }, }, }); }); })(jQuery); </script> <?php } add_action('wp_footer', 'no_background_scroll_on_lightbox_open');
Thread: https://kriesi.at/support/topic/lightbox-17/page/2/
Best regards,
IsmaelApril 5, 2021 at 2:41 am in reply to: How to get a Vimeo video with poster image to open in same window or lightbox #1292389Hi,
Thank you for the update.
We cannot find the video link in the home page. Where did you add it? What is the current format of the video URL? Please try to follow the same URL pattern of the video samples listed in the Video element.
Best regards,
IsmaelHi,
We included this line in the filter.
unset($query['tax_query']);
And please note that this might not work as expected if there are recurring events.
Best regards,
IsmaelHey elfuego1340,
Thank you for the inquiry.
You could insert a widget area, containing a search field or widget, inside the header. Please check the following documentation for more info.
// https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area
Best regards,
IsmaelHi,
Thank you for the update. And welcome back!
We adjusted the above code a bit. Please try it again.
Best regards,
IsmaelHi,
Enfold, would it be possible to crop the 300×300 the same way as the 180×180
That is a default thumbnail called “medium”, and you can adjust its dimension in the Settings > Media library panel, but you will need a third party plugin to enable cropping. You can use the following plugin to set the crop parameter of the thumbnail to true.
// https://wordpress.org/plugins/simple-image-sizes/
Best regards,
IsmaelHey hooman80,
Thank you for the inquiry.
Did you add a custom script for this effect? You might be able to accomplish the same thing by setting the initial opacity of the header to 0, and only set it back to 1 when the class name header-bg-transparent-color is present.
#header { opacity: 0; } #header.header-bg-transparent-color { opacity: 1; }
The class name is automatically removed on scroll, hiding the header.
Best regards,
IsmaelHey hooman80,
Thank you for the inquiry.
The modification in the previous thread checks if the controls attribute is set and assign the value accordingly. The previous error that you posted above is actually not critical, and should not cause any performance issues or affect the media library.
Have you tried checking the site using another machine or on a different network? You may also need to deactivate the plugins temporarily, and see if the issue persists.
Best regards,
IsmaelHey John,
Thank you for the inquiry.
Where can we see the issue? The icon font library is loaded by the layer slider, so disabling the plugin should also disable that particular icon font. You can disable the slider in the Enfold > Layout Builder panel, or use this snippet in the functions.php file.
add_theme_support('deactivate_layerslider');
Docs: https://kriesi.at/documentation/enfold/advanced-layerslider/#deactivate-layerslider
Best regards,
IsmaelHi,
Thank you for the update.
The logo is not showing on all languages. Please try to reset the logo in the Enfold > Theme Options, then toggle or temporarily disable the Enfold > Performance > File Compression settings.
We also added this css in the Quick CSS field to specify the actual width of the logo image.
.logo img { width: 180px; height: auto; }
Best regards,
IsmaelHi,
Thank you for the inquiry.
Have you tried to disable the plugins temporarily? It is possible that it is a plugin conflict, or a cause by a custom modification in the theme. Did you edit any of the product or shortcode templates?
Please include the FTP details in the private field so that we could check the issue properly.We will let you know once we figure out the issue.
Best regards,
IsmaelHey Angelo,
Thank you for the inquiry.
You should be able to adjust the menu styling in the Enfold > Advanced Styling panel. Look for the Main Menu element, add it and configure the style as you wish.
Best regards,
IsmaelHey Nirmal,
Thank you for the inquiry.
For some reason, we cannot access the screenshots above, only seeing a meme saying that “lightshot is overcapacity”, and that we have to keep calm and try again ^_^. We did keep our calm and try a few times, but the screenshot is still not accessible. Would you mind using imgur or dropbox for the images?
To properly register the theme and get an access token, please review the following documentation.
// https://kriesi.at/documentation/enfold/theme-registration/#register-my-theme
Best regards,
IsmaelApril 2, 2021 at 8:41 am in reply to: Slider Probleme nach 5.6 und jetzt unter 5.7 – layout kaputt #1291973Hey Brixton4G63T,
Thank you for the inquiry.
We have checked the slider in the staging site, but we are not yet sure what is causing the issue. We do noticed that the layer slider container is rendered above the header, which is not supposed to happen. Would you mind installing the jQuery Migrate plugin temporarily? It might still be a jQuery issue.
Best regards,
IsmaelHey Hasse-,
Thank you for the inquiry.
The site above is not loading properly on our end, checked using Google Chrome MacOS. Is the site down? If it is a firewall setting, please allow the countries shown in this page.
Best regards,
IsmaelHey ATB_IO,
Thank you for the inquiry.
The site actually loads fine on our end., it is not slow at all. How do you actually check the site speed? And where in the debug mode did you confirm this? You may need to further optimize the site by doing the steps listed in the following articles.
// https://kriesi.at/archives/scoring-100-100-in-google-pagespeed-insights-gtmetrix-pagespeed-and-yslow
// https://gtmetrix.com/wordpress-optimization-guide.htmlBest regards,
Ismael -
AuthorPosts