Just follow these steps:
useOnboarding: “true” if you use the SDK
data-use-onboarding=”true” if you use the script
Example (with SDK):
Clice.init({
//... other props
useOnboarding: "true",
});
Clice allows you to create multiple onboardings for different types of users.
To tell Clice which onboarding to use for the currently logged-in user, you need to give the onboarding’s name as a prop. Here’s how to do it using our SDK:
import { Clice } from "clice-sdk-2604"
Clice.init({
//... other props
useOnboarding: "true",
onboardingName: "ONBOARDING_NAME"
});
For ONBOARDING_NAME, just use the name you assigned to the onboarding when creating it in your back office.
<aside> <img src="/icons/checkmark-line_gray.svg" alt="/icons/checkmark-line_gray.svg" width="40px" />
That’s it!
Clice will inject the onboarding into the bottom-left tooltip, including both the checklist and the getting-started video.
</aside>