• Resolved Sh0Ly

    (@sh0ly)


    Hello, i found a little visual bug, when I’m using a page with Home Page template, the slider adds the shadow under menu

    The error can be fixed in header rewriting this function

    <?php if ( is_singular()) {?><div class=”center”><div class=”slide_shadow”></div></div><?php } ?>

    This should not put slide_shadow if the slider is activated in a single page, like main page template.

    I fixed with this:

    <?php if ( is_singular() && !is_page_template(‘page-home.php’)) {?><div class=”center”><div class=”slide_shadow”></div></div><?php } ?>

    and seems to look ok now.

  • The topic ‘Home Page template error’ is closed to new replies.