Forum Replies Created
-
AuthorPosts
-
Hi,
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,
IsmaelHey Eefke,
Thank you for the inquiry.
You may need to update the theme to the latest version, 4.8.1, to make it compatible with WP 5.7. And please toggle or temporarily disable the Enfold > Performance > File Compression settings after updating the theme.
Best regards,
IsmaelHi,
Glad to know that the initial issue is fixed.
random
are being added by the themeAre you using a text or code block? You might be hitting the return or enter key in your keyboard, creating a new line. If that is not the case, please create a test page so that we could check the issue properly.
And if you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.
Thanks!
Best regards,
IsmaelHi,
Looks like you have managed to remove the featured image in the news and the other section in the home page.
.home .avia-content-slider .wp-post-image { display: none!important; }Let us know if you need anything else.
Best regards,
IsmaelHi,
Are you also creating a new template? Please post the actual template file and the link where it should be applied so that we can properly check the issue.
You may also need to add this filter to enable execution of builder shortcodes externally.
// https://kriesi.at/support/topic/how-to-get-placeholder-to-correctly-output-shortcode/#post-1279016
Best regards,
IsmaelHi,
Thank you for the update.
The home page’s Layout > Header visibility and transparency settings should be set to the 5th option. Currently, it is set to the second or the Transparent Header option, which is why it is always transparent.
But you should still update the theme to the latest version, v4.8.1, as previously suggested.
Best regards,
IsmaelHey sue007,
Thank you for the inquiry.
We can use the following css code to set the opacity of the subtext on mobile view.
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ .logo .subtext { opacity: 0 !important; } }Best regards,
IsmaelHi,
Thank you for the update.
Did you follow the suggestion in the following thread?
To style the caption, change its color or size, you can use the following css.
.custom-caption { color: red; font-size: 12px; }Best regards,
IsmaelHi,
Thank you for the update.
There is an available filter called avf_contact_form_recaptcha_disabled_msg, which we can use to adjust the default error message when recaptcha is disabled.
Please add this code in the functions.php file.
add_filter("avf_contact_form_recaptcha_disabled_msg", function($msg) { $msg = "My custom error message."; return $msg; }, 10, 1);Adjust the text as you wish.
Best regards,
Ismael -
AuthorPosts
