How to Remove Website URL Field in Weebly Comment Section

How to Remove Website URL Field in Weebly Comment Section

The "Website" URL field in Weebly’s blog comment section might seem harmless, but it often invites spammy comments filled with suspicious or broken links. These links not only clutter your blog with low-quality content but can also damage your website’s reputation and affect SEO performance. Search engines may view repeated spam links as a negative signal, potentially hurting your site’s rankings. Weebly does not allow you to easily hide this field  but  here is a work around to hide this  by using a small piece of CSS code — no plugins or advanced coding required

By default, Weebly blog comment forms include a "Website" field. If you'd like to remove it to simplify the form or reduce spam, here's a simple CSS trick you can add to your theme.

🛠 Steps to Remove Website Field in Weebly

  1. Log in to your Weebly account.
  2. Click on Edit Site for the site you want to modify.
  3. Go to the Theme tab, then click Edit HTML/CSS.
  4. Under STYLES, open the main.less file or similar stylesheet.
  5. Scroll to the bottom of the file.
  6. Paste the following CSS code:
/*disable website field*/ 
input[name="website"],
label[for="commentWebsite"],
#commentWebsite {
  display: none !important;
}
  1. Click the blue SAVE button at the top-right corner.
  2. Click Publish to make your changes live.
  3. Visit a blog post to verify the Website field is hidden.

📋 What This Code Does

  • input[name="website"] – targets the website input field.
  • label[for="commentWebsite"] – hides the label text for the field.
  • #commentWebsite – hides the wrapper (if one exists).

📎 Share This Tip

Feel free to copy and share this code on your blog or website. It's a simple and effective way to clean up your Weebly comment section!



Tip: If you find this useful, leave a comment or share this post with other Weebly users.


Also check out

How to Use @followers in Facebook Page Comments to Boost Engagement

Previous Post Next Post

Advertisement

Advertisement