> ## Documentation Index
> Fetch the complete documentation index at: https://lemonslice.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Shopify

> Learn how to deploy a LemonSlice agent to your Shopify page with minimal code.

Most of the files that Shopify uses to define themes are written in Liquid, Shopify's templating language. To embed a LemonSlice agent into your Shopify site, you'll need to edit the Liquid file that defines that layout of your page.

### Prerequisites

1. A LemonSlice Agent created on a paid plan
2. Some familiarity with Shopify's code editor

### Guide

<Steps>
  <Step title="Get an embed code">
    Visit the LemonSlice [agents platform](https://lemonslice.com/agents) to find your agent's embed widget. It should look something like this:

    ```javascript JAVASCRIPT theme={null}
    <lemon-slice-widget agent-id="AGENT_ID_HERE"></lemon-slice-widget>
    <script type="module" src="https://unpkg.com/@lemonsliceai/lemon-slice-widget"></script>
    ```

    Copy this embed code.
  </Step>

  <Step title="Open your Shopify code editor">
    <img src="https://mintcdn.com/lemonslice/ijSarkZGcrUvO2ND/images/admin.shopify.com_store_gekqgf-xd_themes_187775811953_editor(2).png?fit=max&auto=format&n=ijSarkZGcrUvO2ND&q=85&s=b0f50b3a74b508adfb4e2c715e928325" alt="Shopify admin page" width="2800" height="1800" data-path="images/admin.shopify.com_store_gekqgf-xd_themes_187775811953_editor(2).png" />

    In your Shopify editor, click the three dots (<Icon icon="ellipsis" />) at the upper left corner. Then, click "Edit code" to open your Shopify code editor.
  </Step>

  <Step title="Place your embed code in your layout file">
    1. In the side menu, navigate to the `theme.liquid` file inside your `layout` folder.
    2. Inside the \<body> tag, paste your embed code from step 1 before the first` <script>` tag.
    3. Then, save your file with <Icon icon="command" /> + S on Mac, or Ctrl + S on Windows.

           <img src="https://mintcdn.com/lemonslice/ijSarkZGcrUvO2ND/images/admin.shopify.com_store_gekqgf-xd_themes_187775811953.png?fit=max&auto=format&n=ijSarkZGcrUvO2ND&q=85&s=dc7254262e4c16534fb641caab82f25a" alt="Admin Shopify Com Store Gekqgf Xd Themes 187775811953" width="2800" height="1800" data-path="images/admin.shopify.com_store_gekqgf-xd_themes_187775811953.png" />
  </Step>
</Steps>
