If you’re using the GeneratePress theme for your WordPress website, you might have noticed the default comment form includes a URL field. This can sometimes feel unnecessary, especially if you’re not interested in allowing commenters to link to their websites.
Whether you’re aiming for a cleaner comment form or prefer to minimize the possibility of spammy links, removing the URL field is simple and can be done in a few ways.
Read More: How to Add Related Posts in GeneratePress Theme
In this article, we’ll walk you through three methods to remove the URL field from comments in GeneratePress.
Method 1: Using the GeneratePress Customizer Settings (If Available)
Some versions of GeneratePress might offer built-in options to customize your comment form, including removing unnecessary fields like the URL field. Here’s how you can check:
- Log in to your WordPress dashboard.
- Go to Appearance > Customize.
- Look for any options related to GeneratePress or Comments/Discussion.
- If the option is available, you should see a setting that allows you to hide or remove the URL field from the comment form.

This method is the quickest and easiest if GeneratePress offers it, but it might not be available in all versions. If you don’t see this option, don’t worry—there are other methods to achieve the same result.
Method 2: Using a Plugin (If Customizer Doesn’t Provide an Option)
If your version of GeneratePress doesn’t have a setting to remove the URL field, you can use a plugin like Disable Comments. This plugin gives you complete control over the comment fields and can easily remove the URL field.
Here’s how to use it:
- Install the Disable Comments plugin from the WordPress plugin repository. To do this, go to your WordPress dashboard, navigate to Plugins > Add New, and search for “Disable Comments.”
- Activate the plugin after installation.
- Once activated, go to Settings > Disable Comments in your dashboard.
- In the settings panel, select the option to disable the comment URL field.
This is a simple and non-technical solution for those who prefer using plugins to manage their website.
Method 3: Removing the URL Field Using Custom Code
If you’re comfortable working with code, removing the URL field manually can be the best option. You can achieve this by adding a small snippet of PHP code to your theme’s functions.php
file.
Here’s how to do it:
Option A: Using CSS to Hide the URL Field
If you just want to hide the URL field without technically removing it from the comment form, you can do so using custom CSS. This method only visually removes the field but still keeps it in the HTML code (which might still affect some user experience or spam filters).
- Go to your WordPress dashboard and navigate to Appearance > Customize.
- Open Additional CSS.
- Paste the following CSS code:
#url {
display: none;
}
- Publish the changes.
Option B: Using PHP to Completely Remove the URL Field
If you’re looking for a more permanent solution that removes the URL field entirely from the comment form, adding a small PHP function is the way to go. This will ensure the URL field is completely excluded from the comment form.
- Go to Appearance > Theme Editor in your WordPress dashboard.
- Open the functions.php file of your active theme (preferably a child theme to ensure that your changes aren’t lost after theme updates).
- Add the following PHP code at the end of the file:
function remove_comment_url($fields) {
if (isset($fields['url'])) {
unset($fields['url']);
}
return $fields;
}
add_filter('comment_form_default_fields', 'remove_comment_url');
- Save your changes.
This code snippet hooks into WordPress’s comment form and removes the URL field completely. It’s a clean and effective way to ensure the field is no longer present.
Conclusion
Removing the URL field from comments in GeneratePress is an easy task, and you have several methods to choose from depending on your level of comfort with customization. Whether you prefer using the Customizer, a plugin, or diving into some custom code, you can streamline your comment form and make it more user-friendly.
If you’re looking for a hassle-free solution, the plugin method or CSS approach will work well. However, for those who want a more permanent and refined fix, adding the PHP code to your functions.php
file will remove the URL field entirely.
Each method gives you control over the appearance and functionality of your site’s comment section, ensuring that you can offer a clean and focused commenting experience for your users.