Jump to content

Wayne

Members
  • Posts

    171
  • Joined

  • Last visited

    Never

Posts posted by Wayne

  1. You may just want to make your own nav.

    Thats the normal code form the template.

    <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/login/">Login</a></li>
    <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
    }
    ?>

    So you could just do something like below.

    Take this out...

    <?php echo $MODULE_NAV_INC;?>

    and replace that with...

    <li><a href="<?php echo SITE_URL ?>/index.php/name">Name</a></li>

    Just replace the name with whatever your page is called. Then for the Name you would change that to whatever you would also like.

    You could do this as many times as you would like for how ever many pages. Just remember to fix the /index.php/name everytime you make a new page and so on with deleting them and whatnot.

  2. Thanks Roger.

    Does that have really anything to do with what he asked as a question? Maybe you should stick on topic yourself.

    And to be honest Roger you have not helped me at all with anything on my site. Especially with the new skin i have. And on the other hand every forum post i have made on the site you have never replied to me, except for in one post and it just said to post up the error and that was it. So next time you go around telling people you "fixed my site" you should maybe read to see if you have even fixed or helped with it.

  3. most likely you would take out the 20 in this out below, and you will see all schedules. or you could make it a higher number only problem with that is you would have to keep updating it everytime unless you put it to a million or something...but that would be pointless when you could just remove the 20 leave it blank and they all show up..

    $allschedules = SchedulesData::GetSchedules(20);

  4. Ill be honest i know exactly what this is, you have to mess with the <div>'s and the placement of where the body for all the frontpage information goes and whatnot, i would be happy to help, but i have delt with this a ton, just mess with the <div>'s and the placement and you will find it working in no time!!

  5. coolkid, its quite alright, the thing was i just never got a email asking if you could use it or not. I would be more than happy to make anyone any type of image like that. All ya have to do is ask, i just don't like when people don't ask. So on the other hand were all good and no worries, just keep skinning and have fun with it!

  6. When you are looking at the schedules main page, and you click to narrow your flights.

    So you got that done, now you find the flight you want. Done

    Now you click on view details, and you get your info. Done

    Now you click the back button to get back to the info on the schedules that you just selected but it reverts you to all of the schedules at the very beginning? Is there a way to find the schedule you want and click on details and when you hit the back button it dosent take you all the way back to a list of every single one where you have to search for the flight and airport again??? Thanks Cody

  7. Here is an option to maybe add:

    Pilots hours for the month for certain hubs....so hub managers can keep track of whos making the hours and whatnot.

    This could show under a general airline stats page, with other general information.....could include a "short about us", contact us info such as airline email, total hours this is the part above divide into parts - all hours - then hub hours. As well as other information that could be usefull, almost like a stats page, would be very nice to have like the other pages...

  8. Yes you sure can, just make sure you edit these two files... But please! Make sure you copy them and do not overwrite the original ones.

    app.config.php

    local.config.php

    Look for this line of code to edit.

    # Options for the signature that's generated 
    Config::Set('SIGNATURE_TEXT_COLOR', '#000000');
    Config::Set('SIGNATURE_SHOW_EARNINGS', true);
    Config::Set('SIGNATURE_SHOW_RANK_IMAGE', true);
    Config::Set('SIGNATURE_SHOW_COPYRIGHT', true);

    Be sure to edit the #000000 - mine is set to black as you can tell. You can change it to any color you want. Enjoy!

  9. I have no idea what happened but the signatures when from the design i had to the old phpvms which was okay, but now there all gone....i look in the ftp nothing is there but the index.php, background.png and thats it....all the sigs are gone....i generated new ones and nothing is still showing up...what did i do wrong...lol

×
×
  • Create New...