Hide Post Events
Unsolved
Technical Support
-
@baris is there a way to hide post events from registered users? I can't seem to find a setting for it.
We want to hide these events when a topic has been deleted or locked.
-
Yes or if you already have a plugin you can build it quite easily in
filter:topic.get
. Here is a sample hook to hide all lock events in a plugin.myPlugin.filterTopicGet = async (hookData) => { hookData.topic.events = hookData.topic.events.filter(ev => { // check some condition return ev.type !== 'lock'; }); return hookData; };
Copyright © 2024 NodeBB | Contributors