Forum Replies Created

Viewing 30 posts - 271 through 300 (of 433 total)
  • Author
    Posts
  • in reply to: Logo SrcSet? #1303435

    In order to get this to work Unofficial workaround. Please backup the file before trying.

    Working example
    https://www.midlandcontrols.co.uk

    Set the logo in the theme panel to Full Size! Do not choose a thumbnail size!

    Delete this line 625 from function-set-frontend.php

    		if( $dimension === true ) 
    		{
    			/**
    			 * basically just for better page speed ranking :P
    			 * Be sure to return a valid attribute string.
    			 * Will be removed when image dimension is responsive
    			 * 
    			 * @since 4.8
    			 * @param string $dimensions
    			 * @return string
    			 */
    			$dimension = apply_filters( 'avf_logo_dimension', 'height="100" width="300"' );
    		}

    Delete the code below Line 684

    {
    				$resp_attr = Av_Responsive_Images()->html_attr_image_src( $logo, true );
    				
    				/**
    				 * https://kriesi.at/support/topic/logo-srcset/
    				 * 
    				 * Bug that WP removes scrset and sizes when width and/or height is defined
    				 * @since 4.8.3 
    				 */
    				if( false !== strpos( $resp_attr, 'srcset' ) || false !== strpos( $resp_attr, 'sizes' ) )
    				{
    					$dimension = '';
    				}
    			
    				$logo_img = "<img {$resp_attr} {$dimension} alt='{$alt}' title='{$title}' />";
    				$logo = "<{$headline_type} class='logo'><a href='{$link}'>{$logo_img}{$sub}</a></{$headline_type}>";
    			}

    Replace with:

    			{
    				$resp_attr = Av_Responsive_Images()->html_attr_image_src( $logo, true );
    			
    				$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}>";
    			}
    • This reply was modified 3 years, 10 months ago by thinkjarvis.
    in reply to: Fixing CLS errors #1303375

    @Ismael is right with his solution.
    Start from the top of the page and work downwards. CLS shift tends to only apply on above the fold because the rest of the page loads out of view.

    If you can remove the shift from the first element on all devices then the rest may no longer be an issue. As they are all ALB colour sections, if you know that it will dynamically resize, set no minimum height. If it has a background image set then you may still experience some shift. You will need to create a version of the code below for that element.

    The Layerslider needs an explicitly stated height to prevent shift. ALB background elements and Sliders also have this issue. You essentially need a few rules to match the design:

    Below is suitable for the layerslider. HOWEVER you may need to apply it to the colour section and the background image as well to prevent the shift. I tend to set a custom ID so that the rule only applies to this element. See how you get on with the below:

    /* Desktops 1080p */
    @media screen and (min-width:1441px) {
    .home #layer_slider_1 .ls-wp-container, .home #layer_slider_1 .ls-wp-container .ls-inner {
        height: 271px !important;
    }
    }
    
    /* Macbooks, 720p and ipad pros  */
    @media screen and (min-width:1025px) and (max-width:1440px) {
    .home #layer_slider_1 .ls-wp-container, .home #layer_slider_1 .ls-wp-container .ls-inner {
        height: 272px !important;
    }
    }
    
    /* Ipads landscape */
    @media screen and (min-width:769px) and (max-width:1024px) {
    .home #layer_slider_1 .ls-wp-container, .home #layer_slider_1 .ls-wp-container .ls-inner {
        height: 271px !important;
    }
    }
    
    /* Ipads portrait */
    @media screen and (min-width:451px) and (max-width:768px) {
    .home #layer_slider_1 .ls-wp-container, .home #layer_slider_1 .ls-wp-container .ls-inner {
        height: 271px !important;
    }
    }
    
    /* mobiles portrait */
    @media screen and (min-width:361px) and (max-width:450px) {
    .home #layer_slider_1 .ls-wp-container, .home #layer_slider_1 .ls-wp-container .ls-inner {
        height: 321px !important;
    }
    }
    
    /* Moto G4 portrait */
    @media screen and (max-width:360px) {
    .home #layer_slider_1 .ls-wp-container, .home #layer_slider_1 .ls-wp-container .ls-inner {
        height: 271px !important;
    }
    }
    • This reply was modified 3 years, 10 months ago by thinkjarvis.
    in reply to: Logo SrcSet? #1303368

    Thanks THP,

    @ismael
    – Let us know when you have taken a look.

    in reply to: Logo SrcSet? #1303082

    Hi Ismael,

    I just replaced the logo on the example I sent over with a 2000 pixel wide image, checked via ftp to make sure image sizes were generated and set it as the logo.

    It just serves the original Srcset does not apply.

    The workaround for 4.8.2 you provided me worked fine in 4.8.2. But the new code added for 4.8.3 does not work and now the code has changed the workaround does not work either.

    Let me know if you have a fix for this.

    in reply to: Logo SrcSet? #1302786

    Hi Ismael,

    Just updated to 4.8.3. Srcset logos still not included.

    Sorry to report bad news!

    I was going to reinstate the mod but some of the other code changes are preventing it working.
    Please advise.

    • This reply was modified 3 years, 10 months ago by thinkjarvis.
    in reply to: Absolutely bad speed values #1300681

    What kind of server are you using apache? or NGINX?

    Most NGINX servers prevent the built in script merge loading. I have experienced this with WPEngine hosted sites. They seem to ignore the script merge when it is enabled (even after the cache is cleared with the CDN disabled).

    Third party plugins like WP-Rocket will still work. However the server will likely be http2.0 meaning that script merging is not so crucial.

    Try using Google Chromes built in Lighthouse testing set to mobile with throttling turned on. It gives better ‘lab’ conditions and because it is browser based it can work on test servers.
    You can then cross reference it against GT Metrix, Page Speed Insights and WebPageTest.org

    in reply to: Logo SrcSet? #1297502

    Ive tested it. The code above works just fine.

    This problem appear to apply to all Enfold sites and will need addressing in the next release.

    in reply to: Logo SrcSet? #1296975

    Thanks Ismael,

    I am still updating my sites to 4.8.2 Not all are running it yet.

    https://www.midlandcontrols.co.uk/ is running the latest version and srcset does not work. If this helps?

    I’ll try the mod above and report back.

    @Ismael,
    I’ve got it thanks.
    It would still require some fiddling to display the right images in the right way so I’ll stick with the current method for now.
    They are both just as labor intensive.

    Thanks Ismael,
    You cant use Src Set with background image CSS though?

    Using Srcset:
    If srcset is used and background image is set to center or any of the other settings – The banner image will zoom in on the wrong spot in a majority of cases.

    Srcset with cropped thumbnails may solve the performance problem but it doesn’t meet the design intent or prevent CLS shift caused by content in the colour element being taller than the min-height. Sorry to add another issue I had not previously mentioned!

    If you set a minimum height for the ALB colour section OR the ALB color section becomes taller because the content doesnt fit on mobiles. You also get a CLS shift if you set a min-height and the content increases the size of the box beyond it. I have another set of rules I apply so that the height displayed matches the actual height of the image for typical screen sizes. So it is possible to solve the problem but requires bespoke optimisation depending on design intent.

    Within enfold this could be solved by adding the option to upload different background images for different screen sizes rather than just one image. A real nightmare for novice users who probably dont have photoshop experience. You also have to set a min-height that matches the actual height of the element otherwise you get a BIG CLS shift.

    If srcset is implemented I wont complain but the min-height CLS issue will still exist.

    I have a lot of new rules to put in place for this approach to work which I will implement anyway – a bit time consuming but it works extremely well.

    I am extremely confident that my modifications and setup will make any Enfold site pass web vitals. Before May1st I am making all of the Enfold sites on my servers pass web vitals.

    I am really impressed with how easily I have been able to get Enfold to pass (with some advanced technical knowledge). I am in the process of working on a similar solution for DIVI but this seems to be much harder.

    I am now one of the only developers in the UK who is offering sites that pass web vitals thanks to the quality of Enfold!

    I have a solution but here is the problem.
    In order to meet design intent I have set a minimum height of 350px for the image. This means it fills the screen on mobiles.

    It also means the background image does not scale uniformly so you have to upload a separate image for each screen size
    I have some labour intensive code sent privately below which serves a different background image in the correct size for a range of devices – Including the Moto G4 used in Lighthouse. There are 9 pages on the site all of which have their own version of the code in the private section.

    I’m just feeding this back in case there is anything you can add into core to achieve a similar function. As it stands without this level of optimisation background images knock about 15 points off lighthouse performance and lowers FCP.

    These images are specific to the situation. Which makes it hard to have a one size fits all approach.

    • This reply was modified 3 years, 11 months ago by thinkjarvis.
    in reply to: font weights used by Enfold? #1294354

    Thanks @guenni007
    I’ll be rolling this out to all of the sites on my server very soon – Along with a version of your image quality and optimisation settings from one of the other posts on the forum.

    The only element I have yet to create a solution for (I am working on this at the moment) is all ALB colour elements with background images. When used above the fold – Scores fall massively. I have a solution using media queries to implement but it will be on a case by case basis which will take time to implement.

    I have several sites passing web vitals already but generally speaking I have to remove the ALB colour sections with background images from above the fold to achieve this.

    Last things on my list are:
    Adding media queries to alb background images to serve different sizes depending on screen size.
    Adding Webp
    Adding a a CDN with Railgun – This should solve the webp issue as well.
    Loading a local copy of Google analytics – But making sure it still works with Enfolds Cookie control/privacy popup

    Then we have Enfold passing web vitals no matter how the site is configured.

    in reply to: font weights used by Enfold? #1294323

    Thanks Nikko,

    Exactly what I needed.

    For anyone else wondering the fonts on 14/04/2021 in the class-avia-type-fonts.php file are as below:

    GOOGLE FONTS AND WEIGHTS

    		$fonts = array(
    						'Advent Pro'		=> 'Advent Pro:100,400,600',
    						'Alice'				=> 'Alice',
    						'Allerta'			=> 'Allerta',
    						'Arvo'				=> 'Arvo',
    						'Arimo'				=> 'Arimo:400,700',
    						'Antic'				=> 'Antic',
    						'Audiowide'			=> 'Audiowide',
    						
    						'Bad Script'		=> 'Bad Script',
    						'Baumans'			=> 'Baumans',
    						'Bangers'			=> 'Bangers',
    						'Barlow'			=> 'Barlow:400,500,600,700',
    						'Bitter'			=> 'Bitter',
    	
    						'Cabin'				=> 'Cabin',
    						'Cardo'				=> 'Cardo',
    						'Carme'				=> 'Carme',
    						'Caveat'			=> 'Caveat:400,700',
    						'Coda'				=> 'Coda',
    						'Codystar'			=> 'Codystar:300,400',
    						'Cormorant Garamond'	=> 'Cormorant Garamond:300,400,700',
    						'Comfortaa'			=> 'Comfortaa:300,400,700',
    						'Coustard'			=> 'Coustard',
    						'Gruppo'			=> 'Gruppo',
    	
    						'Damion'			=> 'Damion',
    						'Dancing Script'	=> 'Dancing Script',
    						'Dosis'				=> 'Dosis:200,300,400,500,600,700,800',
    						'Droid Sans'		=> 'Droid Sans',
    						'Droid Serif'		=> 'Droid Serif',
    	
    						'EB Garamond'		=> 'EB Garamond',
    						'Exo'				=> 'Exo:900,700,400,100',
    						
    						'Finger Paint'		=> 'Finger Paint',
    						'Fira Sans'			=> 'Fira Sans:100,400,700',
    						'Fjord One'			=> 'Fjord One',
    						'Flamenco'			=> 'Flamenco:400,300',
    	
    						'Great Vibes'		=> 'Great Vibes',
    						
    						'Heebo'				=> 'Heebo:100,400,700',
    						'Herr Von Muellerhoff'	=> 'Herr Von Muellerhoff',
    						
    						'IBM Plex Serif'	=> 'IBM Plex Serif:300,400,700',
    						'Inconsolata'		=> 'Inconsolata',
    	
    						'Josefin Sans'		=> 'Josefin Sans',
    						'Josefin Slab'		=> 'Josefin Slab',
    	
    						'Kameron'			=> 'Kameron',
    						'Karla'				=> 'Karla:400,700',
    						'Kreon'				=> 'Kreon',
    	
    						'Lato'				=> 'Lato:300,400,700',
    						'Lobster'			=> 'Lobster',
    						'Lora'				=> 'Lora',
    						'League Script'		=> 'League Script',
    	
    						'Mate SC'			=> 'Mate SC',
    						'Marck Script'		=> 'Marck Script',
    						'Mako'				=> 'Mako',
    						'Megrim'			=> 'Megrim',
    						'Merienda'			=> 'Merienda:400,700',
    						'Merriweather'		=> 'Merriweather:300,400,700',
    						'Metrophobic'		=> 'Metrophobic',
    						'Molengo'			=> 'Molengo',
    						'Montserrat'		=> 'Montserrat',
    						'Muli'				=> 'Muli',
    	
    						'Nixie One'			=> 'Nixie One',
    						'Nobile'			=> 'Nobile',
    						'News Cycle'		=> 'News Cycle',
    	
    						'Open Sans'			=> 'Open Sans:400,600',
    						'Open Sans Condensed'	=> 'Open Sans Condensed:300,700',
    						'Orbitron'			=> 'Orbitron',
    						'Oregano'			=> 'Oregano',
    						'Oswald'			=> 'Oswald',
    	
    						'Pacifico'			=> 'Pacifico',
    						'Parisienne'		=> 'Parisienne',
    						'Petit Formal Script'	=> 'Petit Formal Script',
    						'Pinyon Script'		=> 'Pinyon Script',
    						'Playfair Display'	=> 'Playfair Display:400,700',
    						'Podkova'			=> 'Podkova',
    						'Poiret One'		=> 'Poiret One',
    						'Poly'				=> 'Poly',
    						'Press Start 2P (Retro Pixelfont)'	=> 'Press Start 2P',
    						'PT Sans'			=> 'PT Sans',
    	
    						'Quattrocento'		=> 'Quattrocento',
    						'Questrial'			=> 'Questrial',
    						'Quicksand'			=> 'Quicksand:400,600',
    	
    						'Raleway'			=> 'Raleway',
    						'Righteous'			=> 'Righteous',
    						'Roboto'			=> 'Roboto:100,400,700',
    						
    						'Sacramento'		=> 'Sacramento',
    						'Salsa'				=> 'Salsa',
    						'Signika Negative'	=> 'Signika Negative',
    						'Source Serif Pro'	=> 'Source Serif Pro:400,600,700',
    						'Sunshiney'			=> 'Sunshiney',
    						'Special Elite'		=> 'Special Elite',
    	
    	
    						'Tangerine'			=> 'Tangerine',
    						'Tenor Sans'		=> 'Tenor Sans',
    	
    						'Varela Round'		=> 'Varela Round',
    						
    						'Work Sans'			=> 'Work Sans:700,400,100',
    						
    						'Yellowtail'		=> 'Yellowtail',
    			);

    WEB SAFE FONTS – Do not require preload

    		$fonts = array(
    						'Arial'				=> 'Arial',
    						'Arial Black'		=> 'Arial-Black',
    						'Arial Narrow'		=> 'Arial-Narrow',
    						'Helvetica'			=> 'Helvetica',
    						'Helvetica Neue'	=> 'Helvetica-Neue,Helvetica',
    						'Lucida Sans'		=> 'Lucida-Sans,Lucida-Grande,Lucida-Sans-Unicode',
    						'Tahoma'			=> 'Tahoma',
    						'Trebuchet MS'		=> 'Trebuchet-MS',
    						'Verdana'			=> 'Verdana',
    			
    						'Georgia'			=> 'Georgia',
    						'Lucida Bright'		=> 'Lucida-Bright',
    						'Palatino'			=> 'Palatino',
    						'Times New Roman'	=> 'Times-New-Roman',
    			
    						'Courier New'		=> 'Courier-New',
    						'Lucida Sans Typewriter'	=> 'Lucida-Sans-Typewriter',
    			
    						'Copperplate'		=> 'Copperplate',
    						'Papyrus'			=> 'Papyrus',
    			
    						'Brush Script MT'	=> 'Brush-Script-MT'
    				);
    in reply to: font weights used by Enfold? #1294285

    Thanks Nikko,

    Is the logic below correct?

    Open Sans comes in several variations:
    https://fonts.google.com/specimen/Open+Sans

    Which does Enfold do?
    1 – Does Enfold therefore only load the Regular 400 version – And apply weight changes to the 400 version using CSS.
    2 – Or does it also pull through all other versions – And when the weight is changed in CSS it loads that version instead (bold, semi-bold, light, etc.)?

    That makes sense. Thanks @Ismael

    I’ll Post again once I have a working example. See notes below
    I Imagine that the code will include some cropped versions of the hero image. I.e. 1920×600 Then for mobiles it will be hard cropped to 350px high so it fills the above the fold area on most small devices. Reducing the physical size and file size to suit the device.

    I imaging I will also need to adjust the positioning, without checking I think it applies a pixel offset from the left hand side.

    Some of the sites on my system have a ALB Colour Section Background image above the fold on every page. So each will need a unique ID and a media query once I have the right formula.

    Assuming I will need the following image widths auto-generated and media queries for each screen size:
    450px (Mobiles portrait)
    768px (Most Mobiles landscape, Tablets portrait)
    1024px (Tablet landscape)
    1440px (720p laptops and Macbooks)
    1920px – Native – Standard 1080p HD monitors
    Potentially 2560px Native for retina but to be confirmed I never normally bother with this due to big increase in file size.
    In windows 4K always recommends a 150% to 300% zoom so you actually see things at 1080p in most situations.

    • This reply was modified 3 years, 12 months ago by thinkjarvis.
    in reply to: Enfold Showcase #1292460

    Project update.
    After successfully launching a new website for The Honeypot Tearooms in Rosliston, Swadlincote, UK – I was asked to add eCommerce functionality. You can now order fresh brownies delivered to your door straight from the Honeypot Bakery.

    You can see the site here:
    The Honeypot Tea Rooms, Order Brownies Online

    Web Vitals Pass 95/100
    The site passes Google Web Vitals when tested in Lighthouse 95/100 without a CDN or Lazy Load Module. I am looking into using Cloudflare with Railgun but testing is required yet. Browser Side Lazy Load is enabled in Enfolds performance settings instead.

    Image optimization has been applied along with Font Pre-Load since launch.

    A small amount of work left to do as always. But this is a good example of a pass mark without any kind of paid optimization plugin.

    Note that using page speed insights generates a slightly lower score. But nothing I am overly concerned about. This seems to be a common problem with Page speed insights.

    Your screenshots have not worked. Can you try again?

    Its a CSS 4 standard so not commonly used yet. You are right.

    Do you have an example of the avf_section_container_add filter in use?

    I’ll create a workaround and see how well it functions. I have several sites that use this feature. It might be better to just use an image and remove the padding/margins so it becomes full width, then alter the z-index. This will enable Srcset but will still require additional image sizes for mobiles.

    If not I think Media queries for the background image class will be easy enough to implement. I’ll need to introduce some new image sizes to fully optimise. Essentially a mobile width cropped image so it matches the current design. This will mean every background image requires a bespoke rule.

    Once I have a working solution I’ll share it here. Its on my to do list!

    You would need to modify the rules so it remains on mobiles and also alter its position. The search bar is set to appear in front of the main menu so you would need to alter the height of the main menu to do this on mobiles. If I get time I’ll create a solution, but will be a while!

    Take a look at https://www.simplyneedlecraft.com and https://www.thehealthworkshop.co.uk and https://www.dunrichsoftfurnishings.co.uk

    My preferred mobile solution:
    I normally just add it to the top of the mobile menu (In the theme settings set a different menu for mobiles, add link to search page).
    Follow the instructions here for a working example of search added to the mobile menu:
    https://kriesi.at/support/topic/how-to-add-the-search-function-to-mobile-menus/

    You can always add the mobile menu to the top of the actual shop page by adding an extra widget area (see the three shop examples above). The UX experience tends to be better if you can get someone to go to the shop page first so you know their intent.

    in reply to: Improving laoding of font Entypo-Fontello #1289837

    Looking at lighthouse. Its picking up the non CDN version of the font as the one to load instead of the CDN version. This is why you are still seeing the error. Not entirely sure how to fix that without looking in to it in detail.

    Try clearing your cache first and clearing the merged Stylesheets and JS cache as well.
    If your CDN provider allows it. Clear the CDN cache as well and let it re-build.

    As for not passing web vitals lowing the remaining figures could have something to do with your server setup or page layout. I cannot tell without checking the settings.

    I always recommend using the built in script merging function in Enfold. Rather than using a third party. I wonder if the issues are actually caused by third party plugins rather than Enfold itself?

    Sorry I cannot help further – But it appears to be an issue with the CDN and Enfold rather than a problem with Enfold itself.

    in reply to: Improving laoding of font Entypo-Fontello #1289824

    I’ve just implemented the following in functions.php to preload the font and prevent font swap.

    Add the following to functions.php to preload fontello

    add_action('wp_head', 'tj_preloadfonts');
    function tj_preloadfonts(){
    echo '<link rel="preload" as="font" href="https://yourdomainnamehere.co.uk/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.woff2" crossorigin>';
    }

    You can also upload your chosen Google font and preload it from local to remove the warning. Complete code below for a font I use on my website:

    add_action('wp_head', 'tj_preloadfonts');
    function tj_preloadfonts(){
    echo '<link rel="preload" as="font" href="https://yourdomainhere.co.uk/wp-content/uploads/avia_fonts/type_fonts/varela-round/varelaround-regular.ttf" crossorigin>
          <link rel="preload" as="font" href="https://yourdomainhere.co.uk/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.woff2" crossorigin>';
    }

    Don’t forget to change the domain to your own! If you are pre-loading Google fonts make sure you change/tweak it to the ones you are using!


    @mike
    – This seems to work on my company website https://www.thinkjarvis.co.uk – Although I have mostly focused on the home page so far.

    in reply to: Jquery Migrate issue still present in 4.8.1? #1289228

    I’ve had a look, I cannot see any changes of note. I have removed the files and it has resolved the problem.

    I had also edited the error 404 file which isnt really required.
    This will affect all of my enfold sites so I’ll go through and fix the child themes.

    in reply to: Jquery Migrate issue still present in 4.8.1? #1289209

    I think I’ve found it.
    Includes > helper-main-menu.php is in my child theme.

    99% sure this is it. But I still need to do some tests to check.
    In all honesty I cannot remember why I copied this into the child theme. So I need to do some digging!

    Cheers for the suggestion Yigit!

    Will comment again here if that doesn’t fix the problem.

    in reply to: Jquery Migrate issue still present in 4.8.1? #1289191

    Hi Yigit,

    I tried totally disabling all performance settings, caching plugins, CDN etc.
    I also manually emptied Dynamic_Avia to make sure that it wasnt caused in there.

    The code for alternative menu is there. But its just not displaying so I am wondering if something else is amiss in the settings.
    I am going to make a copy of the site on my test server so I can investigate. I cannot leave the customer without a website.

    If you dont mind I’ll send over some login details so you can see the issue if I cannot resolve it?

    in reply to: Enfold Showcase #1288753

    We’ve just completed another really smart Enfold WooCommerce store for a customer in the UK.

    The Health Workshop is a health food store and therapy centre based in Ashby De La Zouch, Leicestershire, UK. The shop stocks a wide range of products including high quality supplements, organic & free from food & drink, sports nutrition and natural home & beauty products. They also offer studio classes and holistic therapies in their own private rooms.

    The company has had a full rebrand so the website has been designed to closely match the original concepts created by their branding consultant.
    The header and menu have been modified for a mobile-first approach and a left hand slide out menu rather than right. The WooCommerce shop look has been separated into categories and products rather than both appearing in the same feed. A new widget area has been added to all shop categories allowing category and attribute filters to be visible on both desktop PCs and Mobiles.

    Enfolds default Basket page has been overwritten – So that it includes quantity selectors on mobiles in portrait mode.

    You can see the site here: The Health Workshop Ashby De La Zouch

    Web vitals pass
    The site scores 90+ in Chrome lighthouse testing. Equating to what should be a pass mark over the entire site. The site design lends itself well to speed and has no large banner images – helping keep the scores consistent throughout the site.

    A small amount of work left to do here for image size optimisation – See this post: https://kriesi.at/support/topic/media-upload-and-enfolds-thumbnail-sizes/#post-1271808

    in reply to: Cumulative Layout Shift too high #1287407

    Sorry I missunderstood your question.
    However – Run Lighthouse on your home page. The first element is causing a massive CLS on mobiles.

    Sorry I’ve possibly given you more work to do!

    in reply to: Cumulative Layout Shift too high #1287374

    @Rikard
    Correct me if I am wrong
    The layout shift is caused by the first Color section on the home page. He needs a solution similar to the one I have suggested to prevent the layout shift.

    Something is amiss in the settings for the first color section on the home page. I would suggest that the element either has no min-height or a min-height that is too small meaning that when the content within the color section loads in, it shifts the entire page downwards.

    Hoping others have noticed that they dont need to re-visit every page if they have not updated the design in 4.8!

    No problem this end. I delayed roll out until bugs were fixed :) So only just starting to apply it to other sites. :)

    @yigit
    The extra <br> tags are only added to pages that have been edited in version 4.8. If you have not opened and updated a page you shouldnt have to revisit it and update it again in 4.8.1
    This is the experience I had with my company website prior to updating other sites to the latest 4.8.1.

    Essentially I had the same element on two different pages. The one edited in 4.8 showed an extra <br> tag. The one that was not edited did not add the tag.

    I hope this helps.

    in reply to: GTMetrics ? #1285997

    I’ve noticed this as well! It used to be easier to score highly in GT Metrix but now it is harder than using other Google approved methods.

    I’ve found: Mobile Testing:

    Lighthouse – Gives higher scores than the others
    Page Speed Insights – Lower
    Web.vitals – Same test as page speed – Lower
    GT Metrix – Latest version – Lowest

Viewing 30 posts - 271 through 300 (of 433 total)