Forums

[resolved] Remove "Home" button from from theme (6 posts)

  1. rhworship
    Member
    Posted 11 months ago #

    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?

  2. esmi
    Theme Diva & Forum Moderator
    Posted 11 months ago #

    Have you reviewed Creating_a_Static_Front_Page?

  3. Chip Bennett
    Member
    Posted 11 months ago #

    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>
  4. rhworship
    Member
    Posted 11 months ago #

    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".

  5. Chip Bennett
    Member
    Posted 11 months ago #

    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.

  6. deftoner
    Member
    Posted 3 months ago #

    @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! :D

Reply

You must log in to post.

About this Topic