How the dataset+repeater works can show after publish?

I am facing an issue unable to live my dataset which link with Repeater, although I can preview nicely, but why after i pubblish the content wouldnt appear? Your kindnest help are much appreciated.
Thank you.

Hi!

First idea regarding your issue - not synced collection. I mean sandbox collection is filled and live is empty
Read about it here: CMS: Syncing Content Between Sandbox and Live Collections | Help Center | Wix.com

Second is permissions - set to quite strict rules.
Read about them here:
https://support.wix.com/en/article/how-to-set-permissions-for-a-database-collection

If this not help - plese post link to your site here, i can take a look

THANK YOU SO MUCH
Mikhail Spirin !!!

ITS WORKS!!!

Can you reactivate those two links above please? I am having the same issue. In Preview, my repeaters show all data collection info and when i look online, all the repeaters are totally empty.
Will much appreciated a fast response as WiX customer, thanks.

Hi Jeff, what was the solution for your issue as i am having exactly the same problem and the links above given by the support are now broken. Thanks!

@jimmydenis Make sure you sync your sandbox database to Live:


Also see: About Collection Permissions

hello Yisrael (Wix) please help me this is my site link https://www.catch-world.com/copy-of-example-5 is there any code for both filter option active simultaneously here is the code what i create, please correct it

import wixData from ‘wix-data’;

$w.onReady( function () {
//1000;write your page releted code here…
});

export function dropdown1_change_1(event) {
let searchbrand = $w(“#dropdown1”).value;
$w(“#dataset1”).setFilter(wixData.filter().contains(“districts” , searchbrand));
}

export function dropdown2_change(event) {
let searchbrand = $w(“#dropdown2”).value;
$w(“#dataset1”).setFilter(wixData.filter().contains(“services” , searchbrand));
}