From 57e454008e85c197ad25c78f069d4a4b97d43c6a Mon Sep 17 00:00:00 2001 From: Baptiste Arnaud Date: Fri, 3 Nov 2023 15:44:00 +0100 Subject: [PATCH] :pencil: Add UTM params forwarding video tutorial --- .../docs/docs/editor/blocks/bubbles/audio.mdx | 4 ++ apps/docs/docs/guides/utm-in-results.md | 37 ++++++++++++------ apps/docs/static/video/utm-declaration.mp4 | Bin 1181567 -> 0 bytes apps/docs/static/video/utm-in-results.mp4 | Bin 4332569 -> 0 bytes 4 files changed, 28 insertions(+), 13 deletions(-) delete mode 100644 apps/docs/static/video/utm-declaration.mp4 delete mode 100644 apps/docs/static/video/utm-in-results.mp4 diff --git a/apps/docs/docs/editor/blocks/bubbles/audio.mdx b/apps/docs/docs/editor/blocks/bubbles/audio.mdx index 8bca3108d..e18d81498 100644 --- a/apps/docs/docs/editor/blocks/bubbles/audio.mdx +++ b/apps/docs/docs/editor/blocks/bubbles/audio.mdx @@ -22,6 +22,10 @@ The Audio bubble block allows you to play a recorded audio to your user. You can ## Troobleshooting +### The first audio bubble is not autoplaying + +That is expected. Most web browser have a policy that prevents audio from playing automatically. The user needs to interact with the page before the audio can be played. + ### The audio is not playing on iOS / Safari It most likely means that your audio file is malformed. Depending on where the file comes from, you need to make sure the encoding is done correctly. To check if the file is correctly encoded you should be able to download it and play the file locally on your computer. diff --git a/apps/docs/docs/guides/utm-in-results.md b/apps/docs/docs/guides/utm-in-results.md index 78e8d0b07..7a3091c8f 100644 --- a/apps/docs/docs/guides/utm-in-results.md +++ b/apps/docs/docs/guides/utm-in-results.md @@ -1,21 +1,32 @@ # Forward UTM parameters to a typebot -The UTM parameter name should be listed in the Variables dropdown of your flow you can create it on any variable dropdown: - - - -Then, if your typebot is launched with the declared UTM parameter. It should appear in the Results tab: - - - -## Forward UTMs to a redirect link +The UTM parameter name should be listed in the Variables dropdown of your flow you can create it on any variable dropdown. Then, if your typebot is launched with the declared UTM parameter. It should appear in the Results tab. Once you have saved the UTM values into variables like `utm_source` and `utm_value`. You can build a redirect URL in a [Redirect block](../editor/blocks/logic/redirect.md) with the same UTMs like this: ``` https://redirect-site.com?utm_source={{utm_source}}&utm_value={{utm_value}} ``` + +
+