That should not be necessary, if you have the Standard zen cart manufacturers filter disabled.
Quote Originally Posted by perfumbg View Post
I have found solution but not sure if its right to bypass it that way...

In Your Template/sideboxes/tpl_dynamic_filter.php

somewhere line 132

HTML Code:
// Only display if standard zen cart category/manufacturer dropdown is disabled
  if (PRODUCT_LIST_FILTER == 0)
If you change it like this:

HTML Code:
// Only display if standard zen cart category/manufacturer dropdown is disabled
  if (PRODUCT_LIST_FILTER == 1)
It works as it should work.