Yes, it's actually part of the "classic" theme (fp_mobile_template.php), and switching to mobile presentation should be automatic.
If you just visit your site on a mobile phone, it should work automatically (or visit the demo site on getflightpath.com on a mobile phone).
Basically what happens is instead of 2 columns, the page becomes single-columned, and we switch to fp_mobile_template.php. That is to say, there are some code changes that take place, and we also use a
different PHP template file & additional css file.
I just look at the user agent coming back from the browser to decide. At the moment, this isn't really able to be overwritten, but that is something I'd like to have in a future release.
Yes, it's actually part of the "classic" theme (fp_mobile_template.php), and switching to mobile presentation should be automatic.
If you just visit your site on a mobile phone, it should work automatically (or visit the demo site on getflightpath.com on a mobile phone).
Basically what happens is instead of 2 columns, the page becomes single-columned, and we switch to fp_mobile_template.php. That is to say, there are some code changes that take place, and we also use a
different PHP template file & additional css file.
The logic for deciding if its a mobile device is in /includes/misc.inc:
http://getflightpath.com/api/flightpath/includes!misc.inc/function/fp_sc...
I just look at the user agent coming back from the browser to decide. At the moment, this isn't really able to be overwritten, but that is something I'd like to have in a future release.