views:

135

answers:

1

Only apply the filter when there is filter=1 in the query string,

has anyone managed to do this kind of conditional filter with drupal?

+1  A: 

For some reason I think there's something wrong with your approach, but since there's no specifics, I can't really give my opinion.

Answering your question: you can try implementing hook_views_query_alter(), testing if the parameter filter equals 1 and, if so, removing the condition added by the filter.

Vinicius Pinto

related questions