Page 1 of 1

move language bar to left as not on all pages

Posted: Tue Jan 01, 2013 3:09 pm
by carinnovation
im using Black Joomla 2.5 template malitia
this comes with google type language bar which changes language.
but .as i only run the right hand bar on the home screen (which is the template default position) it does not work on any other pages ,i dont see any other way of changeing this to another position any help please?


the site is http://www.carinnovation.co.uk/

the template site http://www.qualityjoomlatemplates.com/b ... -template/

i can have a go at the code if some one can help or any one recommend a languge bar i can position.

Re: move language bar to left as not on all pages

Posted: Tue Jan 01, 2013 3:36 pm
by andypooz
As I understand it, you have the module appearing in the right module position which is only on the front page. You also want it appearing on the left module position on the other pages?
Go to Extensions->Module manager->New and choose the google translate type to create a brand new instance of the same module type. Position this in the left module position and to appear on all pages apart from the home page menu item.

Re: move language bar to left as not on all pages

Posted: Wed Jan 02, 2013 12:39 pm
by carinnovation
thanks for you reply andy
dont see any Module to change for it ??
to turn it on or off you do this via the template its self but no position avaliable ??

picture here
Image

the google translate seems to be buit in to the template and shows up in code as http://www.w3.org

cant see were to change in code from "right" to "left"
Image

Re: move language bar to left as not on all pages

Posted: Wed Jan 02, 2013 7:22 pm
by andypooz
I see it is not a module. It is part of your template. My advice is to select 'Hide' from your template and find a google translate module at extensions.joomla.org to place in your left column.
You could also write to the template designer and tell them about the problem with their template setup.

Re: move language bar to left as not on all pages

Posted: Thu Jan 03, 2013 4:08 pm
by imanickam
I would suggest following the suggestion from andypooz. The implementation would be more elegant and you have the flexibility to publish the module anywhere you want and hence you would have more control.


As mentioned by andypooz, the translation drop-down is not a module. Rather it is created by the following statement that is available in the file index.php that is located in the directory \templates\malita-fjt.

Code: Select all

	<?php if ($this->params->get( 'googletranslate' )) : ?>  <?php include "modules/googletranslate.php"; ?><?php endif; ?>
Notice that this statement is embedded within the div rightbar-rw.

Code: Select all

<div id="rightbar-w">
<!-- Tabs -->
<?php if ($this->params->get( 'jtabs' )) : ?><?php include "modules/jtabs-content.php"; ?><?php endif; ?>
<!-- END Tabs -->
    <div id="sidebar">
         <jdoc:include type="modules" name="right" style="jaw" />
    </div>
	<?php if ($this->params->get( 'googletranslate' )) : ?>  <?php include "modules/googletranslate.php"; ?><?php endif; ?>
    </div>
You could try to remove the code that shows the translation drop-down within the div leftbar-w.

Code: Select all

<div id="leftbar-w">
    <div id="sidebar">
        <jdoc:include type="modules" name="left" style="jaw" /></div>	
</div>
Note: If you edit the file, make sure to take a copy of the file.

Re: move language bar to left as not on all pages

Posted: Fri Jan 04, 2013 3:46 pm
by carinnovation
Thankyou both for your help

i have installed another language bar this works well and adjustable.and turned off the one built in template
great !
as here
http://www.carinnovation.co.uk/

i only use IE but guess it works well with others ?

thanks again