> For the complete documentation index, see [llms.txt](https://docs.live2.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.live2.ai/integration/custom-store.md).

# Custom store

By embedding the Live2.ai JS script on your website, you gain access to various Live2.ai widgets to display embeds.

## Integration

Insert this code block in the \<head> of the page.

```
HTML:

<script src="https://cdn.live2.ai/assets/sdk/latest/live2ai-embed-sdk.js" defer/>
```

To Position the Live2.ai component in the desired location insert the following code block in the \<body> of the page.

<pre><code><strong>&#x3C;div>
</strong>      data-live2-embed="1"
      data-live2-picked-up="0"
      data-live2-loaded="0"
      data-live2-embed-id="ulpoohp7gw">
      &#x3C;div class="live2-container">&#x3C;/div>
&#x3C;/div>
</code></pre>

To put embed in Product Page

```
   <div>
      data-live2-embed="1"
      data-live2-picked-up="0"
      data-live2-loaded="0"
      data-live2-embed-id="p:ProductId"
      data-live2-team-id=""
      <div class="live2-container"></div>
    </div>
```

To put embed in Category pages

```
<div>
      data-live2-embed="1"
      data-live2-picked-up="0"
      data-live2-loaded="0"
      data-live2-embed-id="c:CollectionId"
      data-live2-team-id=""
      <div class="live2-container"></div>
</div>
```
