Forum Replies Created

Viewing 30 posts - 13,681 through 13,710 (of 66,075 total)
  • Author
    Posts
  • Hi,

    Thank you for opening another thread. Glad to know that you were able to improve the site performance.

    As we have discussed in the previous thread, major contributors to the layout shift in the home page are the ads. They are dynamically created and inserted on page load, causing the elements below them to shift or adjust.

    Screenshots: https://imgur.com/iqhf8s4, https://imgur.com/vF3wdci

    I believe you have already fixed this by defining the height of the element where the ads are supposed to be added to.

    Best regards,
    Ismael

    in reply to: Horizontal Icons + Text #1297129

    Hey pipedream,

    Thank you for the inquiry.

    How would you like the icon list to display? Please provide a screenshot or a mockup using imgur or dropbox.

    You can use this css code to move the icon content container below the actual icon.

    .avia-icon-list .iconlist_content_wrap {
        overflow: unset;
    }
    

    And if you want to remove the dashed line, use this css code.

    .avia-icon-list .iconlist-timeline {
        display: none;
    }
    

    Best regards,
    Ismael

    in reply to: Enfold – Content Slider creating CLS issues #1297127

    Hi,

    Thank you for the update.

    Lazy loading actually increases layout shifts in the page, specially when the dimension (width and height) of the elements are not defined. To prevent layout shifts caused by the slider, you may need to define the height of its parent container, in this case the column element, to prevent the elements from shifting when the slider finally loads.

    You can add custom css to do that.

    // https://kriesi.at/documentation/enfold/add-custom-css/

    Best regards,
    Ismael

    in reply to: adjustments to the horizontal timeline (milestones) #1297125

    Hey fkm,

    Thank you for the inquiry

    How did you adjust the size of the icon? Did you use a custom css? You can insert additional css to adjust the position of the elements.

    Example:

    
    /* adjusts the horizontal date lines and dot */
    .avia-timeline-horizontal .av-milestone-date span {
        left: -63px;
    }
    
    /* adjusts the milestone content wrapper */
    .avia-timeline-horizontal.av-milestone-placement-top .av-milestone-content-wrap {
        left: -5px;
    }
    
    /* adjusts the milestone description container */
    .avia-timeline-horizontal .av-milestone-contentbox {
        position: relative;
        left: -20px;
        top: 20px;
    }
    

    Best regards,
    Ismael

    in reply to: change gallery width for mobile #1297123

    Hey mattb1169,

    Thank you for the inquiry.

    Are you using the Gallery element from the Advance Layout Builder? If yes, then you can use this css code to adjust the width of the gallery items on mobile view.

    @media only screen and (max-width: 767px) {
        #top #wrap_all .avia-gallery .avia-gallery-thumb a {
            width: 100%;
        }
    }
    

    Please note that the css above will affect every gallery in the site and if you want to only apply it to a specific gallery, apply a custom css class or ID to the element and use that instead of the generic gallery selector (.avia-gallery).

    // https://kriesi.at/documentation/enfold/add-custom-css/

    Best regards,
    Ismael

    in reply to: gallery thumbnail bug #1297121

    Hey rustleredv,

    Thank you for the inquiry.

    Looks like the gallery is using the original image instead of a thumbnail. To change that, edit the Gallery element, go to the Styling panel, then try to set the Gallery Preview Image Size to Portfolio(495×400) or any thumbnail with cropping enabled. When cropping is enabled, WP will crop and resize the image to the specified thumbnail dimension regardless of the original aspect ratio.

    Best regards,
    Ismael

    Hi,

    Thank you for the inquiry.

    The 3rd and 4th heading row is missing because for some reason, a new line is created before the closing single straight quote of the 3rd column’s content property.

    <style type="text/css">.avia-table-2 td:nth-of-type(0):before { content: 'Spezifikation'; } .avia-table-2 td:nth-of-type(1):before { content: 'SVTM1200CNC'; } .avia-table-2 td:nth-of-type(2):before { content: 'SVTM1600CNC'; } <strong>.avia-table-2 td:nth-of-type(3):before { content: 'SVTM2000CNC
    '; }</strong> .avia-table-2 td:nth-of-type(4):before { content: 'SVTM2500CNC'; } </style>
    

    The issue starts here..

    .avia-table-2 td:nth-of-type(3):before { content: 'SVTM2000CNC
    '; }
    

    To fix the issue temporarily, try to use this css code.

    @media only screen and (max-width: 767px) {
      .page-id-5788 .avia-table-2 td:nth-of-type(0):before {
        content: 'Spezifikation';
      }
    
      .page-id-5788 .avia-table-2 td:nth-of-type(1):before {
        content: 'SVTM1200CNC';
      }
    
      .page-id-5788 .avia-table-2 td:nth-of-type(2):before {
        content: 'SVTM1600CNC';
      }
    
      .page-id-5788 .avia-table-2 td:nth-of-type(3):before {
        content: 'SVTM2000CNC';
      }
    
      .page-id-5788 .avia-table-2 td:nth-of-type(4):before {
        content: 'SVTM2500CNC';
      }
    }
    

    Best regards,
    Ismael

    in reply to: 4.8.2 bug with beta #1297117

    Hey goldengate415,

    Thank you for the info.

    The lightbox srcset feature is still in beta mode as described in the options page, so issues should be expected. It adds the srcset attribute to the lightbox images so that the appropriate thumbnail size is used based on the size of the current screen. This improves performance because smaller images are loaded.

    Is there a development or staging version of the site? Please post the site or page URL containing the lightbox so that we could check the issue further.

    Best regards,
    Ismael

    in reply to: RankMath Issues #1297115

    Hey Eduardo,

    Thank you for the inquiry.

    Where can we see this issue? Did you modify the register-portfolio.php file? Please post the site URL in the private field so that we could check the issue properly.

    You could also disable the debug mode to temporarily hide those warnings. In the wp-config.php file look for the WP_DEBUG and WP_DEBUG_DISPLAY constants and set them to false.

    define("WP_DEBUG", false);
    define("WP_DEBUG_DISPLAY", false);
    

    Best regards,
    Ismael

    in reply to: Add language switch under the burger icon #1297114

    Hey Markus,

    Thank you for the inquiry.

    You can use one of the snippets that we provided in the following threads, and modify it a bit so that the language switcher is rendered beside the icon menu.

    // https://kriesi.at/support/topic/wpml-language-selector-in-main-menu/#post-314208
    // https://kriesi.at/support/topic/wpml-language-switcher-offers-languages-in-which-no-content-is-available/#post-1182955

    Best regards,
    Ismael

    Hey Bernd,

    Thank you for the inquiry.

    The previous handlers for the language switcher have been transferred to a different config file. Try to use this filter instead.

    
    //--------------------------------------------------------------
    // Remove Enfold Language Switcher
    //--------------------------------------------------------------
    function avia_remove_main_menu_flags(){
            remove_filter( 'wp_nav_menu_items', array( 'avia_WPML', 'handler_append_lang_flags' ), 9998, 2 );
    	remove_filter( 'avf_fallback_menu_items', array( 'avia_WPML', 'handler_append_lang_flags' ), 9998, 2 );
            remove_action( 'avia_meta_header', 'avia_wpml_language_switch', 10 );
            remove_action( 'ava_main_header_sidebar', 'avia_wpml_language_switch', 10 );
    }
    add_action('after_setup_theme','avia_remove_main_menu_flags');
    
    

    Or use this..

    function avia_append_lang_flags( $items, $args )
    	{
    		return $items;
    	}
    

    Best regards,
    Ismael

    in reply to: Timeline images animation #1297112

    Hi,

    Thank you for the info.

    The image in the milestone bullet is actually added as background and not as an actual image element, so it cannot have the overlay or the hover effect. But you can use css to create a different overlay effect.

    .milestone_icon .milestone_inner:before {
        opacity: 0;
        content: '>';
        display: table;
        text-align: center;
        vertical-align: middle;
        width: 100%;
        height: 100%;
        transition: all 1s;
    }
    
    .milestone_icon:hover .milestone_inner:before {
        background: rgba(255,255,255,0.5);
        opacity: 1;
    }
    

    Best regards,
    Ismael

    in reply to: Enfold with LearnDash #1297110

    Hi,

    Thank you for the update.

    You should be able to use the Advance Layout Builder (ALB) for products. There should be an ALB switch button just below the product title field. Are you not seeing that button?

    We logged in using the account above but we cannot access the dashboard. Please change the user role of the account to admin, or provide another account.

    Best regards,
    Ismael

    in reply to: Logo SrcSet? #1296974

    Hey Thomas,

    Thank you for the inquiry.

    Looks like the srcset option for the logo is not working properly because the dimension (width and height attributes) is defined in the markup. To make it work, please edit the enfold/framework/php/function-set-avia-frontend.php and around line 686, look for this code..

    $logo_img = "<img {$resp_attr} {$dimension} alt='{$alt}' title='{$title}' />";
    				$logo = "<{$headline_type} class='logo'><a href='{$link}'>{$logo_img}{$sub}</a></{$headline_type}>";
    

    .., then replace it with:

    	$logo_img = "<img {$resp_attr} alt='{$alt}' title='{$title}' />";
    				$logo_img = Av_Responsive_Images()->make_image_responsive( $logo_img, attachment_url_to_postid($logo), '' );
    				$logo = "<{$headline_type} class='logo'><a href='{$link}'>{$logo_img}{$sub}</a></{$headline_type}>";
    

    We will forward the issue to our channel.

    Best regards,
    Ismael

    in reply to: Future/coming events not working properly #1296964

    Hi,

    Glad we could be of help! Please feel free to open another thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    Hey PremiumFood,

    Thank you for the inquiry.

    The slider looks alright on our end — the slider images are displaying properly. Please check the screenshot below.

    // https://imgur.com/zmUZNBg

    How can we reproduce the issue?

    Best regards,
    Ismael

    in reply to: Transition Speed on Easy Slider #1296961

    Hey sitesme,

    Thank you for the inquiry.

    You will have to directly modify the enfold/config-templatebuilder/avia-shortcodes/slideshow/slideshow.js file and adjust the transitionSpeed option around line 42.

    //transition speed when switching slide
    		transitionSpeed:900,
    

    Or pass the options parameter in the js/shortcodes.js file, around line 180.

    $('.avia-slideshow:not(.av_fullscreen)', container).aviaSlider();
    

    Best regards,
    Ismael

    Hey sldeutsch,

    Thank you for the inquiry.

    If complex animations or moving contents are not required, you can easily add a hero image using a Color Section with background or a Fullwidth Easy Slider. Have you tried those elements yet?

    Best regards,
    Ismael

    in reply to: Adsense automatic ads #1296916

    Hey danielem78,

    Thank you for the inquiry.

    Looks like the ads are there but they are not rendering properly. We do not see any errors in the console, so it is a bit difficult to know what is actually causing the issue.

    Please try to disable the Autoptimize plugin temporarily, then purge the cache. Loading the script files separately might help.

    Best regards,
    Ismael

    in reply to: Leaflet Marker Popup not working #1296915

    Hey SNiestroj,

    Thank you for the inquiry.

    Looks like this is a known issue on version 1.7.1 as discussed in the following thread.

    // https://github.com/Leaflet/Leaflet/issues/7255

    To fix the issue temporarily, please use this filter in the functions.php file.

    add_filter("avf_leaflet_maps_params", function($params) {
    	 $params[] = 'tap="false"';
    	 return $params;
     }, 10, 1);
    

    We will forward the issue to our channel.

    Best regards,
    Ismael

    in reply to: Image caption customization #1296911

    Hey Matjaz,

    Thank you for the inquiry.

    Looks like you managed to do it using a caption overlay. You can remove the default title by editing the text block below the image element.

    
    <h6>“Minutes from the capital”</h6>
    

    You can also use css to adjust the position of the caption.

    .av-image-caption-overlay-center {
        vertical-align: bottom;
        text-align: left;
    }
    

    Or change it directly in the caption settings.

    Best regards,
    Ismael

    in reply to: Plugin conflict removes kitchen sink from wysiwyg #1296899

    Hi,

    Thank you for the info.

    file needs to be added anywhere specific in the Child theme?”

    The changes that we mentioned above should be done directly in the parent theme folder. The core files cannot be overridden directly in the child theme.

    Please post the FTP details in the private field so that we could test the changes.

    Best regards,
    Ismael

    in reply to: How to Stop Block Editor from Loading #1296898

    Hi,

    Doing fine. Thanks for asking. How are you? :)

    a – This means that the option (Load only used elements) is not working as it should. Did you use a cache plugin and enable the minification settings in there?

    b – That is quite expected. As we mentioned above, the option (Load only used elements) will NOT work when the file compression settings are enabled, so for it work, files should be loaded separately.

    Please post the login details in the private field so that we could check the issue further.

    Best regards,
    Ismael

    in reply to: Fuzzy product thumbnails (product gallery) #1296896

    Hi,

    Thank you for the update.

    The size of the thumbnails used in the product gallery is 180x180px, and if you want to adjust it, try to use this filter in the functions.php file

    add_filter( 'woocommerce_gallery_thumbnail_size', function( $size ) {
        return 'medium';
    } );
    

    The medium thumbnail size can be adjusted it in the Settings > Media panel. Default size is 300x300px.

    Best regards,
    Ismael

    in reply to: Submenu links to tab sections #1296895

    Hi,

    The script is actually not running correctly because of a jQuery error, found in the browser console. Please remove the code blocks containing the script, then use this one instead.

    // custom script
    // scroll to active tab section
    function ava_custom_script_tab_section() {
    ?>
    <script type="text/javascript">
    (function($) {
    	function scrollToTab(s, e,) {
    		$(s).on(e, function(event) {
    			var anchor, loc, cur, hash, tab, parent, pos;
    
    			if( e == 'load' ) {
    				loc  = window.location.hash;
    				hash = loc;
    			} else {
    				loc = $(this).attr('href');
    				hash = loc.substring(loc.indexOf('#'));
    			}
    	
    			tab = $('.av-section-tab-title[href='+ hash +']');
    			parent = tab.parents('.av-tab-section-outer-container');
    			pos = parent.offset();
    
    			tab.trigger('click');
    			
    			if(hash) {
    				setTimeout( function() {
    					$(window).scrollTop( pos.top - 100 )
    				}, 1000 );
    			}
    		});
    	}
    
    	scrollToTab( '.menu-item a', 'click' );
    	scrollToTab( window, 'load' );
    })(jQuery);
    </script>
    <?php
    }
    add_action( 'wp_footer', 'ava_custom_script_tab_section', 9999 );
    

    Best regards,
    Ismael

    in reply to: Adding search bar to header #1296891

    Hi,

    It took us a while but we have found out that the top bar or the phone info container is blocking the input field. To fix that, we have to add a space in the top area of the main header and move the widget down a bit. Please add this css code.

    
    .html_header_top.html_bottom_nav_header #header_main {
        z-index: 3;
        padding-top: 15px;
    }
    
    #top .widget_product_search.widget {
        margin-top: 15px;
    }

    Please toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css code.

    Thank you for your patience.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    Can we access the site? We would like to test the changes above. Please provide the WordPress details in the private field and please make sure that the Appearance > Editor panel is accessible.

    Best regards,
    Ismael

    in reply to: Menu colour issue and logo issue #1296887

    Hi,

    No problem. For the mobile fly-out menu, try to use this css code.

    .html_av-overlay-side-classic #top #wrap_all .av-burger-overlay #av-burger-menu-ul li a {
        border-color: #000000;
    }
    
    .html_av-overlay-side #top #wrap_all .av-burger-overlay-scroll #av-burger-menu-ul a {
        color: #000000;
    }

    Please toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css, and make sure to purge the cache.

    Best regards,
    Ismael

    Hi,

    Can we access the site? We would like to check how the product categories are setup and inspect the theme options. Please post the login details in the private field.

    Best regards,
    Ismael

    in reply to: ALB does not work with User Role Editor #1296883

    Hi,

    Thank you for following up.

    Can we access the site? Please post the WordPress and FTP details in the private field, and disable the cache and minification plugins temporarily.

    Best regards,
    Ismael

Viewing 30 posts - 13,681 through 13,710 (of 66,075 total)