主要为
This code worked for me before but i have not tested it with last 1.2 version. Please edit app/design/frontend/default/yourtemplate/template/page/switch/flags.html to
<?php if(count($this->getStores())>1): ?>
<div class="language-switcher">
<?php foreach ($this->getStores() as $_lang): ?>
<a href="<?php echo $_lang->getCurrentUrl() ?>"><img
src="<?php echo $this->getSkinUrl('images/flag_' . $this->htmlEscape($_lang->getName()) . '.gif') ?>"
alt="<?php echo $this->htmlEscape($_lang->getName()) ?>"/></a>
<?php endforeach; ?>
</div>
<?php endif; ?>Also you should check your page.xml from<block type="page/switch" name="store_language" as="store_language" template="page/switch/languages.phtml"/>to<block type="page/switch" name="store_language" as="store_language" template="page/switch/flags.phtml"/>Also please don’t forget to add corresponding flags to your skin/image directory