I just migrated from Owncloud 10 to Nextcloud 12. My primary use for the system is for customer webdav backup. Although, in the future I will move towards more uses. My primary concern at the moment is that contacts bar at the top right, and how to get rid of it. I don’t want my customers seeing each other’s names, or logins. There has to be a way to disable, or remove this.
The contacts menu is not part of the contacts app!
opened 08:36AM - 25 May 17 UTC
closed 12:25PM - 18 Sep 17 UTC
enhancement
feature: contacts menu
Follow up of #4656:
- [ ] possibility to disable contacts menu from `config.p… hp`? 🤔
- [x] If username-autocompletion is disabled, the contacts-menu should never ever show local users:
<img width="640" alt="bildschirmfoto 2017-05-05 um 10 04 08" src="https://cloud.githubusercontent.com/assets/19711361/25737869/52248402-317a-11e7-8c90-8f578a32edbc.png">
- [x] Groups, which are excluded from sharing should not see local users at all:
<img width="195" alt="bildschirmfoto 2017-05-05 um 10 04 16" src="https://cloud.githubusercontent.com/assets/19711361/25737875/5b36b358-317a-11e7-8331-d10380e6e27d.png">
- [x] If sharing is restricted to users own groups, he should only see contacts from his groups:
<img width="338" alt="bildschirmfoto 2017-05-05 um 10 04 38" src="https://cloud.githubusercontent.com/assets/19711361/25737887/62d042e6-317a-11e7-8308-c895abf2088e.png">
We may also want to overthink the federation lookup-settings, since they could be also used for contacts-menu on user-side: 🤔 @schiessle
<img width="728" alt="bildschirmfoto 2017-05-05 um 10 08 29" src="https://cloud.githubusercontent.com/assets/19711361/25738249/471c60b4-317c-11e7-99ce-dd9735256284.png">
@ChristophWurst
The only way to hide this menu in Nextcloud 12 atm is to hide the CSS elements.
.remember-login-container {
display: none;
}
#contactsmenu {
display: none;
}
Disabling in config.php would of course be the better solution.
I removed the correct line from core/templates/layout.user.php.
Thanks.
Just removed this lines (108), and it’s worked like a magic:
https://jpst.it/1ivvV