skin/2-columns/customer/bottom.tlp
Inside that file look for this line:
Code:
{foreach from=$pages_menu item=p}
{if $p.show_in_menu eq 'Y'}
<li><a href="pages.php?pageid={$p.pageid}">{$p.title|amp}</a></li> {/if}
{/foreach}
Change it to:
Code:
{foreach from=$pages_menu item=p}
{if $pages_menu[pg].orderby gt "900"}
<li><a href="pages.php?pageid={$p.pageid}">{$p.title|amp}</a></li>
{/if}
{/foreach}
This will prevent the static pages showing up at homepage, but still showing up in the help section.