• Resolved maria1101

    (@maria1101)


    Sorry for my bad English.

    Is it possible to disable the “delete all their comments” – option that shows up in “My content and settings” window?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support gVectors Support

    (@gvectorssupportmember)

    Hi @maria1101,

    1. You can hide the whole My Content and Settings” button. Navigate to Dashboard > Comment > Settings > Comment Form admin page, and enable the “Hide My Content and Settings” option in the “Comment Form components” section.

    More info: https://wpdiscuz.com/docs/wpdiscuz-documentation/settings/comment-form/#components

    2. You can also hide (via CSS) the delete button from the Activity tab. In this case, the users won’t see the delete button and delete the comments.

    For registered users:

    .wpd-delete-content.wpd-not-clicked {
       display:none !important;
    }

    For guests:

    .wpd-user-settings-button-wrap:first-child {
       display: none !important;
    }

    The whole activity tab can be hidden by using this CSS code:

    .wpd-wrapper .wpd-list-item.wpd-active {
       display: none !important;
    }

    All CSS codes should be added in the Dashboard > Comments > Settings > Styling admin page “Custom CSS code” textarea.

    Please don’t forget to delete all caches and press CTRL+F5(twice) in the frontend before checking.

    Thread Starter maria1101

    (@maria1101)

    WOW!

    Thank you very much! It works perfect.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘hide delete comments part’ is closed to new replies.