Viewing 1 replies (of 1 total)
  • This may not be the best, but it seems to work. From the Theme Appearance Editor, you will need to edit the header.php.

    Find the line (Towards the bottom):
    <em><div id="nav" class="fix"><ul class="clearfix"></em>
    to
    <em>$frontpage_id = get_option('page_on_front');</em>
    Replace with

    <em><div id="nav" class="fix">
    <ul class="clearfix"</em>
    <?php if (is_page($home)){?>
    <li class="page_item "><a class="home" href="<?php echo get_settings('home'); ?>/"title="Home">Home</a></li>
    <?php } else { ?>
    <li class="current_page_item "><a class="home" href="<?php echo get_settings('home'); ?>/"title="Home">Home</a></li>
    <?php } <em>$frontpage_id = get_option('page_on_front');</em>

Viewing 1 replies (of 1 total)
  • The topic ‘The Home Button Does Not Display’ is closed to new replies.