> For the complete documentation index, see [llms.txt](https://docs.checklist.getalvis.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.checklist.getalvis.com/widget/hide-checklist-launcher.md).

# Hide checklist launcher

To hide the checklist launcher for a checklist, you have two options.&#x20;

1\. Add `hide_launcher: true` when identifying user:&#x20;

```javascript
window.Alvis("identify", "{{YOUR_UNIQUE_USER_ID}}", {
  hide_launcher: true
});
```

Then, you can manually show the checklist as a popup:

```html
<button onclick='window.Alvis("show_checklist");'>
  Onboard Me
</button>
```

2\. Go to a checklist page, for the targeting setting "Which page should we show this on?", choose "Do not show on any page".&#x20;

<figure><img src="/files/KLsTEwAgwl6ZkMPBUa96" alt=""><figcaption><p>Do not show on any page</p></figcaption></figure>

This way, you **cannot** manually show the checklist as a popup; however, you can [embed the checklist inside you app](/widget/embed-checklist-on-a-page.md).
