How do you remove the website field from the WordPress comments form without using a plugin?

Back in the good ol’ days, it was cool to have the “website” field in your WordPress comment form.

Although it’s not a required field, this is a sure-fire recipe for spam, not to mention it is just one more thing a user must think about filling out to engage with your content. So, these days as WordPress is used more on everyday websites rather than niche-specific blogs — it’s a wise move to go ahead and remove the website form field from the comments section.

Removing The Website Form Field From A WordPress Comment Form Using (functions.php)

Alright, so what we are going to do here is simply add a filter and place it at the bottom of your functions.php file. This file can be found in your main WordPress template directory. Here is the code:

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

That’s all there is to it.

The website field in your comments section will now be removed. On another note, quite a few plugins can do this for you, such as this one but, who needs another plugin.


Posted

in

by


  • The Power of Rate Limiting: Enhancing Website Traffic and Performance

    In the fast-paced digital landscape, where website traffic and user interactions are at an all-time high, ensuring optimal performance and security has become a critical concern for website administrators. One effective technique that can significantly improve both website traffic management and performance is rate limiting. Rate limiting is a method that controls the number of…

  • How do I Remove the “Save my name” Checkbox In WordPress?

    In WordPress, when users leave comments on your blog posts, they are often asked to provide their name, email address, and website. By default, WordPress includes a checkbox labeled “Save my name, email, and website in this browser for the next time I comment.” This checkbox allows users to have their information saved in cookies,…

  • How do you force SSL and fix mixed content with HTACCESS?

    So, you have a shiny new SSL certificate for your website, and now you need to force SSL, but you keep getting mixed content errors. This simple guide will consist of two parts and should get you up and running with a “green lock” in no time. Step 1 — You Need To Modify Your…

  • How do I reset all form fields using pure JavaScript?

    It doesn’t matter why you might want to add a reset form button for your users. It could be that the form has conditional logic, is super long, complex, or that it has form fields that are prone to user error. We will look at a straightforward way to add a form button to reset…

  • How do I create a simple news ticker using HTML and CSS?

    Alright, so you need some text, links, or images to scroll across your website from left to right. Some folks call this a “news ticker”, some call it a “text scroller” — we will stick with news ticker for the sake of keeping our references simple. Sure, you can make this happen with JavaScript but why complicate…

  • How do I make a textarea form field match an input form field?

    Have you ever wondered why the default font for a form textarea field is different when using a placeholder? The default fonts for all web forms are usually determined by the browser used, and technically, it is up to us to define what fonts or styles to display via our CSS. Here is how you…