Drupal View Filtering with ORed Criteria

I am trying to present a Drupal view that shows the nodes where the user's email address is displayed in one of the two CCK text boxes. Unfortunately, this is not possible using the version of the Drupal Views version - there is no way to combine filtering criteria (other than ANDing them), and it also does not seem to be a way to make custom logic for filter settings ...

Is there an easy way to directly enter additional information into a specific View item WHERE? If not, can this be done differently?

+3
source share
1 answer

views_or. dev, .

hook_views_query_alter $query- > add_where(), . , WHERE, .

+3

Source: https://habr.com/ru/post/1733585/


All Articles