Wenn Device Abfrage (mit z.B. http://detectmobilebrowsers.com/) gleich Mobile ergibt,
soll ein eigenes Template verwendet werden.
Also 2 Templates; ein "normales" und eines wenn die Website mit einem mobilen Device aufgerufen wird.
Device bestimmen ist ja recht einfach, aber wie bestimme ich dann das Template?
Gruß, Michael
Inside template folder make simple if /else
If (mobile) include (mobile.php)
Else include (desktop.php)
Where mobile.ohp and desktop.php is modified index.php for mobile and desktop
oh yes, so simple and so clear, thank you very much!