Hi Yuri,
I added this code to the pages_menu.tpl, see bellow:
Code:
{* $Id: pages_menu.tpl,v 1.5 2005/11/17 06:55:36 max Exp $ *}
{*{section name=pg loop=$pages_menu}
<a href="pages.php?pageid={$pages_menu[pg].pageid}" class="VertMenuItems">{$pages_menu[pg].title}</a><br />
{/section}*}
{section name=pg loop=$pages_menu}
{if $pages_menu[pg].orderby lte 100}
<a href="pages.php?pageid={$pages_menu[pg].pageid}" class="VertMenuItems">{$pages_menu[pg].title}</a><br />
{/if}
{/section}
{section name=pg loop=$pages_menu}
{if $pages_menu[pg].orderby gt 100}
<a href="pages.php?pageid={$pages_menu[pg].pageid}" class="VertMenuItems">{$pages_menu[pg].title}</a><br />
{/if}
{/section}
does that look right? it doesn't seem to be working. do i not need to refer to the menu modules that i need the static pages to appear in?