Documentation

Everything you need to add comments to your website.

Getting Started

  1. Create an account and verify your email address.
  2. Go to My Sites and register your website domain.
  3. Copy the Site UUID shown on your site's dashboard.
  4. Add the embed code to your website (see below).

Basic Usage

Add these two lines to your HTML, just before the closing </body> tag:

your-website.html
<div id="dropcomments-container"></div>
<script src="https://dropcomments.net/embed.js"
        data-site-id="your-site-uuid"></script>

Replace your-site-uuid with the UUID from your dashboard.

Configuration

The embed script supports the following attributes:

Attribute Required Description
data-site-id Yes Your site's UUID, found on the site dashboard.
data-container No Custom container element ID. Defaults to dropcomments-container.

Custom container example

custom-container.html
<div id="my-comments"></div>
<script src="https://dropcomments.net/embed.js"
        data-site-id="your-site-uuid"
        data-container="my-comments"></script>

How It Works

  • Comments are loaded and stored per page URL, so each page on your site has its own comment thread.
  • Visitors can enter a name when commenting. If left blank, comments are posted as "Anonymous".
  • Built-in spam detection automatically blocks spam and flags suspicious comments for your review.
  • Manage all comments from your dashboard — approve, reject, or delete with one click.