Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

자세히 살펴보기

My Website Won't Load

more options

My website ozpt.com does not load on FireFox. It works on CHROME, SAFARI, ANDROID, EDGE etc. But when i try to open in FireFox I get the spinning wheel and it won't load. Sometimes if i refresh, it will load the one page, then when i click on anther link, it won't load that new page, and back to spinning wheel.

I don't understand why I'm working on all other browsers, but not on FF?

My website ozpt.com does not load on FireFox. It works on CHROME, SAFARI, ANDROID, EDGE etc. But when i try to open in FireFox I get the spinning wheel and it won't load. Sometimes if i refresh, it will load the one page, then when i click on anther link, it won't load that new page, and back to spinning wheel. I don't understand why I'm working on all other browsers, but not on FF?
첨부된 스크린샷

모든 댓글 (2)

more options

Not work for me using Firefox v54. I did a web search: https://www.bing.com/search?q=ozpt.com

Some of the links work. https://ozpt.com/maitland-overview/ https://ozpt.com/course-descriptions/course-schedule/

Some don't.

more options

Your theme shows the flipping hourglass overlay in front of the page until it detects that loading has completed, and then it removes it. You can see the code in this file:

https://ozpt.com/wp-content/themes/enlighten-pro/js/custom.js?ver=5.6.1

jQuery(document).ready (function($){
   
    //Web Pre Loader
    var preloader = $('.preloader');
    $(window).load(function(){
    	preloader.remove();
    });

But apparently this code does not run every time you display the page, probably related to caching, similar to the problem with another theme recently: https://support.mozilla.org/questions/1320526

Could I suggest you just get rid of this kind-of-useless feature? You can prevent the preloader from displaying using some custom CSS:

body > div.preloader { display: none !important; }

You can add that using the "Additional CSS" option in the Theme Customizer. More info in this article (something that popped up in a web search):

https://wpengine.com/resources/customize-theme-css/

If you want to keep the hourglass, check with the theme author for whether they have a solution.