top of page
Crumpled Fabric

1

Display Related Items in WIX Dynamic Page

Click URL to copy

Nov 28, 2021

2 min read

WIX Ideas

Tags: Dynamic Page Velo by WIX Repeater Filter Dataset Dataset Filter

Hi 👋, welcome to another awesome tutorial on how to display related category (items) on WIX dynamic page. This method allows you to show items dynamically on a dynamic item's page related to the main content. It is applicable if you own a blog, real estate, shop, or other category where you need to show items that are related to the currently displayed item.


The following the steps will guide you on how to achieve this easily;


Step 1:

In your dynamic page, add a new dataset (Related Content dataset) and then configure by connecting it to the same database as the dataset initially in your dynamic page. Check the image below on how to add a dataset



Add dataset to WIX
Add dataset to WIX

Step 2:

Configure your dataset by connecting it to the same database as your dynamic page dataset.


NOTE:

You will need two datasets for this, one dataset for your dynamic page items and the other dataset to display the related items

Configure WIX Dataset
Configure WIX Dataset

Step 3:

Use this dataset to connect to your related item's repeater in your dynamic page. You can choose any position to have this repeater saved.



Related Items in my Dynamic Page
Related Items in my Dynamic Page

Step 4:

Add filter to your dataset under the filter section as shown in the image below;


Add filter to WIX dataset🤩
Add filter to WIX dataset🤩

You can also add a sort to the dataset to sort according to Title, Date Created, Date Uploaded and many more; See the image below;


Sort WIX Dataset😎
Sort WIX Dataset😎


This is all it takes to land yourself an amazing WIX feature of adding a related category or items in your WIX Dynamic page.


Please subscribe and watch more here 👉🏽👉🏽https://www.youtube.com/watch?v=_F1XKv1cUIU


Code



Leave a comment (0)

Thanks for leaving a comment🎉

kaan

kaan

Jun 4, 2023

wishlist and rating system

hello sir I try today 2 hours but not working if you want I pay money can you do this 2 ( wishlist and rating star) system please I send to you invaid

Reply

Admin

Waqas

Waqas

Apr 16, 2023

Triggered Email Backend

Hi mate please can you send email by backend

Reply

Walter Odibi

Walter Odibi

Admin

Hi Waqas, there isn't a backend code for this tutorial. The emails will be sent from the client-side.

Ghan

Ghan

Dec 29, 2022

Great Tutorial

Hi !

First of all, I want to thank you for your great tutorials, they helped us a lot with the coding.
But I still need your help, if you don't mind. I have based on Save Calculated Field using Wix Data Hooks Codes, to code my form . but the problem is I don't know why the code only reads the computation for "week2" computation and not the "weeks"

here is the code

I also did a separate column in the dataset where the chosen datas for both fields will be placed.

$w.onReady (() => {
$w("#Person").onChange(() => {
$w("#weeks").onChange(() => {
$w("#week2").onChange(() => {
let person = Number($w("#Person").value);
let weeks = Number($w("#weeks").value);
let week2 = Number($w("#week2").value);


$w("#totalLabel").show();

$w("#totalLabel").text = `"${String(weeks * Number(person))}페소"`; //DESIGN YOUR MESSAGE
$w("#totalLabel").text = `"${String(week2 * Number(person))}페소"`; //DESIGN YOUR MESSAGE

});
});
});

});

Reply

Walter Odibi

Walter Odibi

Admin

Hi there, thanks for your comment. I see why this is a problem. The onChange() function seems wrong in combination.

To combine onChangeFunctions use this method

$w("#Person, #weeks, #weeks2").onChange(() => {

//code here

});

Walter

Walter

Aug 8, 2022

More Details? Watch video

Hi, you can click here to watch the video https://www.youtube.com/watch?v=9bx7-nBeZ5c

Reply

Walter Odibi

Walter Odibi

Admin

Walter

Walter

Jul 11, 2022

For you

Reply

Walter Odibi

Walter Odibi

Admin

Walter Odibi

Walter Odibi

Apr 18, 2022

Awesome Feature

This tutorial shows you how to display views on your Wix repeater.

📺WATCH VIDEO HERE https://www.youtube.com/watch?v=Iz7SdaCSdXg

Reply

Walter Odibi

Walter Odibi

Admin

Walter Odibi

Walter Odibi

Apr 18, 2022

Amazing tutorial

This amazing tutorial will show you how to a comment section to your WIX dynamic page.

📺WATCH VIDEO HERE https://www.youtube.com/watch?v=f8-vJQFNZ_c

Reply

Walter Odibi

Walter Odibi

Admin

Walter Odibi

Walter Odibi

Apr 10, 2022

Great Feature🎉

This amazing tutorial will show you how to add a visitor view counter to your WIX dynamic page.

🚩MORE TUTORIALS https://www.wixgenius.com/wix-tutorials

Reply

Walter Odibi

Walter Odibi

Admin

RELATED TUTORIALS 🚀

Filter Wix Repeater with Dataset

Filter Wix Repeater with Dataset

Filter Wix repeater using dataset. No code needed!

bottom of page