Round 2: CSS to hide the Activity or Messages tabs on the group detail page

This should do the trick

.group-nav {
  .activity, 
  .messages {
    display: none !important;
  }
}
3 Likes