The engine does not provide moderation, ban, or delete a user.

How then can you remove or ban bullies?

    1 answer 1

    As far as I remember LS, there is no admin box in it at all out of the box, so there are several ways to solve this problem:

    • Use paid third-party plug-ins, the catalog on the site is full of them;
    • Write your own plugins for this purpose;
    • Do it directly, through a query to the database. I would advise not to delete users and posts with comments, so as not to get problems, but to disable them, something like this:

      UPDATE prefix_user SET user_activate = 0 WHERE user_id = ID;

      UPDATE prefix_topic SET topic_publish = 0 WHERE user_id = ID;

      UPDATE prefix_comment SET comment_delete = 1 WHERE user_id = ID;