Blocked URLs

Prevent your floating messages from appearing on specific pages. Blocked URLs work as the inverse of Target URLs — any page matching a blocked pattern will never show the message.

How It Works

When a visitor loads a page, the embed script checks the current URL against your blocked patterns. If any pattern matches, the message is hidden. Blocked URLs are checked after Target URLs, so if a URL matches both a target and a blocked pattern, it will be blocked.

Pattern Types

PatternMatch TypeExample
https://example.com/checkoutExact URLMatches only that exact page
https://example.com/admin/*WildcardMatches all pages under /admin/
/checkoutPath-onlyMatches the pathname on any domain

How to Set Up

  1. Go to Dashboard > Messages and create or edit a message
  2. Switch to the Targeting tab
  3. Find the Blocked URLs section
  4. Enter a URL or pattern and click Add (or press Enter)
  5. Save your message

Examples

Block checkout pages

https://mystore.com/checkout
https://mystore.com/cart

Block all admin pages

/admin/*
/dashboard/*

Block specific landing pages

https://mysite.com/landing-page-a
https://mysite.com/promo/*

Target URLs vs Blocked URLs

FeatureTarget URLsBlocked URLs
When emptyShow on all pagesNo pages blocked
LogicAllowlist (show only on these pages)Blocklist (hide on these pages)
PriorityChecked firstChecked second (overrides target URLs)