Jump to content

[SOLVED] After upgrade to 1.5.5 Top Horizontal Bar on top of logo


rintro

Recommended Posts

Found, did and did.  At first it didn't work so I just moved the Top Horizontal bar to the bottom of the list in the position "Top of pages" and its looking proper now.  

 

Top of pages - 6 Modules  [This hook displays additional elements at the top of your pages] (Technical name:displayTop)

1 up.gif
 
Quick search block v1.2

Adds a quick search field to your website.

  2
 
Search engine keywords v1.0

Display which keywords have led visitors to your website.

   3  
 
Cart block v1.2

Adds a block containing the customer's shopping cart.

   4  
 
Pages not found v1.1

Display the pages requested by your visitors that have not been found.

   5
 
User info block v0.1

Adds a block that displays information about the customer.

   6
down.gif
Top horizontal menu v1.6

Add a new horizontal menu to the top of your e-commerce website.

 

 

 

 thanks so much! Solved!

Edited by rintro (see edit history)
Link to comment
Share on other sites

  • 1 month later...

Hello,

I had similar problem but shuffle modules positions doesn't work.

I had to edit file in modules/blocksearch/blocksearch-top.tpl and replace this:

<div class="input_search" data-role="fieldcontain">
<form method="get" action="{$link->getPageLink('search')|escape:'html'}" id="searchbox">
<input type="hidden" name="controller" value="search" />
<input type="hidden" name="orderby" value="position" />
<input type="hidden" name="orderway" value="desc" />
<input class="search_query" type="search" id="search_query_top" name="search_query" placeholder="{l s='Search' mod='blocksearch'}" value="{if isset($smarty.get.search_query)}{$smarty.get.search_query|htmlentities:$ENT_QUOTES:'utf-8'|stripslashes}{/if}" />
</form>
</div>
with this:
 
<div id="search_block_top">
<form method="get" action="{$link->getPageLink('search')|escape:'html'}" id="searchbox">
<p>
<label for="search_query_top"><!-- image on background --></label>
<input type="hidden" name="controller" value="search" />
<input type="hidden" name="orderby" value="position" />
<input type="hidden" name="orderway" value="desc" />
<input class="search_query" type="text" id="search_query_top" name="search_query" value="{if isset($smarty.get.search_query)}{$smarty.get.search_query|htmlentities:$ENT_QUOTES:'utf-8'|stripslashes}{/if}" />
<input type="submit" name="submit_search" value="{l s='Search' mod='blocksearch'}" class="button" />
</p>
</form>
</div>

 

Then everything back to normal.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...