I'm trying to build a php function that will switch to a specific site template if a condition is met. Anybody know how to do this?
For example:
if ($condition->isBlaBlaBla()) {
// code to switch template
}
If a user is browsing my site, and a specific condition is met, say browsing my site with firefox, i want to change the template automatically. Not for everybody...just for that one user.
