Integrate BlogBott with Your Shopify Store

Bring high-quality, SEO-friendly content to your Shopify storefront in minutes. A quick theme edit is all it takes.

SHOPIFY SETUP INSTRUCTIONS:

1

Go To Online Store → Pages → Add Page

Create a new page called Blog ( if you name it something else we will use this name later )

2

Add a Custom HTML block

In the editor, add a Custom HTML block, or if you see a content editor click the code icon to add a code block

Selecting the Custom HTML block in Shopify theme editor
3

Paste the BlogBott snippet

Drop the two-line code below into the code field and press Save.

<div id="blogbott.com_app"></div>
<script src="https://blogbott.com/aiblog.js"></script>

Save, Then go to your live page to verify it's working

4

Open your theme code

Go to Online Store → Themes, click the button on your live theme and choose Edit code.

Shopify themes screen showing the ⋯ menu
5

Open theme.liquid

In the file search bar, type theme.liquid and click the result. If you cannot find theme.liquid it may be in another file. contact me if you cant find the file where the

<link rel="canonical" href="{{ canonical_url }}">
tag lives.

6

Replace the canonical tag

Find the line that looks like this:

<link rel="canonical" href="{{ canonical_url }}">

…and replace it with:

{%- if page.title contains 'blog' -%}
  <!-- do nothing-->
{%- else -%}
  <link rel="canonical" href="{{ canonical_url }}">
{%- endif -%}

This skips the canonical tag on pages whose title contains "blog". If you named your page something else, change the word blog in the snippet accordingly.

Editing theme.liquid canonical tag

Save the file and you are done!

7

Save Everything & start publishing 🎉

Head to your BlogBott dashboard and generate your first AI-powered article—your new blog is live!

Need help? If you run into any issues with the Shopify setup, feel free to contact me for assistance!

Frequently Asked Questions (FAQ)

Will this slow down my storefront?

No. The script is loaded asynchronously after Shopify finishes rendering, ensuring optimal performance.

Can I place the snippet in a section instead?

Absolutely. Use the Custom Liquid block anywhere in your theme and paste the same code.

Is it compatible with Online Store 2.0 themes?

Yes—whether you're on Dawn or any OS 2.0 child theme, the snippet works the same.