How to delete the #comment link ?
http://prntscr.com/qcdabn
Hi @ruaconx11,
Please navigate to Dashboard > Comments > Settings > Comments List admin page the, make sure the "Hide comment link" is enabled in the "Comment components" section.
More info here: https://wpdiscuz.com/docs/wpdiscuz-documentation/settings/comment-list-settings/#components
Perfect ! Thanks you
- How to delete the " Most reacted comment", " Hottest comment thread" and Automatically sorts according to the latest comment.
Please navigate to Dashboard > Comments > Settings >Styling admin page, put the following CSS code in the "Custom CSS code" textarea:
#wpcomm .wpdiscuz-form-bottom-bar .wpdiscuz-fbb-left .wpdiscuz-stat.wpd-stat-reacted i, #wpcomm .wpdiscuz-form-bottom-bar .wpdiscuz-fbb-left .wpdiscuz-stat.wpd-stat-hot i {
display: !important;
} span.wpdiscuz-sort-button.wpdiscuz-date-sort-desc.wpdiscuz-sort-button-active {
display: none !important;
}
.wpdiscuz-sort-buttons :first-child{
display: none !important;
}
If you want to delete all the Discussion Statistic section, please navigate to Dashboard > Comments > Setiings > Comment Form admin page, enable the Hide "Discussion Statistic" section".
More info about the Discussion Statistic section can be found here: https://wpdiscuz.com/docs/wpdiscuz-documentation/settings/comment-form/#components
In case if you want to hide all sorting buttons, please navigate to Dashboard> Comments > Settings > Comments List admin page, and disable the "Show sorting buttons" option.
More info about the sorting buttons here: https://wpdiscuz.com/docs/wpdiscuz-documentation/settings/comment-list-settings/#sorting_buttons
Don't forget to delete all caches and press CTRL+ f5(twice) on the frontend before checking.