How to add language selection

Hi

I get the information from http://www.joomlart.com/forums/showt…light=language, however i want to display the language selection in Main Menu (refer to the picture below) not Top Menu (refer to the picture below), anyone know how to do that?

thanks you

http://static.joomlart.com/ima…/useguider.jpg

2 answers

Profile photo of JA Developer 0.00 $tone November 16, 2009
Public

Hi

Open app\design\frontend\default\jm_epidiotemplate\pag e\html\header.phtml file, find following code section:

Code:

<div class="quick-access">
	  <div class="shop-access">
	  	<strong><?php echo $this->getWelcome() ?></strong>
			<?php echo $this->getChildHtml('topLinks') ?>
	  </div>
	</div>
	<!-- MAIN NAVIGATION -->
	<div id="ja-mainnav" class="wrap">
		<?php echo $this->getChildHtml('topMenu') ?>
	</div>
	<!-- //MAIN NAVIGATION -->

and change to:

Code:

<div class="quick-access">
	  <div class="shop-access">
	  	<strong><?php echo $this->getWelcome() ?></strong>
			<?php echo $this->getChildHtml('topLinks') ?>
	  </div>
	</div>
	<!-- MAIN NAVIGATION -->
	<div id="ja-mainnav" class="wrap">
		<?php echo $this->getChildHtml('topMenu') ?>
               <div class="shop-tools">
		     <?php echo $this->getChildHtml('store_language') ?>
	      </div>
	</div>
	<!-- //MAIN NAVIGATION -->
#1

This question is now closed

Written By

Comments