How to disable it?
Search your /conf/config.php for $Configuration['Conversations']['Moderation']['Allow'] = true;. If you find it, change true to false. If you do not find it, add $Configuration['Conversations']['Moderation']['Allow'] = false; to the config.
$Configuration['Conversations']['Moderation']['Allow'] = true;
true
false
$Configuration['Conversations']['Moderation']['Allow'] = false;
Thank you! It works.
Comments
Search your /conf/config.php for
$Configuration['Conversations']['Moderation']['Allow'] = true;
. If you find it, changetrue
tofalse
.If you do not find it, add
$Configuration['Conversations']['Moderation']['Allow'] = false;
to the config.Thank you! It works.