how cna i put it on the homepage , as i am pointing as PHP include but it does not give out the airport departure or arrival. Please help. I can see the airports and stuff on the index.php/booking but when i put it as an php include , it does not work. Any ideas will be nice
Good job on the addon! Just a minor issue, at the end of booking.php there is this:
?>
With a blank line after the ?>
You can take our the ?> (not required). The blank line/space at the end could mess up potentially sending that whitespace out and causing an “headers already sent” error message
Thanks ! I have modified it a bit , and now will try to work on calendar(not really working one , yes i want do that dates will show up but that will read days of week and show it after click search)
That’s how my one’s look
Damn was just about to forget about this , Much thanks for SimPilot for help with putting it as sidebar
I have this working inside a lightbox. In the box, the dep/arr only shows dep/app. Doesn’t display the airports. Any ideas? You can see here Click on the “Book your Alaska Adventure” banner.(Start Now)
I have this working inside a lightbox. In the box, the dep/arr only shows dep/app. Doesn’t display the airports. Any ideas? You can see here Click on the “Book your Alaska Adventure” banner.(Start Now)
I am displaying this way
<?php Template::Show('booking_form.tpl'); ?>
Change the code from
<?php Template::Show('booking_form.tpl'); ?>
To
<?php MainController::Run('booking', 'index'); ?>
This way it shows the same thing though the airports are also shown. It also makes the search work.