Shopify Integration
  • 04 Oct 2024
  • 6 Minutes to read
  • Dark
    Light

Shopify Integration

  • Dark
    Light

Article summary

Overview

The following examples show how Zyler Go will look when you integrate it into your Shopify site. The next section explains the steps required to achieve this. These steps are supported by screenshots to help you get up and running.

Imagine your PLP on desktop looks something like the following:

After integrating Zyler Go, "Try On" buttons will then appear below the product:

These "Try On" buttons can be customized to match the brand of your website as you see fit. Upon clicking the "Try On" button for an outfit, the Zyler Go widget will be displayed in the bottom left of the window showing the user visualized in that outfit. For example:

On mobile, the widget will occupy the whole screen as can be seen below:

In both views, you are able to swipe vertically to view all your other outfits that are available for visualization.

As with the PLP, integrating Zyler Go on the PDP will add "Try On" buttons. Imagine your PDP on desktop looks like the following (before integrating Zyler Go):

After integrating Zyler Go, the "Try On" button will be displayed. You have the flexibility to decide the text, position and styling of these buttons as you see fit. In this example, these buttons appear under the "Buy it now" button on the PDP, as shown below:

As before, upon clicking the "Try On" button, the Zyler Go widget will be displayed with the outfit visualized on the user. For example:

On mobile once again, the widget will occupy the whole screen as can be seen below:

Integration Steps

There are three simple steps for integrating Zyler Go on Shopify:

  1. Including the Script
  2. Styling Using CSS
  3. Customizing your Theme

Step 1: Including the Script

Copy and paste the script as a "Custom Liquid" block in the "Footer" section of your website. To do this:

  1. Navigate to "Sales channels" -> "Online Store" -> "Themes".
  2. Click "Customize" on your current theme, as below:

  1. On "Home page", find the "Footer" section and click "Add section", as shown in the following:

  1. Here you need to add some custom code. Depending on your theme, this option could be called "Liquid" or "Custom Content". With the Dawn theme, you select "Custom Liquid", as highlighted in the image below:

  1. Click into the new Custom Liquid section created in the previous step and copy and paste the script below into the "Liquid code" textbox, replacing <partner-id> with your value from the Partner Portal.
<script partner-id="<partner-id>" src="https://www.zyler.com/js/go-integration/v1/index.js"></script>
  1. Optionally, set the padding on this block to 0. If you are using a paid theme, this is likely controlled with checkboxes to "Remove horizontal/vertical padding" further down in the block settings. If you are using a free Shopify theme, scroll down to "Section Padding" within the block and use the sliders to set the padding to 0, as below:

Step 2: Styling Using CSS

To style your "Try On" buttons, copy and paste the following CSS into the same section as the script, either above or below it. You can edit it to match the brand of your website as you see fit.

<style>
  .zyler-try-on-cta {
    width: 100%;
    background-color: white;
    cursor: pointer;
    position: relative;
    z-index: 2;
    border: 1px solid black;

    &:hover {
      background-color: #f0eff0;
    }
  }
</style>

Alternatively, if you are comfortable using DevTools and familiar with HTML, you can match the style of other buttons in your theme by inspecting elements. Look for the classes used on elements like "Add to Cart" and apply those to the class list of the "Try On" button. We will also be covering this later on in this document.

For example, in the Dawn theme, your button code would look like following:

<button class="zyler-try-on-cta zyler-hide button button--full-width button--secondary" data-outfit-handle="{{card_product.handle}}">Try On</button>

Paid themes may use classes such as those used in the snippet below:

<button class="zyler-try-on-cta zyler-hide btn btn--full btn--secondary" data-outfit-handle="{{card_product.handle}}">Try On</button>

Check the Shopify theme support for further guidance on your own theme.

Step 3: Customizing your Theme

The PLP and PDP need to be customized separately:

PLP Customization

Note

In these examples, the free Shopify theme "Dawn" is used. The names of the files being edited in each section may differ if you are using a paid theme.

  1. Navigate to "Sales channels" -> "Online Store" -> "Themes".
  2. Click "Customize" on your current theme.
  3. Click on the three dots in the upper right corner on the left menu of the screen and select "Edit code", as below:

  1. Here you need to use the search facility to find the file which represents your product card that appears on the catalog page. Paid themes may name this file "product-card.liquid" or "product-grid-item.liquid". In free Shopify themes such as Dawn, this file is called "card-product.liquid" and is listed inside of the snippets folder. Once you have located the correct file, click the pencil icon to edit it, as highlighted below:

  1. The next step is to find a suitable location within the product card file to put the button. You will likely need to experiment with different positions to see what works best for your theme. For assistance in finding the best location for the button in your specific theme, refer to the Shopify theme support to contact the theme creator. In paid themes you could try searching for product-description, description, product-information, information, or a similar identifier, where an element may contain it as the class, e.g. class="product-description". In our example, the button appears under the product price. With the free Shopify themes, this was achieved by searching for the word price where we were looking for the first occurrence of render 'price', as shown below:

  1. Now that you have found the location in the product card for the button code, here is when you need to paste in the code to allow you to "Try On" the outfits, subject to them being ready in the system. In order for the integration to know which outfit is being referred to, the Shopify Liquid variable corresponding to the handle is needed as the value for data-outfit-handle in the snippet below. In paid themes, this variable may be called product.handle, in free themes like Dawn, it is called card_product.handle. You can check for the correct name by examining the other variables in the file. The following snippet represents the button for Dawn, copy and paste this on a new line in the location found in the previous step, replacing any variables as required to work with your theme:
<button class="zyler-try-on-cta zyler-hide button button--full-width button--secondary" data-outfit-handle="{{card_product.handle}}">Try On</button>

The next image shows how the file looks for Dawn with the addition of the button code:

  1. Click "Save".

PDP Customization

Note

In these examples, the free Shopify theme "Dawn" is used. The names of the files being edited in each section may differ if you are using a paid theme.

  1. Navigate to "Sales channels" -> "Online Store" -> "Themes".
  2. Click "Customize" on your current theme.
  3. Access your PDP by using the dropdown in the top middle of the screen and navigate to "Products" -> "Default product", as below:

  1. Under "Template" on the left of the screen, find "Product information" and click "Add block", see the following screenshot:

  1. Here you need to add some custom code. Depending on your theme this block could be called "Liquid" or "Custom Content", but with the Dawn theme you select "Custom Liquid" from the list of blocks:

  1. Click into the new Custom Liquid block and copy and paste the following code into the "Liquid code" textbox:
<button class="zyler-try-on-cta zyler-hide button button--full-width button--secondary" data-outfit-handle="{{product.handle}}">Try On</button>
  1. As mentioned previously, you have control over the position, text and style of these buttons. Use the drag handle in the following image to rearrange your blocks as you see fit for your site. In the examples above, the button is positioned underneath the "Buy it now" button:

  1. Click "Save".

This completes the integration steps. Zyler Go is now part of your Shopify site.


Was this article helpful?