Disable Loading Screen

Disable Loading Screen

  1. Open WHMCS > templates > digit > header.tpl search for "<!-- Loading -->" , and remove the following code 
      <!-- Loading -->
      <div class="wdes-loading">
        <div class="wdes-loader wdes-loader-icon">
          <div class="line line1"></div>
          <div class="line line2"></div>
          <div class="line line3"></div>
        </div>
      </div>​
     
  2. Open WHMCS > templates > digit > wdes > js > plugins.tpl at the end of the file remove the following code 
      (function($) {
        'use strict';
        $(window).on('load', function() {
          $('.wdes-loading').fadeOut();
          $('html,body').css('overflow', 'auto');
        });
      })(jQuery);​
  3. Open WHMCS > templates > digit > CSS > wdes-custom.css and add the following code
    html,
    body {
      overflow: auto;
    }
  • 0 Users Found This Useful
Was this answer helpful?