View Single Post
  #1  
Old 07-13-2004, 08:46 PM
  adpboss's Avatar 
adpboss adpboss is offline
 

X-Man
  
Join Date: Feb 2003
Location: Ontario, Canada
Posts: 2,389
 

Default Easy Hidden Static Pages Mod 3.5.x

Ok. This has to be one of the most annoying things in X-Cart. You can either enable or disable a Static Page but if you want to enable it throughout the customer front end by direct link, but not in the help menu here is the trick.

First set all of the Help Menu Hidden Static Pages (HMHSP) to the same order by # in the admin. I use 99.

In skin1/pages_menu.tpl

change from

Code:
{* $Id: pages_menu.tpl,v 1.2 2003/04/10 13:07:54 svowl Exp $ *} {section name=pg loop=$pages_menu} {$pages_menu[pg].title} {/section}

change to

Code:
{* $Id: pages_menu.tpl,v 1.2 2003/04/10 13:07:54 svowl Exp $ *} {section name=pg loop=$pages_menu} {if $pages_menu[pg].orderby ne 99} {$pages_menu[pg].title} {/if} {/section}
Reply With Quote