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

# Shopify

> Learn how you can install Molin on your Shopify store with our official Shopify plugin.

export function OpenChatLink({message, autoSend = false, children}) {
  const handleClick = () => {
    window.Molin?.openChat?.({
      message,
      autoSend
    });
  };
  return <button type="button" onClick={handleClick} className="cursor-pointer text-[#601FEB] underline hover:text-[#8624FF]">
      {children}
    </button>;
}

Follow the video tutorial below to see a step-by-step guide on how to setup Molin for your Shopify store. Here's our official [Shopify plugin](https://apps.shopify.com/molin-ai).

<Info>Native AI actions are still under development for Shopify, please use our [Custom AI actions API](/apis/product-sync-with-schema-org) to enable Molin to execute tasks in the meantime.</Info>

<iframe width="672" height="378" src="https://www.youtube.com/embed/9pcplQSirRY" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen />

## Do you have issues adding the Molin AI script to your Shopify store?

No problem, in this old tutorial we will show you how you can add the script manually into your store.

1. Navigate to the publish page by following this link: [https://molin.ai/app/publish](https://molin.ai/app/publish)
2. Copy your script from the publish page
3. In your Shopify Dashboard, click on Online Store --> Themes --> Customize
4. Click on the `...` in the top left corner --> Edit code --> `theme.liquid`
5. In the `theme.liquid` file, paste your Molin script inside the `<head></head>` tag.

Here's an old video on how to do this:

<iframe width="672" height="378" src="https://www.youtube.com/embed/3G19oF7ljd0" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen />

If you need any help with our Shopify integration, then please contact us <OpenChatLink message="I have trouble adding Molin to my Shopify shop. Please connect me with an agent if they're online." autoSend={true}>here</OpenChatLink>.
