DanInMS Posted February 19, 2021 Posted February 19, 2021 (edited) 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, 2021 by DanInMS added screenshot
Nathan Explosion Posted February 19, 2021 Posted February 19, 2021 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. DanInMS and usmf 2
bfarber Posted February 19, 2021 Posted February 19, 2021 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. Nathan Explosion 1
Recommended Posts