Remove Website Input From Comment Form

Posted in: Newspaper
Post count: 58

How to remove website input field in comment section on blog post?

Post count: 132

Add the below code to functions.php

function disable_comment_field($fields) {
unset($fields[‘url’]);
return $fields;}
add_filter(‘comment_form_default_fields’,’disable_comment_field’);

Post count: 35449

Hi deuja14, you can do this in more ways, one of theme is provided above by Satwik also, you can check other methods here -> https://crunchify.com/how-to-remove-url-website-field-from-wordpress-comment-form/
Thank you!

Post count: 10

Hello @Calin and @Satwik I am using Newspaper X Theme with mobile theme of newspaper theme. i tried diffrent ways to remove URL section form my comment form but it only work on desktop version no any method is working for mobile plz help me.

Post count: 27744
Viewing 5 posts - 1 through 5 (of 5 total)
You must be logged in to reply to this topic.