Jump to content

Adlago

Clients
  • Joined

  • Last visited

  1. When analyzing the CSS framework, 3 important errors are reported: CSS rule @media (max-width: 767px) { :root { --i-box--pa-bl:var(--i-sp_2); --i-box--pa-in: var(--i-sp_2); --i-sticky-offset: calc(env(safe-area-inset-top) + var(--i-sticky-offset--small) + var(--i-sticky-offset--extra, 0px)); } } issue: Parse Error calc(env(safe-area-inset-top) + var(--i-sticky-offset--small) + var(--i-sticky-offset--extra, 0px)) 2. CSS rule :root{--i-mobileFooter--he: calc(55px + env(safe-area-inset-bottom));} issue: Parse Error env(safe-area-inset-bottom)) 3. CSS issue :root { --i-range: clamp(0rem, (100vw - 30 * var(--i-rem)) / (70 - 30), var(--i-rem));} Issue: The types are incompatible )) / (70 - 30), var(--i-rem)) It is possible that these errors create render delay LCP in the PSI test, i.e. in a slow 4G test mobile.
  2. Additional information: After copying the theme, a duplicate hook name is observed in the source code, for example: <!--CT: preload_img--> <!--CT: preload_img--> This duplication occurs in all available themes in the installation - default ips, my default theme, and copied theme. When viewing a database, table core_theme_templates_custom shows a duplication of all hooks, which also determines the behavior of each theme. This is incorrect and creates a issue in my default theme if I decide to change the hook code in the copied theme. Please review this discrepancy. To restore normal functioning of my default theme, I deleted the duplicate entries in the database - and the copied theme of course. And everything is now working correctly. I.e. the copy theme function does not work correctly in version 5.
  3. After copying a theme created in 5.0, the link for loading a logo image is missing the width and height attributes.
  4.    Adlago reacted to a post in a topic: Invision Community 5.0.4 Releases
  5.    virap1 reacted to a post in a topic: google pagespeed fails
  6. There are too many issues in your article pages. See test with dev tool chrome browser
  7.    Adlago reacted to a post in a topic: google pagespeed fails
  8. Now I did 2 tests on your site - main domain and one article. Test for me no issue. See tests 1. domain 2. article
  9.    Marc reacted to a post in a topic: Payment methods - missing PayPal
  10. Yes, I received an invoice in the email and when I followed the link there was already this option. You can close this topic. Thanks.
  11. Hello, I'm trying to pay for a renewal for the next period, but I can't find the PayPal option. Is this unavailable or am I doing something wrong? thanks
  12. Yes, it is as you say. But using link rel preload font eliminates this issue. I see that in the head you are using link rel preload font, and that is why I suggest you use display swap. If you decide to use display block font, as it is now, then using link rel preload font is completely pointless and in a sense slows down rendering.
  13. To improve performance, it is a good idea to edit from font-display: block, to font-display: swap, for all font faces loaded from all.min css, just like you did in the css framework, for which only congratulations. Thanks