WooCommerce Integration
  • 25 Jan 2024
  • 2 Minutes to read
  • Dark
    Light

WooCommerce Integration

  • Dark
    Light

Article summary

Overview

The following examples show how Zyler Go will look when you integrate it into your WooCommerce site. The next section explains the simple steps required to achieve this.

Imagine your PLP on desktop looks something like the following:

After integrating Zyler Go, Try On buttons will appear below the "Add to basket" buttons:

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, a Try On button will appear under the outfit title:

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 two simple steps for integrating Zyler Go on WooCommerce:

  1. Including the Script
  2. Styling Using CSS

Note

The integration was developed and tested using the default themes and templates. Using custom or alternative themes and/or templates may not produce the expected results since class names may change. If you find that this does not work as expected, please contact us at api@zyler.com.

Step 1: Including the Script

To include the script on your site, copy and paste it into the "Footer" template:

  1. Navigate to "Appearance" -> "Editor" -> "Design" -> "Patterns" -> "Template Parts" -> "Footer".

  2. On the "Footer" block, add "Custom HTML" to the end of the "Footer".

    1. Click on the three dots on the "Footer" Element and select "Add After", as shown:

    1. On the new block, click on the "+" icon and select "Custom HTML" (see the image below):

  3. Copy and paste the following script into the new block, replacing <partner-id> with your value from the Partner Portal:

    <script partner-id="<partner-id>" platform="woocommerce" src="https://www.zyler.com/js/platform-integration/v1/index.js"></script>
    

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 {
        display: block;
        border: 1px black solid;
        border-radius: 2rem !important;
        padding: 0.5rem 1rem !important;
        margin: 0 !important;
        background-color: white !important;
        cursor: pointer;

        &:hover {
          background-color: #f0eff0 !important;
        }
      }

      .zyler-button-div {
        display: flex;
        justify-content: center;
        width: 100%;
      }

      .pdp-button {
        margin-top: 20px;
      }

      .add_to_cart_button {
        margin-bottom: 20px;
      }
    </style>
Note

The .add_to_cart_button selector here is specific to WooCommerce. The addition of space on this element is required for ensuring that the Try On button does not overlap other elements.

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


Was this article helpful?