Hi. I understand that the only way to let users delete their own comments on this plugin is to allow them to view the "My Content and Settings" window. However, I also have noticed that this window has three tabs which show "Activity", "Subscriptions", and "Follows", as well as a link which sends an email that will allow them to "bulk delete and unsubscribe". As I do not want my users to subscribe or follow any comments or commentors, I would like to know if it is possible to remove the Subscriptions and Follows tabs, as well as the link and message which shows how to unsubscribe. Please let me know if this possible or if there is any other way in which I can allow users to delete their individual comments without offering or promoting subscription. Thanks.
Hi @soarbeyond,
I'm sorry, but there is no such option. You should use the following CSS code to hide it. Add the following CSS code in Dashboard > Comments > Settings > Styles > "Custom CSS code" textarea:
.lity-container .wpd-wrapper .wpd-list-item:not(.wpd-active) {
display: none;
}
If you'd like to remove the subscription option please read this doc:
User Subscription / Follow Users feature can be disabled form Dashboard > Comments > Settings > Subscription tab.
More info here: https://wpdiscuz.com/docs/wpdiscuz-documentation/settings/email-subscription/#user_follow
Hi. Thanks for your reply. The CSS did remove the top tabs but the link remains. Is there a code which can be used to remove the "Bulk management via email" link and the comment stating "Click the button above to get an email with bulk delete and unsubscribe links" or is there a way for me to change this in the core code. Thanks again for any help you can provide. Your time and attention to this matter is appreciated.
Hi@soarbeyond,
In this case you should use the following CSS code:
.wpd-user-email-delete-links-wrap {
display: none !important;
}