Have added a feature ticket to review turning off the hide functionality, but new parameters are not being added until stream storage behavior is implemented which won't be for awhile.
forge.joomlapolis.com/issues/8044
Yes, you can use the below to hide the links but it won't be pretty as it's not designed to be doing that.
Code:
.activityMenuItems .activityMenuItemHide {
display: none !important;
}
The below can be used for comments.
Code:
.commentMenuItems .commentMenuItemHide {
display: none !important;
}
To hide both you'd use the below.
Code:
.activityMenuItems .activityMenuItemHide,
.commentMenuItems .commentMenuItemHide {
display: none !important;
}
To get rid of the divider bar at the top you'll have to hide all of the divider bars, which the below should work.
Code:
.streamItemMenuItems .dropdown-divider,
.activityMenuItems .activityMenuItemHide,
.commentMenuItems .commentMenuItemHide {
display: none !important;
}