> ## Knowledge Base Index
> Fetch the complete knowledge base index at: https://support.teeinblue.com/sitemap.xml
> Use this file to discover available pages before exploring further.
> Pure-Markdown content can be obtained by appending a '.md' suffix to the content URLs listed in the sitemap (without the trailing slash).

# How to setup Customization Image in your Klaviyo Email Template

The following Article will guide you to set up teeinblue's Customization Image in your Klaviyo Email Template.


### STEP 1. Locate the Template you want to edit.

In your Klaviyo Dashboard, you will find a lot of Templates there:

![Abandoned Cart Email](https://storage.crisp.chat/users/helpdesk/website/6085dc2a7293d800/image_h4ltnb.png)
In this particular case, I will use the Abandoned Cart Email Template as an example.

### STEP 2. Edit the Template.

Once you have chose your Template, click on the **Edit** button to begin editing.

![](https://storage.crisp.chat/users/helpdesk/website/6085dc2a7293d800/image_ksvini.png)

A new Page will open up, please click on `Edit Email` Button:

![](https://storage.crisp.chat/users/helpdesk/website/6085dc2a7293d800/image_82yykp.png)

### STEP 3. Locate the Row containing the Thumbnail Image

After you have clicked on **Edit Content**, a new Dashboard should appear.
You should begin to locate the Thumbnail Image there.

![Locating the Image](https://storage.crisp.chat/users/helpdesk/website/6085dc2a7293d800/image_k13bnj.png)

Please try navigate to: **Table > Cell Content > Image > Replace Image** 
Once you've located it, continue to click on the **Replace Image** button.

### STEP 4. Enter the scripts

The original scripts you see there should look like the following:

```
{% if item.product.variant.images.0.src %}{{item.product.variant.images.0.src}}{%else%}{{item.product.images.0.src|missing_product_image}}{%endif%}
```

![The original scripts](https://storage.crisp.chat/users/helpdesk/website/6085dc2a7293d800/image_19ettv7.png)

Try replacing it with the following scripts:

```
{% if item.product.properties|lookup:'_customization_image' %}{{ item.product.properties|lookup:'_customization_image' }}{%else%}{% if item.product.variant.images.0.src %}{{item.product.variant.images.0.src}}{%else%}{{item.product.images.0.src|missing_product_image}}{%endif%}{%endif%}
```

It should like this once you are done:

![Replacing the scripts](https://storage.crisp.chat/users/helpdesk/website/6085dc2a7293d800/image_yxr1ys.png)

Be sure to save your settings and you are good to go!

### STEP 5. Test your Settings

To see whether if the scripts work, simply click on the `Preview & Test` button:

![](https://storage.crisp.chat/users/helpdesk/website/6085dc2a7293d800/image_1554ila.png)

![Here are the results!](https://storage.crisp.chat/users/helpdesk/website/6085dc2a7293d800/image_14462v7.png)

|| After 10 minutes or so, depending on your setting, you should be able to receive an Abandoned Cart email

