Invision Community 4: SEO, prepare for v5 and dormant account notifications Matt November 11, 2024Nov 11
Posted February 19, 20214 yr When any of the mods or myself have to change a thread name it will be displayed to users within the thread. Is there a way to remove this ? I looked around but couldn't find it. Edited February 19, 20214 yr by DanInMS added screenshot
February 19, 20214 yr Template: forums -> front -> topics -> topic Locate: <ul class='ipsTopicMeta'> {{if isset( $comment->metaData['comment']['moderation'] )}} {{foreach $comment->metaData['comment']['moderation'] as $modAction}} <li class="ipsTopicMeta__item ipsTopicMeta__item--moderation"> <span class='ipsTopicMeta__time ipsType_light'>{datetime="$modAction['row']['ctime']" short="true"}</span> <span class='ipsTopicMeta__action'>{$modAction['blurb']}</span> </li> {{endforeach}} {{endif}} {{if isset( $comment->metaData['comment']['timeGap'] )}} <li class="ipsTopicMeta__item ipsTopicMeta__item--time"> {$comment->metaData['comment']['timeGap']['blurb']}... </li> {{endif}} </ul> Remove the following from within that: {{if isset( $comment->metaData['comment']['moderation'] )}} {{foreach $comment->metaData['comment']['moderation'] as $modAction}} <li class="ipsTopicMeta__item ipsTopicMeta__item--moderation"> <span class='ipsTopicMeta__time ipsType_light'>{datetime="$modAction['row']['ctime']" short="true"}</span> <span class='ipsTopicMeta__action'>{$modAction['blurb']}</span> </li> {{endforeach}} {{endif}} Keep in mind that will also remove any other moderation action logs that this section might contain - not seen anything else myself, but there may be something else.
February 19, 20214 yr Quote Added an option to display inline moderation actions in between posts (if enabled) without the moderator name to non-moderators. Added a per-group option to hide inline moderation actions shown in between posts.