• In order to use elementor i added this code in the css editor.
    body.elementor-editor-active .smart-page-loader{
    display: none;
    }

Viewing 1 replies (of 1 total)
  • Yea, or JS way

    var isElementorEditor = document.querySelector(".elementor-editor-active");
    if(isElementorEditor != null){
      document.querySelector(".smart-page-loader").style.display="none";
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Elementor’ is closed to new replies.