• ronabuelo

    (@ronabuelo)


    Hello,
    I love your plug in. I can get it to work with shortcode on every page except my home page.
    How can I get this done?
    I tried to do the changes in the post Not Initializing on Homepage Posts however it did not work.
    Thank you
    Ron

Viewing 1 replies (of 1 total)
  • Plugin Author Sayful Islam

    (@sayful)

    Hi,

    Read this topic.

    Not Initializing on Homepage Posts

    If you want to load scripts every page except homepage, you can use this code in your theme functions.php file.

    add_filter('carousel_slider_load_scripts', 'carousel_slider_load_scripts');
    function carousel_slider_load_scripts( $load_scripts ) {
    
    	if ( is_front_page() ){
    		return false;
    	}
    
    	return true;
    }
    • This reply was modified 7 years, 12 months ago by Sayful Islam.
Viewing 1 replies (of 1 total)
  • The topic ‘Will not load on homepage’ is closed to new replies.