Sometimes you may want to replace the language selector with a set of text or graphical hyperlinks. Here's an example of how to do that:
<a href="index.php?action=setlanguage&returnto={CURRENTURLENCODED}&languagegroup=English">English</a> <a href="index.php?action=setlanguage&returnto={CURRENTURLENCODED}&languagegroup=Spanish">Spanish</a>
To use national flag images, place this HTML in your template (presumably the wrapper) where you want it, perhaps in the spot currently occupied by the language selector:
<a href="index.php?action=setlanguage&returnto={CURRENTURLENCODED}&languagegroup=English"><img src="{IMAGESURL}/flags/us.png" ></a>
<a href="index.php?action=setlanguage&returnto={CURRENTURLENCODED}&languagegroup=Spanish"><img src="{IMAGESURL}/flags/es.png" ></a>
<a href="index.php?action=setlanguage&returnto={CURRENTURLENCODED}&languagegroup=Spanish"><img src="{IMAGESURL}/flags/es.png" ></a>
Repeat for each language you have.