Skip to content

Commit 24d0d38

Browse files
committed
settings/analytics → settings/tracking
1 parent 79523b7 commit 24d0d38

9 files changed

Lines changed: 10 additions & 13 deletions

File tree

docs/concepts/deep-links/attribution.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Dub's powerful [attribution platform](/docs/concepts/attribution) lets you under
3939

4040
Then, you'll need generate a [publishable key](/docs/api-reference/authentication#publishable-keys) from your Dub workspace to track conversions on the client-side.
4141

42-
To do that, navigate to your [workspace's Analytics settings page](https://app.dub.co/settings/analytics) and generate a new publishable key under the **Publishable Key** section.
42+
To do that, navigate to your [workspace's Tracking settings page](https://app.dub.co/settings/tracking) and generate a new publishable key under the **Publishable Key** section.
4343

4444
<Frame>
4545
<img

docs/integrations/hubspot.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ Since HubSpot doesn't let you add a hidden field to the scheduling form, you sho
146146
<Step title="Generate your publishable key">
147147
Before you can track conversions on the client-side, you need to generate a publishable key from your Dub workspace.
148148

149-
To do that, navigate to your [workspace's Analytics settings page](https://app.dub.co/settings/analytics) and generate a new publishable key under the **Publishable Key** section.
149+
To do that, navigate to your [workspace's Tracking settings page](https://app.dub.co/settings/tracking) and generate a new publishable key under the **Publishable Key** section.
150150

151151
<Frame>
152152
<img
@@ -160,7 +160,7 @@ Since HubSpot doesn't let you add a hidden field to the scheduling form, you sho
160160
<Step title="Allowlist your site's domain">
161161
Then, you'll need to allowlist your site's domain to allow the client-side conversion events to be ingested by Dub.
162162

163-
To do that, navigate to your [workspace's Analytics settings page](https://app.dub.co/settings/analytics) and add your site's domain to the **Allowed Hostnames** list.
163+
To do that, navigate to your [workspace's Tracking settings page](https://app.dub.co/settings/tracking) and add your site's domain to the **Allowed Hostnames** list.
164164

165165
This provides an additional layer of security by ensuring only authorized domains can track conversions using your publishable key.
166166

docs/sdks/client-side-mobile/installation-guides/react-native.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import DubClientInstallVerify from "/snippets/dub-client-install-verify.mdx";
1212

1313
Before you get started, make sure you have the following:
1414

15-
1. Obtain your [publishable key](/docs/api-reference/authentication#publishable-keys) (`DUB_PUBLISHABLE_KEY`) from your [workspace's Analytics settings page](https://app.dub.co/settings/analytics).
15+
1. Obtain your [publishable key](/docs/api-reference/authentication#publishable-keys) (`DUB_PUBLISHABLE_KEY`) from your [workspace's Tracking settings page](https://app.dub.co/settings/tracking).
1616
2. You would also want to have your [custom domain](https://app.dub.co/settings/domains) (`DUB_DOMAIN`) handy as well.
1717
3. (Optional) If you plan to track conversions, make sure to [enable conversion tracking for your links](/docs/quickstart/server#step-1-enable-conversion-tracking-for-your-links).
1818

docs/sdks/client-side-mobile/installation-guides/swift.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import DubClientInstallVerify from "/snippets/dub-client-install-verify.mdx";
1212

1313
Before you get started, make sure you have the following:
1414

15-
1. Obtain your [publishable key](/docs/api-reference/authentication#publishable-keys) (`DUB_PUBLISHABLE_KEY`) from your [workspace's Analytics settings page](https://app.dub.co/settings/analytics).
15+
1. Obtain your [publishable key](/docs/api-reference/authentication#publishable-keys) (`DUB_PUBLISHABLE_KEY`) from your [workspace's Tracking settings page](https://app.dub.co/settings/tracking).
1616
2. You would also want to have your [custom domain](https://app.dub.co/settings/domains) (`DUB_DOMAIN`) handy as well.
1717
3. (Optional) If you plan to track conversions, make sure to [enable conversion tracking for your links](/docs/quickstart/server#step-1-enable-conversion-tracking-for-your-links).
1818

docs/sdks/client-side/features/click-tracking.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ This is the domain that you'll use for your short links on Dub.
3232

3333
<Step title="Allowlist your site's domain">
3434

35-
Then, you'll need to allowlist your site's domain to allow the client-side click events to be ingested by Dub. To do that, navigate to your [workspace's Analytics settings page](https://app.dub.co/settings/analytics) and add your site's domain to the **Allowed Hostnames** list.
35+
Then, you'll need to allowlist your site's domain to allow the client-side click events to be ingested by Dub. To do that, navigate to your [workspace's Tracking settings page](https://app.dub.co/settings/tracking) and add your site's domain to the **Allowed Hostnames** list.
3636

3737
<Frame>
3838
<img

dub-support.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"use strict";
33

44
const EMBED_URL =
5-
"https://app.dub.co/embed/support-chat?variant=bubble&context=docs";
5+
"http://localhost:8888/embed/support-chat?variant=bubble&context=docs";
66

77
const BUBBLE_SIZE = 100;
88
const PANEL_WIDTH = 580;
@@ -27,10 +27,7 @@
2727
"border:none;background:transparent;color-scheme:auto;" +
2828
"transition:width 0.2s ease,height 0.2s ease;";
2929

30-
const ALLOWED_ORIGIN = "https://app.dub.co";
31-
3230
window.addEventListener("message", function (e) {
33-
if (e.origin !== ALLOWED_ORIGIN) return;
3431
if (!e.data || e.data.type !== "dub-support-chat") return;
3532
if (e.data.isOpen) {
3633
iframe.style.width = Math.min(PANEL_WIDTH, window.innerWidth) + "px";

snippets/enable-conversion-tracking.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ First, you'll need to enable conversion tracking for your Dub links to be able t
1010
To enable conversion tracking for all future links in a workspace, you can do the following:
1111
To enable conversion tracking for all future links in a workspace, you can do the following:
1212

13-
1. Navigate to your [workspace's Analytics settings page](https://app.dub.co/settings/analytics).
13+
1. Navigate to your [workspace's Tracking settings page](https://app.dub.co/settings/tracking).
1414
2. Toggle the **Workspace-level Conversion Tracking** switch to enable conversion tracking for the workspace.
1515

1616
<Frame>

snippets/steps/allowlist-domains.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Then, you'll need to allowlist your site's domain to allow the client-side conversion events to be ingested by Dub.
44

5-
To do that, navigate to your [workspace's Analytics settings page](https://app.dub.co/settings/analytics) and add your site's domain to the **Allowed Hostnames** list.
5+
To do that, navigate to your [workspace's Tracking settings page](https://app.dub.co/settings/tracking) and add your site's domain to the **Allowed Hostnames** list.
66

77
This provides an additional layer of security by ensuring only authorized domains can track conversions using your publishable key.
88

snippets/steps/generate-publishable-key.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Before you can track conversions on the client-side, you need to generate a [publishable key](/docs/api-reference/authentication#publishable-keys) from your Dub workspace.
44

5-
To do that, navigate to your [workspace's Analytics settings page](https://app.dub.co/settings/analytics) and generate a new publishable key under the **Publishable Key** section.
5+
To do that, navigate to your [workspace's Tracking settings page](https://app.dub.co/settings/tracking) and generate a new publishable key under the **Publishable Key** section.
66

77
<Frame>
88
<img

0 commit comments

Comments
 (0)