react-messenger-customer-chat icon indicating copy to clipboard operation
react-messenger-customer-chat copied to clipboard

Prop to show a welcome message

Open belkocik opened this issue 3 years ago • 3 comments

Hello, what is the prop for showing a welcome message in the start? like here? image I tried the following and it only opens the chat.

  loggedInGreeting="You can chat with me at any time, I am here to help."
            loggedOutGreeting="You can chat with me at any time, I am here to help."
            greetingDialogDisplay="show"
            shouldShowDialog = "true"

belkocik avatar Jul 22 '21 20:07 belkocik

Hi @bubuq3 I believe the loggedInGreeting prop will do the trick.

<MessengerCustomerChat
  pageId="1895382890692545"
  appId="215971755540323"
  loggedInGreeting="You can chat with me at any time, I am here to help."
 />
截圖 2021-08-22 上午12 37 34

chentsulin avatar Aug 21 '21 16:08 chentsulin

Thank you for your reply. I mean when I enter the page, how to show this greeting instead of clicking on this messenger's bubble and there is this message.

belkocik avatar Aug 21 '21 17:08 belkocik

<MessengerCustomerChat
  pageId="1895382890692545"
  appId="215971755540323"
  shouldShowDialog
  loggedInGreeting="You can chat with me at any time, I am here to help."
/>

See if shouldShowDialog works in your case.

chentsulin avatar Aug 22 '21 08:08 chentsulin