Kairon Posted August 6, 2010 Report Posted August 6, 2010 Hello friends I'm in the final stretch of my site, I would most certainly have a lot of help, I'll explain what I need: I use the skin ObsessBlue, it has the menu on the left side, I would like to know how to define the pages that the menu should appear I have an example a site with the same skin that page http://www.grupobrazilair.com/ the side menu appears, and that it does not appear http://www.grupobrazilair.com/index.php/acars like to know how I do it, thanks to whom I liked a lot of help phpVMS and I will make a sincere gift to them Obliged. Quote
Jeff Posted August 6, 2010 Report Posted August 6, 2010 Try any of this... <li><a href="<?php echo SITE_URL ?>/index.php/Frontpage">home</a></li> <?php if(!Auth::LoggedIn()) { // Show these if they haven't logged in yet ?> <li><a href="<?php echo SITE_URL ?>/index.php/registration">Register</a></li> <?php } else { // Show these items only if they are logged in ?> <li><a href="<?php echo SITE_URL ?>/index.php/profile">Pilot Center</a></li> <?php } ?> <li><a href="<?php echo SITE_URL ?>/index.php/pilots">Pilots</a></li> <li><a href="<?php echo SITE_URL ?>/index.php/acars">Live Map</a></li> <?php echo $MODULE_NAV_INC;?> <?php if(Auth::LoggedIn()) { if(Auth::UserInGroup('Administrators')) { echo '<li><a href="'.SITE_URL.'/admin/">Admin Center</a></li>'; } ?> <li><a href="<?php echo SITE_URL ?>/index.php/login/logout">Log Out</a></li> <?php } ?> Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.