View Single Post
  #4  
Old 08-17-2006, 12:48 AM
 
fspc fspc is offline
 

Newbie
  
Join Date: Jul 2006
Posts: 1
 

Default

Hello ecommerce!

Please have a look at http://forum.x-cart.com/viewtopic.php?t=30112&highlight=static+pages.

You have to create two templates, let's say pages_menu_first.tpl and pages_menu_second.tpl.

In the first template file you can say
Code:
{if $pages_menu[pg].orderby < 300}
to display only static pages with a position number lower than 300. In the second template file you say
Code:
{if $pages_menu[pg].orderby > 300}
to display the rest.

Place two boxes in home.tpl by including
Code:
{include file="new_menu_first.tpl" }
and
Code:
{include file="new_menu_second.tpl" }
and let each box address the corresponding pages_menu template.
__________________
Xcart Pro 4.1.2
Reply With Quote