diff --git a/apps/docs/docs/editor/blocks/bubbles/audio.mdx b/apps/docs/docs/editor/blocks/bubbles/audio.mdx index 8bca3108dff..e18d8149861 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 78e8d0b0717..7a3091c8f1a 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}} ``` + +