Getting started
Admin location
Under Core: Orravo Core, OOnboard. Standalone (without Core): a top-level OOnboard menu at admin position 31.
Tabs inside the single OOnboard screen: Dashboard, Flows, Builder, Checklists, Triggers, Analytics, Settings.
Minimum config: build your first flow
- Create a flow: OOnboard, Flows, Add Flow. Give it a title and set Status to Draft.
- Add steps in the builder: pick step types from welcome, question (text/radio/checkbox/select), screen (static content), registration gate, quiz branch, completion.
- Set flow options: Show progress bar, Allow back navigation, Require login, Restrict to role, Completion redirect URL.
- Add completion actions (optional): assign role, award XP (OEngage), award badge, subscribe to OMailer list, fire webhook.
- Publish the flow.
- Embed it: paste
[oonboard id="5"]into a page, or use the OOnboard Flow Gutenberg block.
Trigger an automatic flow
Use OOB_Triggers to launch a flow on registration, role change, or first login. Or call manually:
phpif ( function_exists( 'oob_queue_flow' ) ) {
oob_queue_flow( 5, $user_id );
}Smoke test
- Log out and visit a page containing the shortcode.
- Step through the flow.
- Open OOnboard, Analytics and confirm step views and completion are recorded in
wp_oob_events.

