Jump to content

JackPlumb

Members
  • Posts

    82
  • Joined

  • Last visited

Profile Information

  • Gender
    Not Telling

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

JackPlumb's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Ah right, I utilised the code someone else has already supplied to make it visible - is it as simple as getting it to show them by hubs?
  2. Any idea how I can get the Pilots page to display by Hubs rather than a full list?
  3. I really do appreciate the time you're offering - so, removing the jQuery from the layout.tpl and modifying the above files allows the tabs to work but still get 'No route passed'.
  4. <?php /** * STOP! HAMMER TIME! * * ====> READ THIS !!!!! * * I really really, REALLY suggest you don't edit this file. * Why? This is the "main header" file where I put changes for updates. * And you don't want to have to manually go through and figure those out. * * That equals headache for you, and headache for me to figure out what went wrong. * * BUT BUT WAIT, you say... I want to include more javascript, css, etc...! * Well - in your skin's header.tpl file, this file is included as: * * Template::Show('core_htmlhead.tpl'); * * Just add your stuff under that line there. That way, it's in the proper * spot, and this file stays intact for the system (and me) to be able to * make clean updates whenever needed. Less bugs = happy users (and happy me) * * THANKS! */ ?> <script type="text/javascript"> var baseurl = "<?php echo SITE_URL;?>"; var geourl = "<?php echo GEONAME_URL; ?>"; </script> <link rel="stylesheet" media="all" type="text/css" href="<?php echo fileurl('lib/css/phpvms.css')?>" /> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo Config::Get('PAGE_ENCODING');?>" /> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.0/jquery-ui.min.js"></script> <script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=true"></script> <script type="text/javascript" src="<?php echo fileurl('lib/js/jquery.form.js');?>"></script> <script type="text/javascript" src="<?php echo fileurl('lib/js/phpvms.js');?>"></script> <?php echo $MODULE_HEAD_INC;
  5. Thanks for taking the time to assist me @web541. I'm operating Version 2.1.936, I've re-uploaded the version you made and the version Mark made but sadly the fix works on neither. Where can I get 5.5.x and could I overright my current install? bootstrap.min.js:6 Uncaught Error: Bootstrap's Javascript requires jQuery version 1.9.1 or higher, but lower than version 3(…)(anonymous function) @ bootstrap.min.js:6(anonymous function) @ bootstrap.min.js:6 bootstrap-datepicker.js:1655 Uncaught TypeError: $(...).on is not a function(…)(anonymous function) @ bootstrap-datepicker.js:1655(anonymous function) @ bootstrap-datepicker.js:1671 demo.js:290 Uncaught TypeError: $(...).on is not a function(…)setup @ demo.js:290(anonymous function) @ demo.js:213(anonymous function) @ demo.js:340 app.min.js:13 Uncaught TypeError: $(...).off is not a function(…)
  6. Have tried this, it disables the use of any tabs in the schedule area and can therefore not search routes.
  7. You can use the code below to automatically pull it on the schedules page (change "arricao" to "depicao" for depature airport): <?php echo file_get_contents("http://wx.ivao.aero/metar.php?id={$schedule->arricao}"); ?>
  8. <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <!-- Chrome, Firefox OS, Opera and Vivaldi --> <meta name="theme-color" content="#367FA9"> <!-- Windows Phone --> <meta name="msapplication-navbutton-color" content="#367FA9"> <!-- iOS Safari --> <meta name="apple-mobile-web-app-status-bar-style" content="#367FA9"> <!-- <title><?php echo $page_title; ?></title> --> <title><?php echo SITE_NAME; ?> CrewCenter</title> <?php echo $page_htmlhead; ?> <!-- Tell the browser to be responsive to screen width --> <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport"> <!-- Bootstrap 3.3.6 --> <link rel="stylesheet" href="<?php echo SITE_URL?>/lib/skins/crewcenter/bootstrap/css/bootstrap.min.css"> <!-- Font Awesome --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.5.0/css/font-awesome.min.css"> <!-- Ionicons --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/css/ionicons.min.css"> <!-- Theme style --> <link rel="stylesheet" href="<?php echo SITE_URL?>/lib/skins/crewcenter/dist/css/AdminLTE.min.css"> <!-- AdminLTE Skins. Choose a skin from the css/skins folder instead of downloading all of them to reduce the load. --> <link rel="stylesheet" href="<?php echo SITE_URL?>/lib/skins/crewcenter/dist/css/skins/_all-skins.min.css"> <!-- iCheck --> <link rel="stylesheet" href="<?php echo SITE_URL?>/lib/skins/crewcenter/plugins/iCheck/flat/blue.css"> <!-- Morris chart --> <link rel="stylesheet" href="<?php echo SITE_URL?>/lib/skins/crewcenter/plugins/morris/morris.css"> <!-- jvectormap --> <link rel="stylesheet" href="<?php echo SITE_URL?>/lib/skins/crewcenter/plugins/jvectormap/jquery-jvectormap-1.2.2.css"> <!-- Date Picker --> <link rel="stylesheet" href="<?php echo SITE_URL?>/lib/skins/crewcenter/plugins/datepicker/datepicker3.css"> <!-- Daterange picker --> <link rel="stylesheet" href="<?php echo SITE_URL?>/lib/skins/crewcenter/plugins/daterangepicker/daterangepicker.css"> <!-- bootstrap wysihtml5 - text editor --> <link rel="stylesheet" href="<?php echo SITE_URL?>/lib/skins/crewcenter/plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.min.css"> <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <?php echo $page_htmlreq; ?> <div id="content"> <?php echo $page_content; ?> </div> <!-- jQuery 2.2.3 --> <script src="<?php echo SITE_URL?>/lib/skins/crewcenter/plugins/jQuery/jquery-2.2.3.min.js"></script> <!-- jQuery UI 1.11.4 --> <script src="https://code.jquery.com/ui/1.11.4/jquery-ui.min.js"></script> <!-- Resolve conflict in jQuery UI tooltip with Bootstrap tooltip --> <script> $.widget.bridge('uibutton', $.ui.button); </script> <!-- Bootstrap 3.3.6 --> <script src="<?php echo SITE_URL?>/lib/skins/crewcenter/bootstrap/js/bootstrap.min.js"></script> <!-- Morris.js charts --> <script src="https://cdnjs.cloudflare.com/ajax/libs/raphael/2.1.0/raphael-min.js"></script> <script src="<?php echo SITE_URL?>/lib/skins/crewcenter/plugins/morris/morris.min.js"></script> <!-- Sparkline --> <script src="<?php echo SITE_URL?>/lib/skins/crewcenter/plugins/sparkline/jquery.sparkline.min.js"></script> <!-- jvectormap --> <script src="<?php echo SITE_URL?>/lib/skins/crewcenter/plugins/jvectormap/jquery-jvectormap-1.2.2.min.js"></script> <script src="<?php echo SITE_URL?>/lib/skins/crewcenter/plugins/jvectormap/jquery-jvectormap-world-mill-en.js"></script> <!-- jQuery Knob Chart --> <script src="<?php echo SITE_URL?>/lib/skins/crewcenter/plugins/knob/jquery.knob.js"></script> <!-- daterangepicker --> <script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.11.2/moment.min.js"></script> <script src="<?php echo SITE_URL?>/lib/skins/crewcenter/plugins/daterangepicker/daterangepicker.js"></script> <!-- datepicker --> <script src="<?php echo SITE_URL?>/lib/skins/crewcenter/plugins/datepicker/bootstrap-datepicker.js"></script> <!-- Bootstrap WYSIHTML5 --> <script src="<?php echo SITE_URL?>/lib/skins/crewcenter/plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.all.min.js"></script> <!-- Slimscroll --> <script src="<?php echo SITE_URL?>/lib/skins/crewcenter/plugins/slimScroll/jquery.slimscroll.min.js"></script> <!-- FastClick --> <script src="<?php echo SITE_URL?>/lib/skins/crewcenter/plugins/fastclick/fastclick.js"></script> <!-- AdminLTE App --> <script src="<?php echo SITE_URL?>/lib/skins/crewcenter/dist/js/app.min.js"></script> <!-- AdminLTE dashboard demo (This is only for demo purposes) --> <script src="<?php echo SITE_URL?>/lib/skins/crewcenter/dist/js/pages/dashboard.js"></script> <!-- AdminLTE for demo purposes --> <script src="<?php echo SITE_URL?>/lib/skins/crewcenter/dist/js/demo.js"></script> </body>
  9. Thanks for replying, what do you mean by put all of them in layout.php. The code or just script?
  10. Even with the newly modified files I am still getting 'No route passed'. I have done the recommended removal of jQuery from web541 with no luck infact disabling any tab button so therefore needed to revert back.
  11. To me it doesn't seem bolded, it seems a different text and a separate font size.
  12. Between Dashboard and View your site, the text is slightly bigger.
  13. Hello all, Not sure if anyone else is getting this but, in the Admin Panel Sidebar the links in-between Dashboard and View your site is bigger than the rest. Is anyone else getting this problem, or does anyone know of a remedy for it?
  14. In profile, it is a dropdown. Just not in the Admin panel bit.
  15. I have a custom field which is a Dropdown box, I have gone onto the Pilots Profile section on the Admin Panel to try out this down down and it is showing the field but with a Text Field not drop down. Is this a bug?
×
×
  • Create New...