Show/hide navigation item depending on role of user in Drupal 8

208 views Asked by At

I'm looking for a method to show or hide a navigation menu item depending on if the user is logged in or not. How can I accomplish this with Drupal 8? Should this be done with CSS?

1

There are 1 answers

0
Djamel Korei On

You can do this using twig Template :

{% if logged_in %} 

  PASSED YOUR CODE HERE ..

{% endif %}