View Single Post
  #4  
Old 05-07-2008, 12:01 AM
  Yurij's Avatar 
Yurij Yurij is offline
Banned
 

X-Adept
  
Join Date: Jan 2008
Posts: 486
 

Default Re: How to select specific static pages to appear in menu?

Quote:
Originally Posted by pepperlibido
Thanks Yurij

When we apply the code we get a blank. That is, non of the pages are listed in the menu.

The following is the entire code after adding your suggestion for pages_menu.tpl




PHP Code:
{* $Idpages_menu.tpl,v 1.5 2005/11/17 06:55:36 max Exp $ *}
{
section name=pg loop=$pages_menu}


{if 
$pages_menu[pg].pageid eq 170 or $pages_menu[pg].pageid eq 180 or $pages_menu[pg].pageid eq 190}


{* 
WCM CDSEO Links - Static Pages *}<a href="{$http_location}/{$cdseo_pages}/{$pages_menu[pg].filename}class="VertMenuItems" title="{$pages_menu[pg].title}">{* / WCM CDSEO Links - Static Pages *}{$pages_menu[pg].title}</a><br />
{/if}
{/
section

170, 180, 190 being the positions of the static pages I wish to add to the menu.

Did I do it as you intended? Otherwise any other ideas much appreciated.

If you use position (filled orderby) 170, 180, 190,
then use next code:
PHP Code:
{section name=pg loop=$pages_menu}


{if 
$pages_menu[pg].orderby eq 170 or $pages_menu[pg].orderby eq 180 or $pages_menu[pg].orderby eq 190}


{* 
WCM CDSEO Links - Static Pages *}<a href="{$http_location}/{$cdseo_pages}/{$pages_menu[pg].filename}class="VertMenuItems" title="{$pages_menu[pg].title}">{* / WCM CDSEO Links - Static Pages *}{$pages_menu[pg].title}</a><br />
{/if}
{/
section
Reply With Quote