jokerstar Posted October 21, 2013 Share Posted October 21, 2013 Hello I am new here, I would like ask you how can I configure checkboxes in filter (blocklayered navigation) to line? See images pls. Link to comment Share on other sites More sharing options...
vekia Posted October 21, 2013 Share Posted October 21, 2013 hello your store is online now? if so, can you please share url? Link to comment Share on other sites More sharing options...
jokerstar Posted October 21, 2013 Author Share Posted October 21, 2013 yes but it is only default version, i am trying there some modifications and learning more about presta so url is: http://slovbunc.netau.net/prestashop/index.php?id_category=3&controller=category&id_lang=1 Link to comment Share on other sites More sharing options...
vekia Posted October 21, 2013 Share Posted October 21, 2013 thank you for the url! it's really helpful for me because i don't have any shop with default theme where this module is active add somewhere in global css this: #ul_layered_id_attribute_group_2 li {display:inline-block; width:100px; float:left;} effect: 1 Link to comment Share on other sites More sharing options...
jokerstar Posted October 21, 2013 Author Share Posted October 21, 2013 och great !! really thanks!! and if i want do same for other groups i must create new line for example #ul_layered_id_attribute_group_1 li {display:inline-block; width:100px; float:left;} or #ul_layered_id_attribute_manufacturer_0 li {display:inline-block; width:100px; float:left;} or is there some trick add it together? btw now I am working on layered navigation in center column and I am almost done. Link to comment Share on other sites More sharing options...
vekia Posted October 21, 2013 Share Posted October 21, 2013 everything depends on id of blocks and elements inside each of them it should work Link to comment Share on other sites More sharing options...
jokerstar Posted February 21, 2014 Author Share Posted February 21, 2014 (edited) Vekia, can you help me please with this issue? How can I swap this (check attachment)? In red rectangle is block layered and i want swap it with yellow rectangle it is probably breadcrumb. Simple I need breadcrumb in top od center column. The block layered is in hook which I created. link to my site is www.bunco.sk Edited February 21, 2014 by jokerstar (see edit history) Link to comment Share on other sites More sharing options...
vekia Posted February 22, 2014 Share Posted February 22, 2014 how you added layered navigation module to the center column? Link to comment Share on other sites More sharing options...
jokerstar Posted February 22, 2014 Author Share Posted February 22, 2014 how you added layered navigation module to the center column? I created new hook, which is in center column, then I move it from left column to myhook Link to comment Share on other sites More sharing options...
vekia Posted February 22, 2014 Share Posted February 22, 2014 in this case you have to modify a bit structure of your website. you have to move include breadcrumb file before the hook you created. Link to comment Share on other sites More sharing options...
jokerstar Posted February 22, 2014 Author Share Posted February 22, 2014 (edited) in this case you have to modify a bit structure of your website. you have to move include breadcrumb file before the hook you created. but how can i do that? this is code which specifies that hook it is in header.tpl <!-- Center --> {if $page_name !== 'index'} <div id="center_column" class=" grid_7 omega"> {hook h='displayMyNewHook'} </div> {/if} Edited February 22, 2014 by jokerstar (see edit history) Link to comment Share on other sites More sharing options...
vekia Posted February 22, 2014 Share Posted February 22, 2014 in this case you have to remove all instances of {if ($content_only == 0)} {include file="$tpl_dir./breadcrumb.tpl"} {/if} from each tpl file in your theme directorY then just paste this code before {hook h='displayMyNewHook'} in your header.tpl file Link to comment Share on other sites More sharing options...
jokerstar Posted February 22, 2014 Author Share Posted February 22, 2014 Well I thought about it and it looks like for many changes, so I tried move code (below) to category.tpl and it works like a charm! <!-- Center --> {if $page_name !== 'index'} <div id="center_column" class=" grid_7 omega"> {hook h='displayMyNewHook'} </div> {/if} Thanks for your help Vekia! Link to comment Share on other sites More sharing options...
Recommended Posts