How to hide navigation tabs during registration, login and password reset?

The user management part of the Drupal portal comes with tabs to Register, Log-in and Reset Password. These are displayed on each people management page. I’d rather not display these tabs to users, since they duplicate the functionality of our navigation header.

However, I can’t find any way to remove them without modifying the PHP elements of the theme. Is there some way to manage the display of these navigation tabs without modifying the theme?

Dear @tpearson,

You can use TabTamer module and hide these tabs.

You can also use simple css to hide these dom elements using css file inside your theme.

Cheers,

Anil Sagar

2 Likes

I didn’t want to hide in CSS because it still gets indexed - users or search-engines may still find my unused login page. Tabtamer is perfect, it removes the HTML altogether. Thanks!