Jump to content

Jeff

Members
  • Posts

    1307
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by Jeff

  1. This is the second time I found other people's stuff on your website. The last time I helped you, I found a lot of images, scripts, even full HTML pages in your cPanel from flyaka.com

    I do believe it is time to stop, or find somewhere else to go. This is only wasting everyone's time trying to help someone who will not even help themselves.

  2. Why do you have the following in your layout.tpl?

    <script src="http://www.britishairwaysvirtual.net/lib/skins/2012/js/scripts.js" type="text/javascript">

    This is not going to get you any further support until you decide to do things on your own, and using your own work.

  3. No! You will need to create it as either a news item, or create a page to display it. If you create a page for it, link to it by placing this in your menu somewhere.

    <a href="http://www.yoursite.com.index.php/pages/pagename">Staff Vacancies</a>

  4. //core/templates/frontpage_main.tpl...LINE 10

    <div id="sidebar">
    <h3>Recent Reports</h3>
    
    <?php MainController::Run('PIREPS', 'RecentFrontPage', 5); ?>
    
    <h3>Newest Pilots</h3>
    
    <?php MainController::Run('Pilots', 'RecentFrontPage', 5); ?>
    
    <h3>Users Online</h3>
    <p><i>There have been <?php echo count($usersonline)?> user(s), and <?php echo count($guestsonline);?> guest(s) online in the past <?php echo Config::Get('USERS_ONLINE_TIME')?> minutes.</i></p>
    
    <?php
    /* $usersonline also has the list of users -
    	really simple example
    
    	Or if you're not on the frontpage:
    	$usersonline = StatsData::UsersOnline();
    
    
    foreach($usersonline as $pilot)	
    {
    	echo "{$pilot->firstname} {$pilot->lastname}<br />";
    }
    */
    ?>
    
    </div>

    • Like 1
×
×
  • Create New...