Jump to content

-Nick Tyson-

Members
  • Posts

    83
  • Joined

  • Last visited

Posts posted by -Nick Tyson-

  1. Yes I am pretty sure this is what we agreed on. I was going to make you that template for $50. And then you flaked out on me, so I have a template here that I worked on for about 10 hours...

  2. Hello!

    I've created a template that I plan on releasing for use, and would like some feedback. Also to see if I missed any bugs :P

    Here is the template: http://vairline.org/phpvms/

    The background is flexible for changing colors, you can turn the shadow off with one click of a button, the menu is editable.. So I've tried to make this as easy to use as possible.

    Would you download the template?

    Thanks! :)

  3. Hello! Welcome to the forums!

    Your website looks pretty good. It needs some more pictures of your aircraft for sure. Maybe add some more pages with information on them. It's a good looking plane, but I would try and maybe add some more color to it if possible.

    Also as Matthew said, you may want to change your ICAO before doing anything with VATSIM.

    Good luck!

  4. Can I complain about you please

    I believe there is a report button shall you deem it necessary to report someone. It's the big button that has a big caution symbol next to each post.......... I don't think the Mod's will find any problem with what they are saying, as a forum is a spot for discussion. And when your posting in the virtual airline sub section, your asking for criticism.

    But as far as Thomas Cook letting you use their logo and name....

    67f71aef-2b37-43cf-ba88-07f45dd2902b.jpg

    Man this is a great day to use lolcats! I promise that was the last of the day.

    • Like 1
  5. Nick you spelled available wrong in your sig :P

    That is embarrassing! I think spell check should be added to Photoshop :P

    Thanks for letting me know!

    Love the acronym for VirtualAirlineJobs.com = VAJ hehe.

    I finally have my chance at getting to use teh kittiz!

    1168382483-1168026547961.b.jpg

    Your name is familiar...

    Well, my feedback:

    Site could do with more colour, it's a bit dull

    Roll over the home button, corners disappear...

    Some links need fixing (clicking the title of a post rather than the continue reading button)

    The contact button should really go to a page on the same site, rather than one trying to sell scams <_<

    Thanks for your feedback Tom! I will get to work right away with seeing if I can get that roll over fixed. As well as the colors.

    And the website the contact page was sending you to is actually my website's contact page. The scams on there were content holders while I designed my new theme for it. :)

    Thank you

  6. Hello Everyone,

    I'm glad to announce, that for the first time since 2009, Virtual Airline Jobs is now back online! :) After completely redesigning the website and adding more features, we are sure this will be a success. Whether you are a pilot browsing for a pilot position, or are looking for more in a VA, you can easily search to find a path that suits you.

    Attn VA Staff: We have made creating a job posting as simple as possible. Simply click on the "Post a Job" page to get started. Its 100% free and only takes a few minutes.

    It will take a few weeks before we are able to have an up-to-date database, but from there, it should be smooth sailing.

    Please feel free to give feedback in your honest opinion so that we can better improve our services.

    1.png

    Thank you all.

  7. I added more hubs but when going to the roster instead of displaying the icao like the other versions have it just says "There are no pilots!" 3 times as seen here http://nicktyson.me/simb6/index.php/pilots.

    I haven't edited any php. Thanks for any help!

    
    <?php
    if(!$allpilots)
    {
    	echo 'There are no pilots!';
    	return;
    }
    ?>
    <table width="100%">
    <thead>
    <tr>
    <th ><div align="center"><a href="#">PID</a></div></th>
    <th><div align="center"><a href="#">Name</a></div></th>
    <th><div align="center"><a href="#">Rank</a></div></th>
    <th><div align="center"><a href="#">Flights</a></div></th>
    <th><div align="center"><a href="#">Hours</a></div></th>
    </tr>
    </thead>
    <tbody>
    <?php
    foreach($allpilots as $pilot)
    {
    /* 
    	To include a custom field, use the following example:
    
    	<td>
    		<?php echo PilotData::GetFieldValue($pilot->pilotid, 'VATSIM ID'); ?>
    	</td>
    
    	For instance, if you added a field called "IVAO Callsign":
    
    		echo PilotData::GetFieldValue($pilot->pilotid, 'IVAO Callsign');		
     */
    ?>
    <tr bgcolor="#fff" onmouseover="this.style.backgroundColor='#cae3ff';" onmouseout="this.style.backgroundColor='#fff';">
    <td width="1%" nowrap><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"><img src="<?php echo Countries::getCountryImage($pilot->location);?>" 
    		alt="<?php echo Countries::getCountryName($pilot->location);?>" />
    	  
    	  <?php echo $pilot->firstname.' '.$pilot->lastname?>
          </div></td>
    <td><div align="center"><img src="<?php echo $pilot->rankimage?>" alt="<?php echo $pilot->rank;?>" /></div></td>
    <td><div align="center"><?php echo $pilot->totalflights?></div></td>
    <td><div align="center"><?php echo Util::AddTime($pilot->totalhours, $pilot->transferhours); ?></div></td>
    <?php
    }
    ?>
    </tbody>
    </table>

×
×
  • Create New...