WordPress website loads but is not displayed until page scrolled

I have built a WordPress website. It loads without problems until recently, but now I am facing a strange behaviour.

The website loads, but nothing is displayed until I scroll the page down, or change the browser's window size. Then the page immediately appears.

I am having this problem with Chrome browsers only (both normal and incognito modes).

Website: netsooq.com/cloudtender/

Topic google-chrome theme-development themes Wordpress performance

Category Web


Don't know why it does not work at your end. It works alright even with No-Script/Script-Safe enabled. What does the Chrome Developer Tools tell you? Can you list the plugins that you have enabled? Any JavaScript frameworks that you/your script may have included?


I have visited your site in several browsers, including Chrome, and everything is working fine. The sole fact that you only experience the problem only in chrome, already means that this question is about the browser, not about WordPress. So, it's off topic here.

Anyway, Chrome is known to show this kind of behaviour under certain circumstances. Add-blockers may be the culprit. Rtl-languages seem to be vulnerable. There is no real fix that I know of, but one of the solutions that might do it, is to include a little piece of javascript that scrolls the site down 1 pixel, thus triggering the rendering mechanism that was failing:

$(document).ready(function(){
    $(window).load(function() {
        $( "body" ).animate({
            scrollTop: 1
        });
    });
});

If that doesn't work, StackOverflow is probably a better place to ask.

About

Geeks Mental is a community that publishes articles and tutorials about Web, Android, Data Science, new techniques and Linux security.