Free8 minutesintermediate

Understanding Unique Visitors

Learn how Zenovay identifies and counts unique visitors, and understand the difference between visitors, sessions, and page views.

visitorsuniquetrackingusersmethodology
Last updated: January 15, 2025

Understanding how unique visitors are counted helps you interpret your analytics accurately. This guide explains Zenovay's visitor identification methodology.

What is a Unique Visitor?

A unique visitor represents one individual person who visited your website during a selected time period, regardless of how many times they came back.

Key Concepts

TermDefinition
Unique VisitorOne person (or device)
SessionA group of interactions
Page ViewA single page load

Example

One person visits your site:

  • Monday: Views 3 pages (1 session)
  • Wednesday: Views 2 pages (1 session)
  • Friday: Views 4 pages (1 session)

Result for the week:

  • Unique Visitors: 1
  • Sessions: 3
  • Page Views: 9

How Visitors Are Identified

By default, Zenovay uses a first-party cookie:

  1. New visitor arrives
  2. Cookie is set with unique ID
  3. Cookie persists for 1 year
  4. Return visits are matched to same ID
Pro Plan

For privacy-focused tracking:

  1. Combines IP + User Agent + Day
  2. Creates daily anonymous ID
  3. No persistent tracking
  4. Slightly lower accuracy

Fingerprinting (Not Used)

Zenovay does not use device fingerprinting for privacy reasons.

Visitor Counting Rules

Within a Day

  • Same cookie = same visitor
  • Multiple sessions still = 1 unique visitor

Across Days

  • Same cookie across days = same visitor
  • New day doesn't reset visitor count

Within Date Range

When you select "Last 30 days":

  • Visitors are counted once for the entire range
  • Not sum of daily unique visitors

Why Sums Don't Match

Daily unique visitors sum won't equal monthly unique:

DayUnique Visitors
Day 1100
Day 2100
......
Day 30100
Sum3,000
Monthly Unique~800

This is because the same visitors return across multiple days.

Factors Affecting Accuracy

Things That May Overcount

FactorImpact
Cleared cookiesSame person = new visitor
Multiple browsersEach browser = new visitor
Multiple devicesEach device = new visitor
Private browsingEach session = new visitor
Cookie blockersMay create new IDs

Things That May Undercount

FactorImpact
Shared devicesMultiple people = one visitor
Corporate networksCached cookies
Bot filteringLegitimate traffic removed
Ad blockersSome may block tracking

Realistic Expectations

Unique visitor counts are estimates:

  • Generally 85-95% accurate
  • Better than IP-only counting
  • Worse than login-based systems

New vs Returning Visitors

New Visitors

Visitors without a previous cookie:

  • First time on site
  • Cleared cookies
  • New device/browser
  • Blocked cookies

Returning Visitors

Visitors with recognized cookie:

  • Have visited before
  • Cookie still present
  • Same device/browser

Viewing the Split

  1. Go to Analytics tab
  2. Look for "New vs Returning" metric
  3. View percentage breakdown

Visitor Identification Methods Compared

ProsCons
Most accurateRequires cookies
Cross-sessionPrivacy concerns
Industry standardCookie blockers
ProsCons
No cookies neededDaily resolution only
GDPR-friendlySame-day returns only
Privacy-focusedLower accuracy

IP + User Agent

Used as fallback:

ProsCons
No cookies neededShared IPs
SimpleVPNs affect
Mobile carrier NAT

Privacy Considerations

What's Stored

With standard tracking:

  • Unique visitor ID (anonymous)
  • First visit timestamp
  • Last visit timestamp
  • Visit count

What's NOT Stored

  • Personal information
  • Names or emails
  • Cross-site tracking
  • Browsing history elsewhere

GDPR Compliance

Cookie-based tracking requires consent in EU. Options:

  • Use cookie consent banner
  • Enable cookie-less mode
  • Anonymize IP addresses

See GDPR Compliance for details.

Cross-Device Tracking

Default Behavior

Zenovay treats each device separately:

  • Phone = 1 visitor
  • Laptop = 1 visitor
  • Same person = 2 visitors

User Identification

Scale Plan

Link devices via user ID:

  1. User logs in on phone
  2. User logs in on laptop
  3. Both linked to same user ID
  4. Counted as 1 visitor

Implementing User IDs

zenovay('identify', {
  id: 'user_123',
  email: 'user@example.com',
  plan: 'pro'
});

See User Identification for details.

Visitor Metrics in Reports

Daily Unique Visitors

Count of unique visitors each day:

  • Useful for daily trends
  • Each day counts independently

Period Unique Visitors

Total unique visitors for date range:

  • Visitors counted once
  • True unique count

New vs Returning Ratio

Percentage breakdown:

  • High new: Growing reach
  • High returning: Strong loyalty

Common Questions

Why does my unique count seem low/high?

Seems low:

  • Shared devices (families, offices)
  • Bot filtering removing traffic
  • Tracking not on all pages

Seems high:

  • Cookie clearing
  • Privacy browsers
  • Multiple devices

Why don't daily uniques sum to weekly?

Return visitors are counted once weekly but appear in multiple daily counts.

Can the same person be both new and returning?

Within a period, they're classified as returning if they had any previous visit.

How accurate is the count?

Generally 85-95% accurate. Use for trends rather than exact counts.

Best Practices

Consistent Measurement

  • Use same methodology over time
  • Don't change settings mid-analysis
  • Document any tracking changes

Relative, Not Absolute

  • Focus on trends and changes
  • Compare periods consistently
  • Don't obsess over exact numbers

Combine with Other Metrics

Visitors alone don't tell the whole story:

  • Add engagement metrics
  • Look at conversions
  • Consider revenue

Next Steps

Was this article helpful?