Jump to content

miniarma

Members
  • Posts

    204
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by miniarma

  1. Demo site added to the description. Thanks
  2. Ok im in process of getting permission to distrubute this at the moment after spotting your post. Will let all you guys know on the progress.
  3. Make sure your head contains the following in your HTML <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title><?php echo $page_title; ?></title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="robots" content="all" /> <?php Template::Show('core_htmlhead.tpl'); ?> </head> And then after the body tag add this <?php $page_htmlreq; ?> Hope this helps !
  4. Dear PHPVMS Community, Sorry to say but I have had to take this down as I dont want to bring any problems to the community at this moment in time. This theme will not be availible and im really sorry guys. I am working on a skin that im making from scratch so you will have to bare with me for a few weeks but I will try and put as much work as I can into the Community and bring you guys some proffessional work free of charge for you all to enjoy. Once again im very sorry about this and now I feel really bad Kind Regards Chad Donoghue
  5. Ok trying to get the pilots awards on a seperate page instead of being on the main profile page. Having a bit of trouble as its not feching data at all and ive even added awards to my pilot profile aswell. Here is the code im using <div id="mainbox"> <div class="indent"> <p><?php echo $userinfo->firstname . ' ' . $userinfo->lastname; ?></p> <table> <tr> <td valign="top" nowrap> <p> <strong>My Awards</strong><br /> <?php if(!$allawards) { echo 'No awards yet'; } else { /* To show the image: <img src="<?php echo $award->image?>" alt="<?php echo $award->descrip?>" /> */ ?> <ul> <?php foreach($allawards as $award){ ?> <li><?php echo $award->name ?></li> <?php } ?> </ul> <?php } ?> </p> </tr></table> </div> </div> If anyone could help me I would be grateful. Thanks
  6. Have you added your PHP tags to your images, css and js files. <?php echo SITE_URL?>/lib/skins/test/images/header/rotate.php" Example(s) <link type="text/css" href="<?php echo SITE_URL?>/lib/skins/test/menu.css" rel="stylesheet" /> <img src="<?php echo SITE_URL?>/lib/skins/test/images/header/rotate.php" alt="Header" width="977" height="280" />
  7. miniarma

    Help with dd

    You need to add the CSS and Javascript files and link them like this to the top of your Layout.tpl file <link type="text/css" href="<?php echo SITE_URL?>/lib/skins/test/menu.css" rel="stylesheet" /> <script type="text/javascript" src="<?php echo SITE_URL?>/lib/skins/test/jquery.js"></script> <script type="text/javascript" src="<?php echo SITE_URL?>/lib/skins/test/menu.js"></script> Then you need to locate the core_navigation.tpl file and add your menu css. Like the example below. (can be found in /core/templates) <body class="menu"> <div id="menu"> <ul class="menu"> <li><a href="<?php echo url('/'); ?>" class="parent"><span>Home</span></a> </li> <li><a href="#" class="parent"><span>Airline Operations</span></a> <div><ul> <li><a href="#" class="parent"><span>Sub Item 1</span></a> <div><ul> <li><a href="#"><span>Sub Item 1.1</span></a></li> <li><a href="#"><span>Sub Item 1.2</span></a></li> </ul></div> </li> <li><a href="#" class="parent"><span>Sub Item 2</span></a> <div><ul> <li><a href="#"><span>Sub Item 2.1</span></a></li> <li><a href="#"><span>Sub Item 2.2</span></a></li> </ul></div> </li> <li><a href="#"><span>Sub Item 3</span></a></li> <li><a href="#"><span>Sub Item 4</span></a></li> <li><a href="#"><span>Sub Item 5</span></a></li> <li><a href="#"><span>Sub Item 6</span></a></li> <li><a href="#"><span>Sub Item 7</span></a></li> </ul></div> </li> <?php if(!Auth::LoggedIn()) { // Show these if they haven't logged in yet ?> <li><a href="<?php echo url('/login'); ?>"<span>Login<span></a></li> <li><a href="<?php echo url('/registration'); ?>"<span>Register<span></a></li> <?php } else { // Show these items only if they are logged in ?> <li><a href="<?php echo url('/profile'); ?>"<span>Pilot Center<span></a></li> <?php } ?> <li><a href="<?php echo url('/pilots'); ?>"<span>Pilots<span></a></li> <li><a href="<?php echo url('/acars') ?>"<span>Live Map<span></a></li> <?php echo $MODULE_NAV_INC;?> <?php if(Auth::LoggedIn()) { if(PilotGroups::group_has_perm(Auth::$usergroups, ACCESS_ADMIN)) { echo '<li><a href="'.fileurl('/admin').'"<span>Admin Center<span></a></li>'; } ?> <li><a href="<?php echo url('/logout'); ?>"><span>Log Out<span></a></li> <?php } ?> Then upload the layout.tpl and core_navigation.tpl to your skins directory. Refresh and done If you need anymore help then let me know
  8. Really nice reskin Congrats !
  9. It means that you havnt got the pilot_public_profile.tpl uploaded to the core/templates folder. The reason why TemplateSet.class.php is coming up is because it can't find the pilot_public_profile.tpl I would assume.
  10. Hi, If you like I can help you out. Cheap custom PHPvms templates - http://geekaid-repairs.co.uk/ Starting from $20 - 14 Euro, £12. Please use the contact me form on my site and please supply me with any extra detials. All my previous work can be viewed on my website. Thanks
  11. Ow god xD Not a good start. Thanks for pointing it out
  12. Cheap custom PHPvms templates - http://geekaid-repairs.co.uk/ Starting from $20 - 14 Euro, £12. Please use the contact me form on my site and please supply me with any extra detials. All my previous work can be viewed on my website. Thanks
×
×
  • Create New...