Tutorials

How to Set Up Plausible Analytics in 10 Minutes

L
Lauren Mitchell
· · 4 min read
Plausible Analytics setup guide — step-by-step in 10 minutes

This is part of our Google Analytics Alternatives Buyer’s Guide.

You’ve decided to try Plausible Analytics — good choice. Now let’s get it running on your website. The whole process takes about 10 minutes, and you don’t need any technical expertise.

I’ve set up Plausible on over 30 client sites in the past three years. Here’s the exact process I follow every time.

Three-step Plausible setup process: create account, install script, verify data

What You’ll Need

That’s it. No developer required, no complex configuration.

Step 1: Create Your Plausible Account

Head to plausible.io/register and create an account. Plausible offers a 30-day free trial — no credit card required.

Enter your email and choose a password. You’ll receive a confirmation email. Click the link to verify.

Privacy note: Plausible stores your account data in the EU and doesn’t share it with third parties. Their privacy policy is refreshingly short.

Step 2: Add Your Website

After logging in, Plausible will prompt you to add your first website. Enter your domain name — just the domain, without https:// or trailing slashes.

Choose your timezone. This determines how Plausible groups data by day — pick the timezone where most of your visitors are, or your business timezone.

Step 3: Install the Tracking Script

Plausible gives you a small snippet of code:

<script defer data-domain="yourdomain.com" src="https://plausible.io/js/script.js"></script>
Anatomy of the Plausible tracking script: defer, data-domain, and script.js explained

This script is:

Add this script to the <head> section of every page you want to track.

WordPress

The easiest method: install the official Plausible Analytics plugin.

  1. Go to Plugins → Add New
  2. Search for “Plausible Analytics”
  3. Install and activate
  4. Go to Settings → Plausible Analytics
  5. Enter your domain name
  6. Save changes

Done. The plugin handles everything automatically.

Alternative: add the script manually via your theme’s header.php or use Insert Headers and Footers.

Static HTML

Paste the script inside the <head> tag:

<!DOCTYPE html>
<html>
<head>
    <title>Your Page</title>
    <script defer data-domain="yourdomain.com"
            src="https://plausible.io/js/script.js"></script>
</head>
<body>...</body>
</html>

Other Platforms

Plausible has integration guides for Webflow, Squarespace, Wix, Shopify, Ghost, and Docusaurus. Check the full documentation for your specific platform.

Step 4: Verify Installation

After installing the script, visit your website in a new browser tab. Check your Plausible dashboard — you should see yourself as a visitor within a few seconds.

Not seeing data? Common fixes:

You can also check your browser’s Developer Tools (F12) → Network tab. Look for a request to plausible.io/js/script.js.

Step 5: Set Up Goals

Goals let you track specific actions: button clicks, form submissions, signups, purchases. This is where analytics becomes useful for decision-making.

Two types of Plausible goals: pageview goals track page visits, custom events track interactions

Pageview Goals

Track visits to specific pages — like a “Thank You” page after form submission.

  1. In Plausible, go to site settings → Goals
  2. Click “Add Goal” → select “Pageview”
  3. Enter the page path: /thank-you
  4. Save

Custom Event Goals

Track interactions like button clicks. First, create the goal in Plausible (site settings → Goals → Custom Event → name it Signup). Then trigger it from your site:

document.getElementById('signup-button')
  .addEventListener('click', function() {
    plausible('Signup');
  });

See Plausible’s custom events documentation for more examples.

Step 6: Enable Extensions

Plausible offers optional script extensions. Just change the script URL:

Track outbound links:

src="https://plausible.io/js/script.outbound-links.js"

Track file downloads:

src="https://plausible.io/js/script.file-downloads.js"

Both at once:

src="https://plausible.io/js/script.outbound-links.file-downloads.js"

See all available extensions in the script extensions documentation.

What Your Dashboard Shows

Plausible dashboard overview showing visitors, pageviews, top sources, and top pages

Once data flows in, your Plausible dashboard shows everything on one screen:

All on one screen. No endless menus, no learning curve.

Next Steps

  1. Wait 24-48 hours for meaningful data
  2. Set up goals for your most important conversions
  3. Enable email reports — weekly stats in your inbox (Settings → Email Reports)
  4. Invite team members if needed (Settings → People)
  5. Connect to Slack or other tools via the Plausible API

That’s it. Privacy-friendly analytics running on your site — no cookies, no consent banners, no complexity.

Not sure if Plausible is the right tool? Read our comparison of Plausible, Fathom, and Matomo to see how they stack up.

FAQ

Do I need a cookie consent banner with Plausible?

No. Plausible doesn’t use cookies and doesn’t collect personal data. It’s GDPR, CCPA, and PECR compliant without consent banners.

Will Plausible slow down my website?

No. The script is under 1 KB and loads asynchronously with defer. It has zero impact on Core Web Vitals. I’ve measured it on dozens of client sites — no difference in page speed.

Can I share my Plausible dashboard publicly?

Yes. Go to site settings → Visibility → make it public. You’ll get a shareable link. See Plausible’s own public dashboard as an example.

How accurate is Plausible compared to Google Analytics?

Often more accurate. Since Plausible doesn’t require cookies, it isn’t blocked by privacy tools as aggressively. You’ll likely see more visitors in Plausible than in GA4. Read Plausible’s analysis of data accuracy.

L

Lauren Mitchell

Web analytics consultant focused on privacy-first measurement strategies. 12+ years helping businesses turn data into decisions. Based in Lisbon, Portugal. Coffee enthusiast, half-marathon runner, and proud cat parent.

Related Articles