Note: This tutorial and its steps are based on a Wix Editor site. You can adapt the steps for a Wix Studio site by using the equivalent Wix Studio features.
This article describes how you can use Velo to add a Related Products area to a Wix Stores Product page. Throughout this article, we're going to use this site to illustrate the process. You can open the site in the Editor to work with the template. We're going to explain what we did in the sample site, the code we added to make it work, and give you guidance on how you can modify each step to do something similar on your site.
In our example we add a repeater inside a strip that we add to the Stores Product page. This serves as the Related Products area. We define related products in two ways:
The code then follows the following logic:
To recreate this functionality you'll need to have Wix Stores added to your site with some products. Once you add Stores to your site, you'll see pages (by clicking on Page Code in the Code sidebar) and collections (by clicking on Databases in the Code sidebar) automatically added to your site.
Note You may need to save or publish the site and refresh your browser to view the Stores collections in the Databases.
This is what some of the data in our site looks like:
In our example we don't work with the Collections collection, although it is in our sample site's store.
The relatedProducts collection has two fields: Product A and Product B, which are both reference fields. For each item, Product A values reference an item in the Products collection. Product B values then reference the product related to the item in Product A. Note that a product may appear in both the Product A or Product B fields. Note also that the field IDs for the two fields are productA
and productB
.
This is what the relatedProducts collection looks like:
You can see a copy of the data from the Collections, Products, and relatedProducts collections here. The Products and Collections collections are created automatically when you have a site with Wix Stores. Because these collections are read-only, you must use the Store Manager to create your product list.
In our example we use a repeater inside a strip as the Related Products area, and we set up the page with the following IDs.
To work with the method we use in this example, you'll need somewhere to display the products that relate to the product being displayed on the products page. Repeating elements like repeaters or tables work well, but you can also bind the related products data to other display elements.
loadRelatedProducts
is called from onReady. It gets the current product from the product page and passes that to the functions that find the related products. It then calls the functions to display the results.
Note: Throughout this example we use the new async/await JavaScript functionality.
Line 1-2: Import the modules we need to work with Wix Data and Wix Location Frontend libraries.
Lines 4-5: Call loadRelatedProducts
inside the page's onReady function. loadRelatedProducts
calls the functions that run the related product queries. It then calls the function to display the query results.
Note that we don't return the loadRelatedProducts
result promise from $w.onReady
. If we return a promise from $w.onReady
, it will delay the page load until the promise is resolved. By not returning the promise, we allow the page to load as fast as possible while the related products load in the background.
Line 9: Get the current product from the Product page.
Lines 10-12: Create the relatedProductResults
array from the results of the relatedProductsByTable
and relatedProductsByPrice
functions. Each of these functions accepts the current product as a parameter and returns an array of related products.
Lines 15-18: If the relatedProductResults
isn't empty, then first try to display the results of relatedProductsByTable
. If there are none, display the results of relatedProductsByPrice
.
If you want to use this exact scenario and code in your site, you may need to modify these items to match the ones on your site:
productPage
In our example we use two different methods to determine the related products. loadRelatedProducts runs both those methods and prioritizes the relatedProductsByTable results over the relatedProductsByPrice results. You may choose to have a different number of methods for determining the related products and could modify the code accordingly.
Regardless of your methods, you need to follow this basic flow:
relatedproductsByTable
finds all the products that relate to the current product, based on the relationships defined in the relatedProducts collection.
Lines 5-14: Run two parallel queries on the relatedProducts
collection. Each query returns the value in the productA or productB fields that relate to the currently displayed product. Use .include
to include all the data from the referenced field for the related product.
Lines 16-19: Use the spread operator and map function to build an array of related products from both fields. The spread operator flattens the results of both queries into one array. The map function extracts only the related product from the item object of the query results while removing the current product.
Note that the _ is a variable that represents the current element being processed in the array.
If you want to use this exact scenario and code in your site, you may need to modify these items to match the ones on your site:
relatedProducts
productA
productB
You can create any criteria you want for defining related products. If you choose to change the logic of this function, you will need to make sure that the relatedProductsByTable function returns the items object of the results of a wixData query.
relatedproductsByPrice
finds all the products that relate to the current product, based on a price range.
Lines 5-8: Run a query on the Products collection for any products whose price is within 20% of the price of the currently displayed product. Use .ne
to exclude the current product from the results.
Line 9: Return the .items
object of the query results.
You can create any criteria you want for defining related products. If you choose to change the logic of this function, you will need to make sure that the relatedProductsByPrice function returns the items object of the results of a wixData query.
showrelatedProducts
accepts the results of relatedProductsByTable
or relatedProductsByPrice
and truncates the results so only a maximum of four items are displayed. It then sets the onItemReady
function for the repeater, defines the repeater data, and decide whether to hide or display the repeater.
Line 2: Check if relatedProducts
contains data. If it does, run lines 3-6.
Line 3: Remove all but the first four results from relatedProducts
.
Line 4: Set the onItemReady
function for the repeater to relatedItemReady
. We'll define that function in the next step.
Line 5: Set the data
property for the repeater.
Line 6: Expand the repeater.
Line 7-8: If the relatedProducts
does not contains data, collapse it.
If you want to use this exact scenario and code in your site, you may need to modify these items to match the ones on your site:
relatedItemsRepeater
relatedItems
To work with the method we use in this example, you'll need somewhere to display the related products. Repeating elements like repeaters or tables work well, but you can also bind the related products data to other display elements. It's a good idea to check if there are related products, and if not, prevent those elements from appearing.
relatedItemReady
is the onItemReady function for the repeater. It's the function that runs when a new repeated item is created.
Lines 2-4: Bind each element in the repeater to the corresponding data for the product.
Lines 5-6: Set the onClick
property of the productImage
element to open the product page for the specific product.
If you want to use this exact scenario and code in your site, you may need to modify these items to match the ones on your site:
productImage
productName
productPrice
productImage
Depending on how you choose to display the related products, you'll need to set up those elements to display the product data. It's a good idea to make at least one element something your users can click that points to the product page for the related product.