Hi,

is it possible to create two seperate filter handlers for the same field in views? Basically, I have a custom filter for a certain field. But now I need another filter that does something slightly different. So can I simply create two handlers? And if so, how do I do it?

Can I do something like:

'filter' => array(
    'handler' => 'views_handler_filter_numeric',
    'handler' => 'views_handler_filter_secondnum',
  ),

Comments

sourcesoft’s picture

I'm also interested in a solution here.

Pouya Sanooei