Now you need to decide where to actually show your welcome message to your users.
Using your website URL address and regular expressions, you can easily decide on which pages you want to show your messages.
How does the regex work:
\\/Produktberater
matches www.yourshop.com**/Produktberater**Show only on your start page: Sometimes you want to show a Welcome Message only on your startpage / homepage (e.g. https://chatchamp.com/).
The regex to set it up is the following: ^\\/$
If you have a dedicated product advisor page, you should definitely install it there.
Installing specific messages on different category pages can make a lot of sense, especially if you have multiple chatbots, covering multiple product categories.
<aside> ⚠️ We advise against showing your message and chat on your product detail pages. We have learned that users are already too far down the funnel and integrating the chat here actually hurts conversion. The welcome messages work best at the top of the funnel.
</aside>
Will be updated soon!