Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions docs/excluding.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,14 @@ You can use our [official WordPress plugin](https://plausible.io/wordpress-analy
* You can also add a description to help you identify which device or location you have blocked

* You need to add one IP address at a time and it has to be the full IP address as IP ranges are not supported. You can block up to 30 different IP addresses per website

:::note Block both IPv4 and IPv6 if your device uses both
Most modern devices and networks have both an IPv4 address (e.g. `203.0.113.5`) and an IPv6 address (e.g. `2001:db8::1`). Your browser or network proxy may send visits using either one depending on the connection.

If you block only your IPv4 address but your browser sends a request over IPv6, that visit will still be recorded. To reliably exclude your traffic, check whether your device has both address types and add each one separately.

The **block your current IP** button captures whichever address your browser is currently using. Click it, then visit a site like [whatismyipaddress.com](https://whatismyipaddress.com) to check whether you also have a second address type, and add that manually if so.
:::

* Once added to the block list, we will start blocking traffic from that specific IP address within a few minutes

Expand Down
4 changes: 2 additions & 2 deletions src/theme/Footer/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ export default function Footer(props) {
<div className={styles.ctaBanner}>
<p className={styles.ctaText}>
Haven't tried Plausible yet?{' '}
<a href="https://plausible.io/register" onClick={() => window.plausible && window.plausible('CTA Click', {props: {location: 'Docs footer', button: 'Start free trial'}})} className={styles.ctaLink}>Start a free trial</a>
<a href="https://plausible.io/register" onClick={() => window.plausible && window.plausible('CTA Click', {props: {position: 'Bottom', type: 'Docs', button: 'Start free trial'}})} className={styles.ctaLink}>Start a free trial</a>
{' '}or{' '}
<a href="https://plausible.io/plausible.io" onClick={() => window.plausible && window.plausible('CTA Click', {props: {location: 'Docs footer', button: 'View live demo'}})} className={styles.ctaLink}>view the live demo</a>.
<a href="https://plausible.io/plausible.io" onClick={() => window.plausible && window.plausible('CTA Click', {props: {position: 'Bottom', type: 'Docs', button: 'View live demo'}})} className={styles.ctaLink}>view the live demo</a>.
</p>
</div>
<OriginalFooter {...props} />
Expand Down
Loading