# 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).


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.checklist.getalvis.com/widget/hide-checklist-launcher.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
