TheBigK Well-known member Aug 24, 2012 #1 I want to turn off the new post indicator. Is there any way to do that?
R ragtek Guest Aug 24, 2012 #2 Change template message and remove Code: <xen:if is="{$message.isNew}"><strong class="newIndicator"><span></span>{xen:phrase new}</strong></xen:if> or create an addon and set $message.isNew to falls Upvote 0 Downvote
Change template message and remove Code: <xen:if is="{$message.isNew}"><strong class="newIndicator"><span></span>{xen:phrase new}</strong></xen:if> or create an addon and set $message.isNew to falls
Chris D XenForo developer Staff member Aug 24, 2012 #3 Or the following if you want to avoid a template edit: Code: .message .newIndicator { display:none!important; } Upvote 0 Downvote
Or the following if you want to avoid a template edit: Code: .message .newIndicator { display:none!important; }
TheBigK Well-known member Aug 24, 2012 #4 Thanks Ragtek! Thanks Chris! I used !important and it worked Upvote 0 Downvote