Documentation
Feedback
Guides
VTEX IO Apps

VTEX IO Apps
Advanced components
Similar Products Variants
Official extension
Version: 0.1.1
Latest version: 0.1.1

The Similar Products Variants app returns similar products related to an SKU so users can select other colors or types of the same product.

{"base64":"  ","img":{"width":1661,"height":748,"type":"png","mime":"image/png","wUnits":"px","hUnits":"px","length":229011,"url":"https://user-images.githubusercontent.com/67270558/147780521-db76029b-c1fa-4627-a8bb-fa7485355424.png"}}

Before you start

  1. Set up similar products in your store’s Products and SKU. Access your store’s Admin and go to Products > Catalog > Products and SKU.
  2. In Products and SKU, in the column SKU, click on the desired SKU.
  3. In the field Similar (Alternative Products), type the product name you desire

{"base64":"  ","img":{"width":1483,"height":712,"type":"gif","mime":"image/gif","wUnits":"px","hUnits":"px","length":1393049,"url":"https://user-images.githubusercontent.com/67270558/147780337-ccc0d622-535e-47ce-9ede-d86f1d571546.gif"}}

  1. Then, In Products and SKU, in the column SKU, click on the one you have added in the last step.
  2. Go to the Images tab, and on the field Label, type a name to identify the image displayed in the thumbnail through the imageLabel prop of the Similar Products Variants app.

Now, follow the app’s configuration below to show the similar products you have set up.

Configuration

  1. Using VTEX IO CLI, install the app by running the following:

_10
vtex install vtex.similar-products-variants

  1. Add the vtex.similar-products-variants app to your theme's dependencies in the manifest.json

_10
"dependencies": {
_10
"vtex.similar-products-variants": “0.x”
_10
}

  1. Add the similar-products-variants block to the product template you desire, such as store.product, to display a similar product list.

_33
...
_33
"flex-layout.col#right-col": {
_33
"props": {
_33
"preventVerticalStretch": true,
_33
"rowGap": 0
_33
},
_33
"children": [
_33
"flex-layout.row#product-name",
_33
"product-rating-summary",
_33
"flex-layout.row#list-price-savings",
_33
"flex-layout.row#selling-price",
_33
"product-installments",
_33
"product-separator",
_33
"product-identifier.product",
_33
"sku-selector",
_33
+ "similar-products-variants",
_33
"product-quantity",
_33
"link-seller",
_33
"product-availability",
_33
"product-assembly-options",
_33
"product-gifts",
_33
"flex-layout.row#buy-button",
_33
"availability-subscriber",
_33
"shipping-simulator",
_33
"share#default"
_33
]
_33
},
_33
"similar-products-variants": {
_33
"props": {
_33
"imageLabel": "swatch"
_33
}
_33
},
_33
...

Prop nameTypeDescriptionDefault value
imageLabelStringThe identifier of the image thumbnail displayed for each variant. The identifier is set in the Admin’s Catalog. If the label does not exist or is not defined, the first image is used.null

Customization

To apply CSS customizations in this and other blocks, follow the instructions given in the recipe on Using CSS Handles for store customization.

CSS Handles
variants
title
var-wrap
img_wrap
img_wrap--is-active
img
See also
VTEX App Store
VTEX IO Apps