XF 2.0 Disable user's signatures in Conversation messages

Solooo

Member
Hi guys,
I want to delete user's signatures in Conversation messages. Please, tell me how can I do?
I tried to edit template message_marcros <xf:if is="$xf.visitor.Option.content_show_signature AND $user.Profile.signature AND !=$message.conversation_id"> but it's not effective.
Thanks very much.
 
extra.less is loaded in messages
42829043234_b70a5deef6_o.png
 
Yikers, that's an UIX theme, right? You will need to find out what their .message--conversationMessage equivalent part is or ask them.
Otherwise you could do sth like @EvilSS suggested and go to the theme control panel (Style properties) and edit the signature block there.
 
A bit of a late answer to an old thread....
It works in XF2.3.4 and removes various parts of the user details in Direct Messages, leaving only the Avatar and member name visible.

//Remove elements in Direct Messages
.message--conversationMessage .message-signature
{
display: none !important;
}
.message--conversationMessage .message-userTitle
{
display: none !important;
}
.message--conversationMessage .message-userBanner
{
display: none !important;
}
.message--conversationMessage .message-userExtras
{
display: none !important;
}


Tailor it to suit what you want to display
 

Similar threads

Back
Top Bottom