Jump to content

How to remove Thread name change displayed to users


Recommended Posts

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.

Link to comment
Share on other sites

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...