XF 2.2 Enable view of message signature for guest users

sajal

Active member
We are using XFv2.2.6.

Is there any permission from the admin that allows guest users to see other users' "message signature" in the message? At the moment, it looks like that only logged-in users can see other user's message signatures.

Thanks in advance!
 
Solution
guest.jpg

To also allow in mobiles add this to extra.less

Code:
@media (max-width: @xf-responsiveNarrow)
{.message-signature
 {display: block !important;}
}
guest.jpg

To also allow in mobiles add this to extra.less

Code:
@media (max-width: @xf-responsiveNarrow)
{.message-signature
 {display: block !important;}
}
 
Last edited:
Solution
Top Bottom