Remove fields in Comments Section

Posted in: Newspaper
Post count: 168

Hello, how do I remove fields? I know where to change the text in translator, but I’m looking to remove the “website” field altogether. How do I do that? https://rareparenting.com/vegan-superfoods-for-brain-health/

Post count: 21065

Hello Megan!

Unfortunately, we do not have any settings to remove a field from there, only the whole element.

Thank you!

Post count: 168

Hi Bettina,

I found the below code to remove the website field (placing it in functions.php). It was posted in various WordPress forums, however, it doesn’t seem to work with Newspaper.

//add_filter(‘comment_form_default_fields’, ‘website_remove’);
function website_remove($fields)
{
if(isset($fields[‘url’]))
unset($fields[‘url’]);
return $fields;
}

Can you suggest code that will work with this theme? Thanks!

Post count: 27744

Hello,

Could you please provide a screenshot of where you added the code and the code itself? The code seems to be working fine.

Thank you!

Post count: 48

Hi,
Is there any resolution regarding the option to remove the website field in the comment form?
It is important as it create links from user comments to external websites

Thanks
Yaron

Post count: 27744

Hello,

The only solution is the one provided above.

Thank you!

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