Shopify

ServiceBell can integrate with Shopify to allow you to engage visitors on your website.

To install ServiceBell on Shopify, you can use the instructions found on our 5 Minute Quick Start.

If you're interested in identifying logged in visitors on your Shopify site, you can use our Identify API.

You'll want to be sure to properly format the ServiceBell.identify() call to conform to Liquid syntax per the below example.

if ("{{ customer.email }}") {
  ServiceBell("identify", "{{ customer.email | downcase }}", {
    displayName: "{{ customer.name }}",
    email: "{{ customer.email | downcase }}"
  })
}

Last updated