Jump to content

flyalaska

Members
  • Posts

    1943
  • Joined

  • Last visited

  • Days Won

    19

Everything posted by flyalaska

  1. If you are talking about the title in custom pages, go to /core/templates/pages_content/tpl and remove <h1><?php echo $pagename;?></h1>
  2. I know this is an old post. I am trying to get the twitter activity feed to work. I gar this error Warning: Invalid argument supplied for foreach() in/home/flyakaco/public_html/lib/skins/flyalaska_1.0/activity_list.tpl on line 3 I have added the the twirrer settings to my config.
  3. Also will be caused for pilots flying with plane with 100% fuel for small flights.
  4. I am on Version 2.1 v2.1.935
  5. I noticed last night that my VA's Total Hours is not changing. It has been stuck on 14,777 hours. Today with 13 flights already put in, it has not changed. Any idea whats causing this? Resetting the hours didn't help.
  6. Works perfect. Thank you! http://www.flyaka.com/index.php/acars
  7. That was from the posters site.
  8. The code doesn't work for me either. Im sure it has to go in the right spot. http://www.globalvirtualair.com/index.php/acars
  9. Don't buy it on my account. If you were already planing on it, I would really appreciate it.
  10. I been trying to get this to work for a few months now. Only able to get to work with my IPB, Not many people stay connected to IPB. Here is the details that I need, if someone can help me out. User Table Username Field User Avatar Field
  11. Is anyone using ArrowChat, and able to get it to use the phpvms database? - http://www.arrowchat.com
  12. yup, Jeff will make it anyway you want it. He does an awesome job.
  13. I had the same question before. You are safe. The old PIREPS will still show as the one that the pilot flew, even if you change the flight number.
  14. Anyone know how to make the random screenshot link to the picture? I want to put it in a lightbox.
  15. I have found a better feed generator. The one I originally posted would have problems, If you have already used the link I provided, You should switch to this link http://feed2js.org/index.php?s=build
  16. <strong>Total Hours Flown: </strong><?php echo number_format(StatsData::TotalHours(), 0); ?><br />
  17. It didn't
  18. I made it myself
  19. Didn't work either. This makes no sense, as it works on every other table.
  20. I use Word press, than just have rss feed that certain catagory for your hub. lol@ newbie with 1500+ post.
  21. That didn't work either!
  22. That is the same exact one I am using. I have it on all my table, Pilot Roster, PIREPS, Downloads, Schedules, etc. Just wont work on the Hub Roster.
  23. Thank you!
  24. What am I searching for, Keywords?
  25. I am having a little trouble getting my hub roster to paginate. Here is the hub page in question - http://www.flyaka.com/index.php/Anchorage I have no problem paginating my other tables. This is the hub roster code: <!-- Hub Roster --> <div class="box"> <?php $pilots = PilotData::getAllPilotsByHub('PANC'); ?> <?php if(!$pilots) { echo 'There are no pilots in that hub, so there must be at least one pilot so the hub can run.'; return; } ?> <table id="mytable"width="100%" border="0" cellspacing="0" cellpadding="0" class="aka_table"> <tr> <tr> <th width="112"><div align="center"><u>Pilot ID</u></div></th> <th width="345"><u>Pilot Name</u></th> <th width="210"><u>Rank</u></th> <th width="170"><u>Hours</u></th> <th width="190"><u>Flights</u></th> </tr> <?php foreach ($pilots as $pilot) { ?> <tr> <td align="left"><div align="center"><a href="<?php echo url('/profile/view/'.$pilot->pilotid);?>"> <?php echo PilotData::GetPilotCode($pilot->code, $pilot->pilotid)?></a></div></td> <td><div align="center"><?php echo $pilot->firstname.' '.$pilot->lastname?></div></td> <td><div align="center"><?php echo $pilot->rank;?></div></td> <td><div align="center"><?php echo $pilot->totalhours; ?></div></td> <td><div align="center"><?php echo $pilot->totalflights; ?></div></td> </tr> <?php } ?> </table> <script type="text/javascript"> $(document).ready(function() { $('#mytable').dataTable( { "sPaginationType": "full_numbers" } ); } ); </script> </div> <div class="clear"></div> <!-- Hub Roster --> Any help would be appreciated
×
×
  • Create New...