Viewing 1 replies (of 1 total)
  • Hi,
    I have been playing with this and have ended up with doing this:
    In EvoLve settings (im not sure if this makes any difference but put it anyway):
    Select layout – blank
    No. of widget cols in header – 1
    Widget placement – Home page
    General styling:
    Enable bootstrap elements – on

    Open the file: header.php

    Find:
    if ((is_home() && $evl_header_widgets_placement == “home”) || (is_single() && $evl_header_widgets_placement == “single”) || (is_page() && $evl_header_widgets_placement == “page”) || ($evl_header_widgets_placement == “all”)) { ?>

    And replace with:
    //if ((is_home() && $evl_header_widgets_placement == “home”) || (is_single() && $evl_header_widgets_placement == “single”) || (is_page() && $evl_header_widgets_placement == “page”) || ($evl_header_widgets_placement == “all”)) {
    if (is_front_page() == “true”) {
    ?>

    This checks if the page being viewed is the front page, if so display the stuff below, if not it displays nothing.

    Hope it works for you too…

Viewing 1 replies (of 1 total)
  • The topic ‘Carousel On Main Page Only’ is closed to new replies.