• Resolved rhworship

    (@rhworship)


    I am using the Evening Shade theme. It automatically inserts a “Home” Button as the home page. Since I can’t edit that page I’ve created another Welcome screen to use as the static home page.

    Now I need to remove the Home button.

    How do I need to do this?

Viewing 5 replies - 1 through 5 (of 5 total)
  • Have you reviewed Creating_a_Static_Front_Page?

    You’re more likely to get support directly from the developer if you post your Theme-specific support topics in the specific Theme’s support forum.

    Your Theme has a hard-coded “Home” link in header.php.

    See here:

    <ul>
    	<li><a href="<?php echo get_option('home'); ?>/">Home</a></li>
    	<?php wp_list_pages('sort_column=menu_order&title_li=&exclude='); // change the exclude= ID number to the new home page ID ?>
    	</li>
    </ul>

    Remove this line:

    <li><a href="<?php echo get_option('home'); ?>/">Home</a></li>

    Thread Starter rhworship

    (@rhworship)

    Worked Great Chip. Thank you

    Now how do I remove the title of each page from the content portion of each page.

    For example on my Contact Us page the content portions starts with “Contact Us”.

    Glad to help!

    Now how do I remove the title of each page from the content portion of each page.

    For example on my Contact Us page the content portions starts with “Contact Us”.

    That’s a separate question, so you should start a separate support topic.

    @chip bennet. Thanks, I was searching for the same thing (delete the home button from this theme). You help a lot, even 7 months after! 😀

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Remove "Home" button from from theme’ is closed to new replies.