vinniex1 Posted April 28, 2014 Share Posted April 28, 2014 Is there an alternative to http://example.com/?systpl=us to load a different template. I would like to load different templates for different countries but don't want the '?systpl=' visible in the url. 0 Quote Link to comment Share on other sites More sharing options...
sentq Posted April 28, 2014 Share Posted April 28, 2014 you can use this code in your configuration.php for example. if ($country=="ES"){ $CONFIG['Template'] = "templateForSpain"; } elseif ($country=="US"){ $CONFIG['Template'] = "templateForUSA"; } you need to detect the visitor country first and change the IF statement a little 0 Quote Link to comment Share on other sites More sharing options...
vinniex1 Posted April 29, 2014 Author Share Posted April 29, 2014 Ok, thank you 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.