Forum Replies Created
-
AuthorPosts
-
December 10, 2021 at 10:16 am in reply to: Adding Gradient Overlay On Fullwidth Easy Slider #1332259
Hey Steve,
Thank you for the inquiry.
You may need to adjust the css code a bit. The modification is provided in the following link.
// https://kriesi.at/support/topic/adding-gradient-overlay-on-fullwidth-slider/#post-1330942
Please toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css code.
Best regards,
IsmaelHi,
Great! Glad to know that it is working. Please do not hesitate to open another thread if you need anything else. We will close this one for now
Have a nice day.
Best regards,
IsmaelDecember 10, 2021 at 10:11 am in reply to: How to disable menu delay on hover (main, sub and mega-menus) #1332254Hi,
No problem. Let us know if you need anything else.
Have a nice day.
Best regards,
IsmaelHi,
@bc-clients: Another user reported that the problem only occurs when image lazy loading is enabled. Did you install any plugin with a lazy loading option? Please try to disable the option temporarily, then check the page again. Make sure to purge the cache.
Best regards,
IsmaelHi,
Thank you for the update.
Looks like you already adjusted the widget position with this css code.
#top #header #header_main .widget { position: absolute; right: 100px; top: -20px; }Let us know if you need more help with this.
Best regards,
IsmaelHey navindesigns,
Thank you for the inquiry.
Try to use this css code to pull the main menu to the left by 10px and align with the logo.
#top #header .av-main-nav { margin-left: -10px; }Best regards,
IsmaelHi,
Thank you for the inquiry.
The slider relies on the jQuery script in order work properly, but since the scripts are lazy loaded using RocketLazyLoadScripts function, the slider images do not display. You may need to exclude jQuery from lazy loading and set it to load normally.
To disable the fade in effect for the first slider, add this css code.
.avia-slideshow li:first-child { opacity: 1 !important; }You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings, and purge the cache after adding the css code.
Best regards,
IsmaelHey adibranch,
Thank you for the inquiry.
There are a lot of images and galleries in the home page. Which specific element are you trying to adjust? Please provide a screenshot (on imgur or dropbox) of the section or image that you would like to adjust, including a mockup of the changes if possible.
Best regards,
IsmaelHey Vichardo,
Thank you for the inquiry.
Have you tried using the Fullwidth Slider element instead? Please note that the Fullscreen Slider element will inherit the height of the browser viewport. The images inside have to adapt to the slider size and may overflow if their aspect ratio is not the same as the device screen.
If you want to adjust the style of the slider on mobile view, try this css code.
@media only screen and (max-width: 767px) { .avia-fullscreen-slider .avia-slideshow>ul>li { background-size: contain !important; background-repeat: no-repeat; } .avia-builder-el-0.avia-fullscreen-slider .avia-slideshow { height: 270px !important; } }You can also set the size of the background images to inherit the actual size of the slider but they may get distorted a bit.
.avia-fullscreen-slider .avia-slideshow>ul>li { background-size: 100% 100% !important; }Best regards,
IsmaelHey JantienM,
Thank you for the inquiry.
You have to define the orderby and order parameters of the product_categories shortcode. Please check the shortcode documentation for more info.
// https://woocommerce.com/document/woocommerce-shortcodes/#h-available-product-category-attributes
Best regards,
IsmaelHey vbonora,
Thank you for the inquiry.
You can try using this script in the functions.php file to close the active tab section content after clicking on an active tab title.
// a custom script function ava_custom_function_script(){ ?> <script> (function($) { $(document).ready(function() { $(".av-tab-section-container .av-section-tab-title").on("click", function(e) { var clicked = $(this); var id = clicked.data("av-tab-section-title"); var container = clicked.parents(".av-tab-section-outer-container"); var tab = container.find(".av-layout-tab[data-av-tab-section-content='"+ id +"']"); var tab_inner = container.find(".av-layout-tab-inner"); if (tab_inner.css("height") != "0px") { setTimeout(function() { clicked.removeClass("av-active-tab-title"); container.find(".av-tab-section-inner-container").css("transform", "translate3d(0%, 0px, 0px)"); container.find(".av-active-tab-content").removeClass("av-active-tab-content"); $(tab_inner).css("height", "0px"); }, 300); } }); }); } )(jQuery); </script> <?php } add_action('wp_footer', 'ava_custom_function_script');Best regards,
IsmaelHi,
Sorry for the delay. We tried to access the site again but the login token above has expired. Please generate another login token with a longer expiry if possible. We will try to check the site again afterwards.
Best regards,
IsmaelHi,
We modified the css a bit to override the styles added by css hero.
@media only screen and (max-width: 767px) { #top .av-subnav-menu { margin: 0; max-height: 51px; overflow-y: hidden; overflow-x: scroll; display: flex; width: 100%; height: 51px !important; line-height: 51px !important; } html>#top>#wrap_all>#main>#sub_menu1>div>#av-custom-submenu-1>li { overflow: visible !important; display: block !important; float: left !important; padding-top: 0 !important; } }As you can see in the screenshot below, the submenu is now scrollable.
Unfortunately, site optimization is beyond the scope of support but one thing that we would recommend is to completely disable css hero because it adds redundant and unnecessary css codes in the site. If you check the css dashboard, there are now 10,000 css rules, which contains empty declarations and repeated css. For more info about site optimization, please check 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,
IsmaelHi,
Thank you for the update.
For the search page, try to use this filter in the functions.php file.
function avia_layout_filter_mod($layout, $post_id){ if(is_search()) { $layout['current'] = $layout["fullsize"]; $layout['current']['main'] = "fullsize"; } return $layout; } add_filter('avia_layout_filter', 'avia_layout_filter_mod', 10, 2);Best regards,
IsmaelHey 1-springer,
Thank you for the inquiry.
Videos added on sliders or color sections are disabled on mobile devices by default, which is why there is an option to add a fallback image. The video will be automatically replaced with the fallback image on smaller screens. If you really need to show the video on mobile view, try to use the layer slider element.
Best regards,
IsmaelHi,
Thank you for the info.
We can now see the map in the page but we are not yet sure why the map view option is not working. It is working properly fine on our installation using Enfold 4.8.7.2.
Please try update the theme from version 4.8.6.2 to the latest version, then toggle or temporarily disable the Enfold > Performance > File Compression settings afterwards.
Best regards,
IsmaelHi,
Thank you for the update.
Where can we see the issue? We may be able to apply a minimum height to the items or content container to display or to align them consistently. Please provide the page URL in the private field.
Best regards,
IsmaelDecember 9, 2021 at 7:55 am in reply to: How to disable menu delay on hover (main, sub and mega-menus) #1332073Hey Richard,
Thank you for the inquiry.
Did you modify the \js\avia-snippet-megamenu.js file? Mike provided the modification in the following link.
// https://kriesi.at/support/topic/how-to-disable-menu-delay-on-hover-and-on-unhover/#post-1278509
You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings afterwards.
Best regards,
IsmaelDecember 9, 2021 at 7:46 am in reply to: ALB shortcodes are stripped if element gets opened up in backend #1332071Hey!
Thank you for the info.
According to our developer, the cloning of the first subitem in the tab element is a default behavior or will happen when the Enfold > Custom Elements > Custom Elements For Subitems is set to the first option.
This is caused by Custom Elements For Subitems
If selected “All subitems use ….” it is a “default” behaviour, select one of the other options it works as usual.Did you add this code in the functions.php file to enable the advanced CET options?
add_theme_support( 'show_advanced_custom_element_options' );Regards,
IsmaelHey gisulsky,
Thank you for the inquiry.
What is the screen resolution of your monitor? The captions look fine on a 2560x1600px monitor. We added a screenshot in the private field. (see private field)
We noticed that you applied large padding on both sides of the content container, which reduces the size of the portfolio grid element and the items within it.
.container.av-section-cont-open { padding-left: 17%; padding-right: 17%; }Best regards,
IsmaelHey Chrilles,
Thank you for the inquiry.
Have you tried adjusting the Menu and Logo Position settings in the Enfold > Header > Header Layout panel? You can also use this css code to adjust maximum width of the containers in the main header.
.html_header_top #top #header_main .container { max-width: 1000px; }Best regards,
IsmaelHi,
Thank you for the update.
You can use the same css and adjust the background color to override the other one. Or disable the Performance > File Compression settings temporarily so that we can identify the location of the css.
Best regards,
IsmaelHi,
Thank you for the update.
The filter above should have trimmed the product description and limited it to 10 words. Have you tried applying a minimum height to the grid items? Please provide the page URL in the private field so that we can check the items and provide the necessary css adjustments.
Best regards,
IsmaelHi,
Thank you for the info.
Looks like you have modified the fullwidth submenu element quite a bit using the css hero plugin, which overrides the default theme styles. Can we remove the css hero styling for the submenu?
Best regards,
IsmaelHey landingnet,
Thank you for the inquiry.
What are the errors? Please provide the site URL in the private field. We may have to resolve that error first, then resave the theme options and disable the Performance > File Compression settings temporarily. Also, please make sure to update the theme regularly to avoid this type of issues in the future.
Best regards,
IsmaelDecember 8, 2021 at 3:09 am in reply to: WordPress Enfold theme and WPML plugin not full-width #1331907Hi,
Thank you for the inquiry.
We may need to inspect the site in order to check the issue properly. Please provide the site URL in the private field and include the login details if possible.
Best regards,
IsmaelHey Richard,
Thank you for the inquiry.
Have you tried setting the initial opacity of the search icon to zero? You can then bring it back to normal after moving it to the secondary menu.
Best regards,
IsmaelHi,
Yes, that should be possible. Try to add this filter in the functions.php file to replace the cart with a bag icon.
// adjust default icon font function avia_add_custom_icon($icons) { $icons['cart'] = array( 'font' =>'entypo-fontello', 'icon' => 'ue85a'); return $icons; } add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);You can also upload your own icon using the Enfold > Import/Export > Iconfont Manager.
// https://kriesi.at/documentation/enfold/icon/#adding-your-own-fontello-or-flaticon-icons-
Best regards,
IsmaelDecember 8, 2021 at 2:49 am in reply to: Upload-Button not working with "Real Estate Manager Pro" #1331903Hey Bernd,
Thank you for the inquiry.
You may need to set the Enfold > Performance > Self hosted videos and audio features (WP-Mediaelement scripts) settings to the third option to enable the WP Media Element script. Make sure to toggle the file compression settings as well afterwards.
Best regards,
IsmaelDecember 8, 2021 at 2:37 am in reply to: How to stretch a 1/1 layoutmodul to 100% wight on mobil device? #1331901Hey alliansohog,
Thank you for the inquiry.
You can use this css code to remove the background of the section on mobile view.
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ .avia-section.av-ugxhum-d283eee3c266c71d0bf0c9b930190a32 { background-color: transparent; } }And if you want to increase the width of the main container, insert this css.
.responsive #top #wrap_all .container { width: 95%; max-width: 95%; }Best regards,
Ismael -
AuthorPosts
