Re: Members, groups, forums link are not working after updating Buddypress to 1.2.7
De nada, glad you resolved the issue on your own, and a Happy New Year to you too
One way to change member list presentation without touching core file is by adding some tweaks below any other styling in your active theme’s style.css. Something like :
`ul#members-list li {
border: 1px solid #cccccc;
width: 110px;
height: 110px;
float: left;
margin: 0px 5px 5px 0px;
padding: 3px;
text-align: center;
overflow: hidden;
}
ul#members-list li img.avatar {
float: none;
padding: 3px;
margin: 0px 0px 5px 0px;
}
ul#members-list li span.activity,
ul#members-list li span.update,
ul#members-list li div.action {
display: none;
}`
I haven’t tested this so adjust to taste, but you get the idea …