> For the complete documentation index, see [llms.txt](https://help.shopifas.com/manual/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.shopifas.com/manual/internal/share/pages/integration/chat-tools.md).

# Chat tools

### Live Chat, Messaging & Help Desk

<details>

<summary>Shopify Inbox</summary>

Syntax: **open:Inbox**

Open chat box of Shopify Inbox and hide the default float button (FAB) to save space.

</details>

<details>

<summary>Tidi</summary>

Link: <https://www.tidio.com/>

#### 1. Open the Tidi chat and use the Navi+ menu option to access this function

```javascript
// Add a javascript function

function openTidi() {
  tidioChatApi.display(true);
  tidioChatApi.open();
}
```

<figure><img src="/files/O4X8niulqbECopVdNgXS" alt=""><figcaption></figcaption></figure>

<figure><img src="/files/TIaoVUKVrUmnsCJY7TRL" alt=""><figcaption></figcaption></figure>

#### 2. Move the Tidi chat icon upward to prevent it from overlapping with the menu

```javascript
// Call the functions:
if (document.readyState === 'complete') {
  naviman.waitElementToAddStyle("#tidio-chat-root", "margin-bottom: 50px !important;");
} else {
  window.addEventListener('load', function () {
    navimanwaitElementToAddStyle("#tidio-chat-root", "margin-bottom: 50px !important;");
  });
}
```

<figure><img src="/files/gy53S1wknfJdlIZCAJPl" alt=""><figcaption></figcaption></figure>

Set a 50px offset to move the Tidi chat up or down, as needed

</details>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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://help.shopifas.com/manual/internal/share/pages/integration/chat-tools.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.
