Wiggywag,
This may not be
exactly what you are looking for but I use it on my site to hide static / embedded pages that I do not want to appear on the left side nav bar.
I use the static page "POS" column (database 'orderby' field) to set what I want displayed or hidden. Any static page with a POS value less than 5000 is displayed in the navigational menu. Anything with a POS of 5000 or greater is hidden and can only be linked to directly.
This works well if you want to have several products link to a static page containing warranty information while maintaining the look and feel of the store skin but not have extraneous static page links appear in the nav bar.
Hope this helps...
-- X2
/pages_menu.tpl
Quote:
{* $Id: pages_menu.tpl,v 1.5 2005/11/17 06:55:36 max Exp $ *}
{section name=pg loop=$pages_menu}
{if $pages_menu[pg].orderby lt "5000"}
<a href="pages.php?pageid={$pages_menu[pg].pageid}" class="VertMenuItems">{$pages_menu[pg].title}</a><br />
{/if}
{/section}
|