Title: Loading Page Delay Request
Last modified: August 30, 2016

---

# Loading Page Delay Request

 *  Resolved [bmccloskey](https://wordpress.org/support/users/bmccloskey/)
 * (@bmccloskey)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/loading-page-delay-request/)
 * Hello, my client has a custom logo/icon that they want displayed on the loading
   screen of the home page. But they want the page to linger a little longer. I 
   know that’s counter productive to a fast site but they want it to delay a little.
   How can I do that.
 * ALSO I submitted a ticket on your website for the Pro version of this plugin.
   Waiting on a reply
 * [https://wordpress.org/plugins/loading-page/](https://wordpress.org/plugins/loading-page/)

Viewing 5 replies - 1 through 5 (of 5 total)

 *  Plugin Author [codepeople](https://wordpress.org/support/users/codepeople/)
 * (@codepeople)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/loading-page-delay-request/#post-6564916)
 * Hi,
 * Please, in this case, follows the steps below:
 * 1. Open the javascript file corresponding to the loading screen selected in your
   website, with the text editor your choice. The loading screens are stored in 
   the “/wp-content/plugins/loading-page/loading-screens” directory.
 * 2. Go to the snippet of code:
 * callback();
 * and modifies it as follows:
 * `setTimeout(function(){callback();}, 3000 );`
 * 3. Finally, clear the browser’s cache, after edit the online file.
 * Best regards.
 *  Thread Starter [bmccloskey](https://wordpress.org/support/users/bmccloskey/)
 * (@bmccloskey)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/loading-page-delay-request/#post-6564920)
 * Here’s a snapshot of the code … the delay isn’t happening
 * [https://www.dropbox.com/s/gp35fsykcaa2wuq/Screenshot%202015-09-19%20at%203.56.44%20PM.png?dl=0](https://www.dropbox.com/s/gp35fsykcaa2wuq/Screenshot%202015-09-19%20at%203.56.44%20PM.png?dl=0)
 * Website is [http://www.clienttestarea.info/randykunes/](http://www.clienttestarea.info/randykunes/)
 *  Plugin Author [codepeople](https://wordpress.org/support/users/codepeople/)
 * (@codepeople)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/loading-page-delay-request/#post-6564924)
 * Hi,
 * Please, modifies the “complete” function as follows:
 *     ```
       complete : function(callback){
       	var me = this;
       	setTimeout( function(){
       		callback();
       		me.attr['overlay'].fadeOut(500, function () {
       			me.attr['overlay'].remove();
       		});
       	}, 3000 );
       }
       ```
   
 * or you can increase the fadeOut interval:
 *     ```
       complete : function(callback){
       	callback();
       	var me = this;
       	this.attr['overlay'].fadeOut(5000, function () {
       		me.attr['overlay'].remove();
       	});
       }
       ```
   
 * Best regards.
 *  Thread Starter [bmccloskey](https://wordpress.org/support/users/bmccloskey/)
 * (@bmccloskey)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/loading-page-delay-request/#post-6564927)
 * Perfect! The first code didn’t work but the fade out will suffice!
 *  [fisherhu](https://wordpress.org/support/users/fisherhu/)
 * (@fisherhu)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/loading-page-delay-request/#post-9106300)
 * Hmm, thanks, exactly what I had in my mind 😀

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Loading Page Delay Request’ is closed to new replies.

 * ![](https://ps.w.org/loading-page/assets/icon-256x256.gif?rev=2316939)
 * [Loading Page with Loading Screen](https://wordpress.org/plugins/loading-page/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/loading-page/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/loading-page/)
 * [Active Topics](https://wordpress.org/support/plugin/loading-page/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/loading-page/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/loading-page/reviews/)

 * 5 replies
 * 3 participants
 * Last reply from: [fisherhu](https://wordpress.org/support/users/fisherhu/)
 * Last activity: [9 years, 1 month ago](https://wordpress.org/support/topic/loading-page-delay-request/#post-9106300)
 * Status: resolved