moacyrsalim
Forum Replies Created
-
Forum: Plugins
In reply to: [LiteSpeed Cache] Issue with Immediate Loading of content on Page LoadWhat is the best options in LS Cache to speed and performance? And 1st decrease ttfb
Forum: Plugins
In reply to: [LiteSpeed Cache] Issue with Immediate Loading of content on Page LoadI download my old config again and do this?
Forum: Plugins
In reply to: [LiteSpeed Cache] Issue with Immediate Loading of content on Page LoadOld one RDUGLFHL (Slower site but a lot more performance)
New One ESGNSCYI (Faster site but too much computing resources consuming)
And the main problem was loading things AFTER interaction. If i can get performance and load, is perfect
Forum: Plugins
In reply to: [LiteSpeed Cache] Issue with Immediate Loading of content on Page LoadSent. Thanks for the help!
Forum: Plugins
In reply to: [LiteSpeed Cache] Issue with Immediate Loading of content on Page LoadIll load the previous version in my old website that is hosted in subdomain 2024.
Then you can compare
- This reply was modified 2 weeks, 5 days ago by moacyrsalim.
Forum: Plugins
In reply to: [LiteSpeed Cache] Issue with Immediate Loading of content on Page LoadJust Send it.
I just want to restore the previous performance without losing loading speed or any page content when the site opens.
Kinda of a mix of two configs. This one my pagespeed score drops from 90 to 30.
Another one loads the header/first contents of the page only by interaction (Click or scroll), and TTFB is too slow
- This reply was modified 2 weeks, 5 days ago by moacyrsalim.
- This reply was modified 2 weeks, 5 days ago by moacyrsalim.
Forum: Plugins
In reply to: [LiteSpeed Cache] Issue with Immediate Loading of content on Page Loadcould me help to navigate through that? I Just found a way to create a link for support login
Forum: Plugins
In reply to: [LiteSpeed Cache] Issue with Immediate Loading of content on Page Loadcan o privately send credenciais? I think this ticket is public. I pay litespeed monthly with whm.
Forum: Plugins
In reply to: [LiteSpeed Cache] Issue with Immediate Loading of content on Page LoadI want to recover performance without get this issue again. Ill send you two configs and ID
Forum: Plugins
In reply to: [LiteSpeed Cache] Issue with Immediate Loading of content on Page LoadCould you take a look in my two configs and find what was wrong? Now i’ve lost a lot in pagespeed score, but apparently gained in speed.
Forum: Plugins
In reply to: [LiteSpeed Cache] Issue with Immediate Loading of content on Page LoadSolved importing my previous LiteSpeed configs of other server.
Forum: Plugins
In reply to: [LiteSpeed Cache] Issue with Immediate Loading of content on Page LoadFind this code in my HTML, i dont know if has something with it, but i couldnt incapacitate it.
const lazyloadRunObserver = () => {
const lazyloadBackgrounds = document.querySelectorAll(.e-con.e-parent:not(.e-lazyloaded)
);
const lazyloadBackgroundObserver = new IntersectionObserver( ( entries ) => {
entries.forEach( ( entry ) => {
if ( entry.isIntersecting ) {
let lazyloadBackground = entry.target;
if( lazyloadBackground ) {
lazyloadBackground.classList.add( 'e-lazyloaded' );
}
lazyloadBackgroundObserver.unobserve( entry.target );
}
});
}, { rootMargin: '200px 0px 200px 0px' } );
lazyloadBackgrounds.forEach( ( lazyloadBackground ) => {
lazyloadBackgroundObserver.observe( lazyloadBackground );
} );
};
const events = [
'DOMContentLoaded',
'elementor/lazyload/observe',
];
events.forEach( ( event ) => {
document.addEventListener( event, lazyloadRunObserver );
} );