XF 2.2 Remove quick-reply message-cell--user only on thread_view template

Nicolas FR

Well-known member
Hello,

As title, how can i do that ?
I tried this but not works...
Less:
[data-template="thread_view"] {
    [data-template="quick_reply_macros"] {
        .message-cell .message-cell--user {display: none;}
    }
}
Thanks !

nb: if i use this code
Less:
[data-template="quick_reply_macros"] {
    .message-cell .message-cell--user {display: none;}
}
It removes the message-cell--user on quick update status too...
 
Solution
Do you mean this?

1612397179838.png

If so:
Less:
[data-template="thread_view"]
{
    .message--quickReply .message-cell--user
    {
        display: none;
    }
}
Top Bottom