
Originally Posted by
wrickspam
Im having some problems with the alignment of the sidebox (dynamic filter)
I put it in sidebox left but it adds a random enter so my right box appears under the dynamic filter sidebox
Example of my problem
anybody know how to fix this ?

Managed to fix it;
i had the left column disabled in the settings (enabled it) and then disabled it for the categories where i didnt need that by using this code:
Code:
if ($this_is_home_page == true) {
$flag_disable_left = true;
$flag_disable_right = true;
}
if (in_array($cPath,explode(",",'670,671,660,657,658,661,653,652')) ) {
$flag_disable_left = true;
}
edit the cpath values with the values of cats where u want to disable the column
put in :
/httpdocs/shop/includes/templates/your_template/common/tpl_main_page.php
and its fixed :)