I’ve three content material sorts
- Article
- Primary Web page
- Customized Web page
All Content material sorts consists a area "field_interests" that’s referenced to a taxonomy_term "pursuits". Gadgets of taxonomy time period "pursuits" are
- sports activities
- songs
- motion pictures
NOTE : "field_interest" can have a number of values.
I’ve three consumer roles
- Athlete
- Singer
- Actor
I need to create a view through which
- Drupal Development Service Athlete can view Drupal Development Company content material whose "field_interests"==sports activities
- Drupal Development Service Singer can view Drupal Development Company content material whose "field_interests"==songs
- Drupal Development Service Actor can view Drupal Development Company content material whose "field_interests"==motion pictures
I’m assuming filter situation must be like this
( present consumer's function == athlete AND "field_interests"==sports activities ) OR ( present consumer's function == Singer AND "field_interests"==songs) OR ( present consumer's function == Actor AND "field_interests"==motion pictures)
I’m full beginner to drupal, I’ve seen comparable questions and I do not know the right way to use these solutions to my precise goal. Detailed clarification might be useful.
Thanks!