Jump to content

User info block + Quick Search block merge into blockcart


Recommended Posts

Dear All,

Did anyone know how to merge the 2 block into blockcart to become a module ?

i would like to change the search textbox and button to smaller size and put it at top of blockcart then following by the user info block then only blockcart.

any help are very very appreciate :)

Link to comment
Share on other sites

It's very easy to do!
1. Uninstall the quicksearch module.(It's important!)
2. Find in modules\blocksearch\blocksearch.php line 19 and replace

function install()
   {
       if (!parent::install() OR !$this->registerHook('top') OR !$this->registerHook('header'))
           return false;
       return true;
   }


with

function install()
   {
       if (!parent::install() OR !$this->registerHook('leftColumn'))
           return false;
       return true;
   }


3. Install the module.
4. See the result.
Good luck!

Link to comment
Share on other sites

×
×
  • Create New...