delete the site box in the comments

Posted in: Newspaper
Post count: 5

Hello,
is it possible to delete the site box in the comments?

Post count: 22421

Hello,
You can add this code in your functions.php to remove the email requirement:

function disable_comment_url($fields) {
unset($fields['url']);
return $fields;
}
add_filter('comment_form_default_fields','disable_comment_url');

Thank you!

Post count: 5

Thank you!

Post count: 5

Another question:

IS IT POSSIBLE TO ADD A MESSAGE TO SAY COMMENT AWAITING MODERATION?

Post count: 20688

Hi,

There already is a message like that
https://www.screencast.com/t/7CP2dVUv
That message should be displayed as long as the user who comments is logged in, and the comments moderation is active here
https://www.screencast.com/t/RORAMLFr
If the user is not logged in, there will be no message displayed. That would be default WordPress intended functionality.

Thanks

Viewing 5 posts - 1 through 5 (of 5 total)
The forum ‘Newspaper’ is closed to new topics and replies.