07-14-2024 11:12 AM
Hi
Is there a way to disable the welcome screen and send message input and have the webchat initialize straight to the main flow when a user clicks on the widget to start the webchat?
Thanks
Solved! Go to Solution.
07-16-2024 07:28 AM
Hello again!
I have confirmed with the product team that the initialScreenConfig
parameter should provide the customization options you require. Specifically, setting enabled
to false
. Below is an example provided by the team:
SinchSdk.Chat.mount({
... // other configuration parameters
initialScreenConfig: { enabled: false }
});
Please let us know if you have any other questions. Thank you!
07-15-2024 07:20 AM - edited 07-16-2024 07:28 AM
Hello, thank you for reaching out!
The Web Chat SDK for Sinch Chat does have several configuration parameters that can be used to customize your solution. I will reach out to the product team to confirm, but the initialScreenConfig
parameter may provide customization options that are relevant to your issue.
Once the product team responds, I'll record any additional relevant information in a response to this post or in a direct message, depending on the content. Please let us know if you have any other questions.
Thank you again!
07-16-2024 07:28 AM
Hello again!
I have confirmed with the product team that the initialScreenConfig
parameter should provide the customization options you require. Specifically, setting enabled
to false
. Below is an example provided by the team:
SinchSdk.Chat.mount({
... // other configuration parameters
initialScreenConfig: { enabled: false }
});
Please let us know if you have any other questions. Thank you!
07-16-2024 11:46 PM
Thanks Sam, appreciate the assistance and solution.