Reputation: 432
I want to hide the avatars in message board thread but I am not getting any such option in the interface of configuration. Can anyone suggest me how can I proceed further?
Upvotes: 0
Views: 1042
Reputation: 2193
You can easily remove the user profile picture from the message board, but if you remove this, then that will be deleted from entire liferay portal.
Please have a look at
/portal-web/docroot/html/taglib/ui/user_display/start.jsp.
Here find the class="avatar"
, this line is actually display image of the user profile picture.
So, here we have 2 approaches.
1) Remove the <img>
tag from the an above jsp.
2) If you want to remove from message board only, then write simple jquery which will hide the <img>
tag with class="avatar"
.
Upvotes: 1