Forum Replies Created

Viewing 30 posts - 301 through 330 (of 433 total)
  • Author
    Posts
  • Do you mean between elements up and down the page or left and right of the elements?

    I have found some random <br> tags have been added between elements of the page builder.

    take a look at https://www.thinkjarvis.co.uk and look between the icons as per screenshot below:

    https://www.thinkjarvis.co.uk/wp-content/uploads/2021/03/br-screenshot-1.jpg

    Is this what you mean?

    I’ve just seen that Yigit has posted a link to a temporary workaround on a couple of other posts however the link has expired (404). Looks like Enfold are aware of the problem if is the same problem I have?

    • This reply was modified 4 years ago by thinkjarvis. Reason: more info added
    in reply to: GTMetrics ? #1285809

    Deleted post

    • This reply was modified 4 years ago by thinkjarvis. Reason: Deleted for now
    in reply to: Cumulative Layout Shift too high #1285703

    @freediver2011
    I’ve just cracked this on my website. https://www.thinkjarvis.co.uk Full pass on Lighthouse in Chrome 93/100. (just depending on server response time).

    Right where to start. Please read the following very carefully.

    @Ismael
    – Please can you use this as a basis for a fix for @freediver2011
    The background element needs a fixed height on mobiles to reduce the CLS to an acceptable level.

    The min-height box for ALB elements is controlled by data classes – JS not CSS.
    The opacity layer, and all of the containers within the slideshow or ALB colour section therefore have no fixed height.
    The JS is applied after the CSS therefore causing a layout shift. So as a workaround you have to specify heights and widths of the elements that make up the box.

    The background images in colour sections and slider images, captions and everything else have no set height and width. They have min-height and min-width. Therefore they shift when it renders the page.

    Note – ALB sliders are currently more efficient than Background images – This is because it serves scaled images. You have to add some extra @media queries manually to optimise ALB colour section background images. Tutorial to follow when I get time.

    For my site the appropriate min-height for mobiles is 351px So I entered this into the box in the style section.

    I then added the following code.

    This workaround is for full width easy sliders as per my website. But can be adapted for background colour sections using the same logic. I will share a solution once I have applied it to another site on my server for testing

    Set a custom ID for the first element on the page.

    #tj-fade-remove

    Removes animations on mobiles (note there is some overlap in these bits. I need to refine it a bit more).
    This drastically improves LCP by 5 seconds and a pass mark in lighthouse.

    /* Removes animations on first element/ Slider on mobiles only */
    
    /* Removes animations on slider titles and caption */
    @media only screen and (max-width: 767px) {
    #tj-fade-remove .avia-caption-title, .avia-caption-content, .avia-slideshow-button {
    	-webkit-animation: 0s ease 0s normal none 1 running none !important;
    	animation: 0s ease 0s normal none 1 running none !important;
    	visibility: visible !important;
    }
    /* Removes animations on slider titles and caption */
    #tj-fade-remove .container {
        -webkit-transition: opacity 0s;
        transition: opacity 0s;
    }
    #tj-fade-remove .avia_transform .av_slideshow_full.avia-fade-slider .active-slide .avia-caption-title {
    	-webkit-animation: 0s ease 0s normal none 1 running none !important;
    	animation: 0s ease 0s normal none 1 running none !important;
    	visibility: visible !important;
            transform: none !important;
           -webkit-transition: opacity 0s;
           transition: opacity 0s;
    }
    /* Disables some JS use with caution this will remove buttons and the main header from slideshow captions */
    .js_active .avia-slideshow li:first-child {
      visibility: visible!important;
      transform: translateZ(0px) !important;
    -webkit-transition: none !important;
    }
    }

    Note – I removed the opacity settings and just applied opacity to the image directly. Therefore reducing render time.

    /* Applies fixed height for mobiles based on content */
    @media only screen and (max-width: 767px) {
    #tj-fade-remove {
    height:351px !important;
    }
    /* Applies fixed height and width to image based on enfold min values and offset */
    #tj-fade-remove img {
    height:351px !important;
    min-width: 762px;
    left: -201px;
    }
    }

    I hope this helps others. I have one last bit to add to my setup which is serving Google Analytics locally.
    I have actually disabled Jetpack Lazy Load and Photon as this seems to have improved the score rather than reducing it!

    • This reply was modified 4 years, 1 month ago by thinkjarvis. Reason: spelling error
    in reply to: Google Track Code Not loading? #1285331

    I’ve just seen its on the bug fix for 4.8. Will update and test.

    Thanks for providing a solution.

    in reply to: Google Track Code Not loading? #1285092

    I have found the reason why

    The new Google Tracking Tags do not contain a UA number. The Enfold Privacy and Cookie system does not recognise it as a Tracking code – Therefore it doesnt load it.

    Please can you forward this to the team. This requires an urgent fix. In the meantime. I will add a function that inserts the track code on all pages but this means the Privacy Modal Cookies on and off settings simply wont work.

    Please can you report this as a bug for urgent quick fix.

    The sites which I created towards the end of 2020 and into 2021 have all been affected.

    • This reply was modified 4 years, 1 month ago by thinkjarvis. Reason: More info added to private box
    in reply to: Cumulative Layout Shift too high #1284981

    Thinking about it and reading to documentation about CLS shift.

    If the text and newsletter sign up boxes are taller than the min-height set in the colour section background element then the box will re-size to suit as the elements load. This will cause a perceived layout shift.
    You can set a min-height for mobiles in the Colour Section Element. Try increasing it and see if that makes a difference.

    Otherwise:
    Try using @media queries to change the min-height of the Colour Section behind your header for different screen size. This may reduce the layout shift.

    You can also serve a different sized background image depending on the device using CSS. Serving a different sized image will improve the FCP score as a smaller image can be served to suit the screen size.

    Once the new version of Enfold arrives I’ll be experimenting and implementing a full solution to this across all of my customers sites. I use the background element ALOT in Enfold header sections.

    in reply to: Cumulative Layout Shift too high #1284979

    @Freediver2011
    Something doesnt look right with the first headline. Yes the consent bar is causing a shift for some reason however, the first colour section and heading are causing a greater shift. Perhaps start there.

    Try Reducing the font size and button size within the cookie consent bar. If it has no fixed height it re-sized dynamically based on the content? Therefore causing a small layout shift?

    The heading appears to be served with a post class. Not as a special heading?
    LASS MICH DIR HELFEN APNOETAUCHEN ZU LERNEN
    Wie Du in nur 3 Tagen satte 3 Minuten deine Luft anhalten kannst!

    If I am not mistaken – Perhaps try changing it to a special header element?
    Try changing the settings for the min-height of the Colour Section background element behind the heading as well.

    in reply to: Release for Enfold 4.8 / 5.0 #1284367

    Hi Rikard,

    No need to apologize Rikard. These things happen – I’d rather have a fully working version with as few bugs as possible than something that has known issues in it.

    Hope to see the new version soon.

    in reply to: Cumulative Layout Shift too high #1283921

    Thanks Ismael,
    I’ll do some more research on this once the new release of Enfold comes out.

    I need to check the documentation for Jetpack Lazy Load to see if it excludes above the fold content (I dont think it does) This could be the route cause of the CLS shift I am seeing.

    A quick google shows almost all lazy load plugins apply to all images regardless of position
    You have to add the skip-lazy css class to above the fold elements. Otherwise it applies to everything by default.
    So perhaps the above the fold needs this class adding on a case by case basis to avoid the layout shift.

    I’ll trial this when I do my next performance roll out. I’ve come up with a novel way to reduce the FCP score for sites with a ALB Color Section background image which I need to test.

    in reply to: Cumulative Layout Shift too high #1283116

    Hi Ismael,

    Thank you for this. I have also noticed a jump with Jetpack Lazy Load.

    The Real Question is:
    If a lazy load script like jetpack or WP Rocket is turned off – But enfold settings for lazy load are turned on (browser based lazy load).

    Does this still constitute a pass for this in Google Web Vitals? If the answer is YES, then I can disable the jetpack lazy load without impacting the performance score negatively.

    It may even improve web vitals as the JS script for lazy load wont be required anymore.

    I am currently waiting for the new release of Enfold to apply further optimisation/testing.

    in reply to: slow site #1279550

    If you are using WP Rocket, try this. Arno has come up with a full guide for WP Rocket setup with Enfold. There a couple of bits on here I would have done differently but you could always check your settings against this as a good benchmark

    https://www.arnoweterings.nl/optimal-wordpress-wp-rocket-settings-with-cloudflare-cdn-and-enfold-theme-which-got-us-100-98-on-gtmetrix-last-update-10-2020/

    in reply to: Enfold Feedback #1278727

    No problem, Enfold is my Go-To system.

    Out of the box it is extremely efficient compared to other WordPress builder platforms. Both in terms of working with it and speed and performance.

    Looking forward to the next release!

    in reply to: Enfold only works with old jquery version? #1276886

    Have you seen the list of features and fixes? A lot of work is going into the new release. Which is why it has taken a while.

    I’m really looking forward to giving it a test drive :)

    in reply to: Slider Making Page Jump #1276742

    Are all of the images different heights?

    If you have original size set then they may jump if they are different heights.
    They may also jump if you have lazy loading turned on for that element.
    They may also jump if you have not compressed them. Large images take time to load which may cause a visible jump.

    Try setting the image size in the settings for the element to a fixed size.

    in reply to: Enfold only works with old jquery version? #1275507

    Its on the list for the next release of Enfold.
    https://kriesi.at/support/topic/enfold-upcoming-fixes/

    I have also raised an issue in another post where all dropdown functions in Enfold widgets do not work – Same Jquery Migrate issue.

    Just use the workaround plugin for now. I have 9 sites that are affected. The other 25 are OK so it is only sites that rely on an alternative mobile menu in the settings.

    in reply to: Enfold WooCommerce dropdown widgets jquery migrate issue #1274981

    To clarify,

    This will affect woocommerce widgets including filter by attribute, category and tag and blog category/tag filters.

    You must select display as dropdown to see the problem.

    in reply to: Insert code into header from within enfold? #1273762

    Thanks Yigit.

    in reply to: Insert code into header from within enfold? #1273299

    Hi Ismael,

    Thank you for sharing the links.

    Little bit of an oversight my end I guess as it can be done using the default hooks.
    I will probably add something like this to functions.php
    https://www.webroomtech.com/add-code-to-header-and-footer-wordpress/

    Really useful document to understand what I want to do
    https://developer.mozilla.org/en-US/docs/Web/HTML/Preloading_content

    This will allow me to add pre-load to fonts removing the error in Google Lighthouse testing without another plugin.

    I only have one more issue to deal with and that is serving Google Analytics or Tag manager locally. This may have to be a plugin solution for simplicity.

    Feature request: add pre-load to fonts option in performance panel
    Please can you consider adding this as an option to turn on in the performance panel?

    Google requests that render blocking resources like this are pre-loaded to prevent CLS caused by font swapping and ensure that custom fonts like icon fonts are visible immediately.

    Essentially select the toggle for pre-load and the preload tag is added to google fonts, fontello and any user uploaded fonts in the header of the page.

    It would be nice to have this as an option in the performance panel in Enfold, otherwise – Another plugin is needed which seems unnecessary. Enfold offers a range of built in fonts so the theme is a better place to deal with the issue.

    • This reply was modified 4 years, 2 months ago by thinkjarvis.

    If you password protected private content then the page is still visible in google and on the sitemap, just that the page content is set to private with a password? Is this what you mean?

    If the page is not supposed to be live on the website at all. Set it to draft instead of private. This will remove it from the sitemap and make it so no one can publicly access it.

    I have assumed you are using a sitemap generator of some sorts.

    If you have the site registered with Google webmaster tools (Google Search Console) you could remove the page from the index manually using the removals tool. This would prevent the page showing in Google searches assuming google accepts the removal request.

    in reply to: Enfold Showcase #1272797

    Another one up
    Senturian Security Group Ltd are one of the UK’s leading corporate and event security companies in the UK. Established in 2006 and approved by the SIA they provide a range of manned security services including close protection (bodyguards), event stewards, door guards and reception / gate house operatives.

    Think Jarvis designed the new website and revised the company logo as part of an ongoing company re-brand and marketing project. The site is based on Enfold and uses a custom icon font rather than PNGs throughout the site. Each page is designed to be used as a landing page for each service and for future Pay Per Click campaigns.
    The icons on the home page use a modified 5 column layout set to 7 columns so that all of the service icons fit on one line. (Thanks support forum for assistance).

    You can see the site here:
    Senturian Security – Manned Security Contractor based in the UK

    The site scores 87/100 in Google Lighthouse with more performance features coming including font pre-load / pre-fetch. Further improvements to be made prior to May 2021. The customer has requested a live chat which will affect performance figures. So it may not be possible to achieve 90/100 with this feature enabled.

    in reply to: Cumulative Layout Shift too high #1272783

    Just experiment with it first.

    Try disabling WP Rocket Lazy load but enabling it in the performance settings in Enfold. Then turn on lazy load for each individual image and video element on a page and see if you still get a pass for lazy load.

    The built in Enfold lazy load is just a new tag that instructs modern browsers to delay loading images. The lazy load module in WP Rocket and others is normally js based and adds a script which also can lower the score in other areas.

    in reply to: Cumulative Layout Shift too high #1272777

    My guess is you have not excluded the above the fold images from the lazy load module. Anything you want the user to see straight away should not be lazy loaded. If it is lazy loading the main header image and placeholder then this will cause a flicker and CLS? Try that first it may just be causing everything else below to shift.

    This is something that I need to implement as well. A little trickier with Jetpack and Photon and could be the route cause of the CLS we are both experiencing. Not sure if WP Rocket allows you to exclude above the fold content?

    As long as the CLS is below the threshold set by Google for web metrics it doesn’t matter whether you have a zero figure or not.

    Do some experimenting and see what you come back with.

    in reply to: Cumulative Layout Shift too high #1272758

    No problem Ismael,

    I’ve got to do some testing with a few customers sites, to try and get them all above 90/100 in Lighthouse. Or at least get the three web vitals passing which is possible without hitting 90/100.

    In fact you can hit 99/100 and still fail web vitals on mobiles.

    Once I’ve done some more testing I’ll see if I can identify any other causes of CLS shift.

    in reply to: Cumulative Layout Shift too high #1271947

    Its not the fonts that are causing it.

    I did a scan of your home page this end. There are 3 elements on the page that are causing a shift.
    Elements that I’ve never seen cause a problem before.

    I’ll leave this with the support team. Create a backup of your entire home page and then remove some of the elements and rerun lighthouse. This may help you narrow down the cause.

    in reply to: Cumulative Layout Shift too high #1271932

    Following this post.

    The same occurs with any easy slider, slider or colour section if a min-height is specified.
    If you watch the page load, you can see that the min-height is applied after everything else. Meaning that any element loaded dynamically like this causes a massive CLS shift. The use of a fade in by default also causes CLS as well. Not sure if the team at Enfold have any solutions for either of these issues?

    If you set an easy slider to display without a min-height for smaller screens the CLS issue does not occur – Because the image does not dynamically re-size in the same way on page load.
    The scroll down arrow also affects CLS scores which I have started to remove where it causes problems.

    It’s something I need to investigate further as I have Jetpack CDN and Photon running. I’ve not tried disabling them yet to see if it resolves the problem as they influence the way images load.

    Regarding your initial issue with fonts. Text movement is normally caused by the use of Google fonts. I use SWAP in the performance settings which means the text is loaded with a standard system font and then it changes it to the custom font once it has loaded. Not ideal but efficient. Ideally you need to preload/prefetch fonts. and host them locally. Download your chosen fonts from google, upload them as custom fonts so they are served locally and then add a prefetch to them. You cannot add prefetch naively within Enfold without altering Enfold? Correct me if I am wrong!

    I am currently looking into licensing WP Rocket Enterprise edition as this can deal with some of the more challenging aspects of Web Vitals – Like serving Google analytics locally and adding prefetch/preload to fonts. I wouldnt want to pay $40 a year per site though – hence getting an enterprise license to cover all of my customers.

    in reply to: Enfold Showcase #1271830

    Launched today!

    The Honey Pot Company runs the Honey Pot Tea Rooms, Coffee Shop and Bakery located in Swadlincote and Burton On Trent UK. All 3 are popular with local residents for their home made cakes and giant american style doughnuts. The company was looking to replace a broken existing website and organize their web presence.
    Think Jarvis redrew their logo in Illustrator professionally and created versions for use throughout the business and saved the company £400 a year in unused online services which were accumulated over the life of the business.
    The site uses the Catalog feature within Enfold to display the menu in a similar way to the restaurant demo theme. This works extremely well for menus.
    During the current COVID outbreak the company opted to use phone and collect rather than click and collect due to the bespoke nature of cake orders and shorter opening times. So no E commerce features yet but Enfold provides a great platform which means they can be added easily if required.

    You can see the site here:
    The Honey Pot Tea Rooms, Coffee Shop and Bakery

    The existing website was held on a different domain which is still transferring and will be permanently forward to the new domain to prevent loss of traffic.

    The site performs well in Google lighthouse with a score of 90/100 for performance with more updates coming before May 2021. The site uses custom .htaccess settings, wp-optimize and jetpack. Lazy load is enabled in Enfold Performance settings.

    in reply to: Enfold Showcase #1271666

    Launched just before Christmas.
    Enfold based website for AMR Deliveries, a local / national courier service based in Swadlincote, UK.

    This site includes Trust Index Integration – which aggregates reviews from Trust Pilot, Google and Facebook into one feed – Without paying trust pilots extortionate widget prices. It also uses a combination of free optimisation plugins including WP-Optimize and Jetpack.

    To view it please click the link below:
    https://www.amrdeliveries.co.uk Local Courier Service UK

    Tested in Lighthouse scoring 77/100 with more improvements to follow before May 2021. This is due to the chat widget and use of Trust Index which slow the site slightly. Hard to avoid a performance dip when the feeds are live. Overall a strong performance for a site with external features.

    in reply to: Mobile menu not displaying #1270473

    Its not the theme version.
    WP 5.6 is the problem as it removes support for the older Jquery version. So its best to use this work around in the meantime.

    The team at Enfold need to investigate to find the bug. Not sure if the Enfold team are looking into this yet as it has not been added to the upcoming fixes thread.

    I have gone through all of my Enfold sites and it affects about 8 of them. The rest dont use an alternative mobile menu.

    I have replied to a couple of other threads raising the same issue. I am waiting an update from the Enfold team now to confirm it is on the bug fix list.

    I hope that your site is now running as expected :)

    in reply to: Mobile menu not displaying #1270469

    in wp-admin
    Click tools from the left hand menu
    click jquery migrate
    selected legacy from the dropdown
    untick the other tickboxes.
    Click save.

    in reply to: Mobile Navigation Problems #1270459

    Update –

    Using the Jquery Migrate Helper.

    Here is a log file from the migrate plugin

    There is a problem with the avia_meag_men.js compatibility with the latest 5.6 WP update.
    2021-01-05 17:07:22 jQuery.fn.attr(\’checked\’) might use property instead of attribute Theme: enfold/framework/js/avia_mega_menu.js /wp-admin/nav-menus.php

Viewing 30 posts - 301 through 330 (of 433 total)