WIX EVENTS CARDS PER ROW

I inserted the wix events for my site and I set the property layout of the Cards per row to 3 and another property that will allow to display the past and upcoming events. But I notice that there’s no option to limit how many rows I can only display. Is it possible to limit the event into 1 row only using Wix Code ?

Wix Events is a Wix app and not part of Wix Corvid.

You are much better suited going through Wix Support themselves.
https://support.wix.com/en/article/contacting-wix-support

Or simply reading the Wix Events support pages.
https://support.wix.com/en/wix-events/setting-up-wix-events

@givemeawhisky
I got this idea for a workaround. I connect the Event’s database to a dataset and use it in a repeater with a button.
Is it possible to navigate to each Event Details Page using the index or using the url of Event Page?
You can check out the link below:
https://leafarafael.wixsite.com/mysite/event-details/simpliciano-the-musical

The string after …/event-details/ can be seen inside the Event’s database under the column slug. It is auto generated base on the Title you put in the event.

$w.onReady( function () {
$w(“#dataset1”).onReady(() => {
$w(“#repeater1”).onItemReady(($item, itemData, index) => {
$item(‘#button1’).onClick(() => {
//SOMETHING GOES HERE
});
});

});
});

You only have access through these fields and certain fields can or can not be filtered and with only set filters etc.
https://support.wix.com/en/article/corvid-wix-events-events-collection-fields

1 Like

@givemeawhisky
Hey thanks for the link I found what I needed using link below:
https://support.wix.com/en/article/creating-a-custom-event-details-page