• Hi,

    I’ve just set up a website on theamzwebguy.com and have been 50+ WordPress websites before, but for some reason my website has suddenly stopped working and just displays the loading icon infinitely.

    Could it be something to do with the theme (Impreza) or visual composer? I’ve cleared my cache and checked for any updates.

    Thanks for any help in advance!

Viewing 1 replies (of 1 total)
  • This one jQuery compatibility issue.
    Now u can temporary fix using css.

    .l-preloader {
      display: none;
    }

    Check this jquery on your file this one not work for u.

    /**
     * UpSolution Widget: l-preloader
     */
    !function($){
    	"use strict";
    
    	if ($('.l-preloader').length) {
    		$('document').ready(function(){
    			setTimeout(function(){
    				$('.l-preloader').addClass('done');
    			}, 500);
    			setTimeout(function(){
    				$('.l-preloader').addClass('hidden');
    			}, 1000); // 500 ms after 'done' class is added
    		});
    	}
    }(jQuery);
Viewing 1 replies (of 1 total)
  • The topic ‘Help! Website just keeps loading!’ is closed to new replies.