Viewing 1 replies (of 1 total)
  • Thread Starter germanero

    (@germanero)

    If somebody want to run this script only on homepage, you can try editing the plugin code:

    Find this:

    /* HTML Content */
    function dwl_preloader_markup(){
    ?>
    	<div id="loader-wrapper">
    		<div id="loader"></div>
    	</div>
    <?php
    }

    Replace for this:

    /* HTML Content */
    function dwl_preloader_markup(){
    if ( is_home() || is_front_page() ) {
    ?>
    	<div id="loader-wrapper">
    		<div id="loader"></div>
    	</div>
    <?php
    }}

    This is located on dwl-preloader/dwl_preloader.php

    • This reply was modified 8 years, 2 months ago by germanero.
Viewing 1 replies (of 1 total)
  • The topic ‘Nice plugin and very simple’ is closed to new replies.