Jump to content

mark1million

Moderators
  • Posts

    2288
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by mark1million

  1. You don't make sense, All you need to do move that code out of the php tags, I dont know if this will work,within the existing tags, Screenshots::show_random_screenshot(); Or just move that code like this, <div class="mc0201"> Welcome to SF Logistik </div> <br /> <br /> <div class="mc020303"> <?php // Show the News module, call the function ShowNewsFront // This is in the modules/Frontpage folder MainController::Run('FrontBids', 'RecentFrontPage', 15); Template::Show('acarsmap.tpl'); ?> <?php Screenshots::show_random_screenshot(); ?> </div> <div class="mc020303"> </div>
  2. It might just be me but on my dev site when i log out and go to log back in again i get the following message,
  3. Cheers, i have uploaded on my dev site and all seems to still be working ok, will have a good going over the changes and once i fully understand what needs updating in the skins folder ill start editing
  4. edit removed
  5. Wow these are some big changes to the templates, ill have to look at these as all my templates will need updating.
  6. Ha yes so i did
  7. Its not that difficult when you start to sit down and look in to it. Its worth learning to do it if you want to run your own VA.
  8. Yes just add the width and height attribute to the img so, <img src="http://www.bluepanoramava.joomlafree.it/Background.png" width="250" height="100" /> Change to suite your needs
  9. Create it in your css. so, #yourname { color: #your color hex; font-family: Times New Roman; font-size: 16px; } The all you have to do to use it is <p id="yourname">Some Text</p>
  10. Thanks Nabeel, thats great but its sending the wrong email The email that's sent is the email_registered.tpl and should be email_registrationaccepted.tpl
  11. Looks like a couple of unused divs in there, have a look at your frontpagemain.tpl should be nothing in there apart from the top div mcright then the show news module. Not fully sure how v2 goes but thats how is is for v1.
  12. Check that you have the font installed in the lib fonts folder, i would re-upload as it looks as though that file is corrupt or can not be read.
  13. Currently as it is no pilot can login, it needed a change to the top line. they were all set to false
  14. Thanks Nabeel, its the email_registrationaccepted.tpl in the live skins folder.
  15. Can you add that resend button to the admin pilots page, with the addition of the ability to close accounts now it would be good if that button was on their admin profile where we can change their status back to active again then click the resend pilot info button to send them all their details.
  16. See Here http://forum.phpvms.net/topic/5026-rev-v21934-126-g35a51d1-close-24-added-different-pilot-statuses/
  17. Word of warning guys, When you copy this to your local.config.php make sure you change the top part to, can login true or all of your pilots wont be able to log in and your VA will become a bit quiet /* These are pilot statuses which can be selected in the admin panel */ Config::Set('PILOT_STATUS_TYPES', array( 0 => array( 'name' => 'Active', # The title to show in the dropdown 'message' => '', # Message to show if they can't login (below is false) 'canlogin' => true, # Are they allowed to log in Set to True to enable pilots to login 'active' => true, # Are they an active pilot? ), 1 => array( 'name' => 'Inactive', 'message' => 'Your account was marked inactive', 'canlogin' => false, 'active' => false, ), 2 => array( 'name' => 'Banned', 'message' => 'Your account is banned, please contact an admin!', 'canlogin' => false, 'active' => false, ), 3 => array( 'name' => 'On Leave', 'message' => 'You have been marked as on leave', 'canlogin' => false, 'active' => false, ), ));
  18. Dont worry it was me, sorry.....
  19. Nabeel, Pilots list (admin side) is not showing up after this one.
  20. I see, if i remember right they were moved ages ago as to not be overwritten in an update, i wondered why someone was getting old welcome emails If this is a Permanent move ill copy them back to the admin side.
  21. Getting the following when rejecting a pilot, /admin/templates/email_registrationdenied.tpl" doesn't exist in /core/classes/TemplateSet.class.php on line 226 This template is usually in the active skins folder.
  22. Looks like this will be the 3rd update tonight lol Thanks, will make things more definable.
×
×
  • Create New...