Jump to content

Moving language and currency bar to right column


Recommended Posts

Hi, sorry for opening 3rd time same thread, could you please help me in moving currency and language bars to right column, from header? I have tired all my best by modifying css files, transplanting modules etc. Something goes wrong. Can any one please put it to words which anyone can understand?

Link to comment
Share on other sites

I checked these modules and you need to modyfi blocklanguages.tpl file and blockcurrencies.tpl file.
I think problem is in

line. Change it to div content and try then (check ther modules, whats are placed in right or left side)
Link to comment
Share on other sites

  • 1 year later...
  • 1 year later...

Hello

I have the same problem in the language module. I get a solution:

Open modules/blocklanguages/blocklanguages.php

If you want to move language block to the right column change:

   function install()
   {
       return (parent::install() AND $this->registerHook('top') AND $this->registerHook('header'));
   }



for:


   function install()
   {
       return (parent::install() AND $this->registerHook('rightColumn'));
   }



And change:

   function hookTop($params)
   {



for:

   function hookRightColumn($params)
   {



Restart the module and that all lads!. Maybe the soluction for corrency block is similar.

Link to comment
Share on other sites

×
×
  • Create New...