Laurent
(Laurent)
June 5, 2025, 4:41pm
1
Assistants are always displayed, whether subordinates are displayed or not. Is it possible to display assistants only when subordinates are also displayed?
Let's take an example :
In this view, the assistant is displayed, but if I go to parent i would like to see this :
Instead of this, I see that :
I hope this is clear enough
a.cox
(Anton Cox)
June 11, 2025, 6:14am
2
Hi @Laurent ,
If you use the Compact layout, please try adding the following custom CSS styles:
.poch-node__node-list-container .poch-node:has(.poch-node__group_assistant) .poch-node__assistants-container {
display: none !important;
position: absolute !important;
}
.poch-node__node-list-container .poch-node:has(.poch-node__group_assistant) .poch-node__lines svg path:first-child {
display: none !important;
}
For the Classic layout, the following code should work:
.poch-node__node-list-container .poch-node:has(.poch-node__group_assistant) .poch-node__assistants-container {
display: none !important;
position: absolute !important;
}
Laurent
(Laurent)
June 11, 2025, 7:10am
3
It works perfectly. Thanks !
1 Like