Wix Events: Event Details Page

Note: Plugins for the Event Details page are currently in beta testing, and are available only for a closed group of developers. Please get in touch if you want to try this feature out.

Following are the placements, interfaces, and APIs that are available when building a Plugin for the Checkout Page.

Plugin placements

The following image shows slots in the Event Details page, into which users can add plugins.

Use the following placement objects when configuring your Plugin in the Dev Center:

Copy
1
{
2
"appDefinitionId": "140603ad-af8d-84a5-2c80-a0f60cb47351",
3
"widgetId": "14d2abc2-5350-6322-487d-8c16ff833c8a",
4
"slotId": "header"
5
}
Copy
1
{
2
"appDefinitionId": "140603ad-af8d-84a5-2c80-a0f60cb47351",
3
"widgetId": "14d2abc2-5350-6322-487d-8c16ff833c8a",
4
"slotId": "details"
5
}

Plugin interfaces

Use the following interfaces to integrate with the Plugin host.

EVENT

The EVENT interface provides data about the current event.

PropertyTypeDescription
eventIdStringThe ID of the event that is currently applied on the Plugin's host.

Code example

Copy
1
const {eventId} = $widget.props;

In your Blocks widget or in your app's server code, you may want to perform actions or implement logic that is dependent on the current event or related data.

You can do this using the Wix Events APIs (Velo and REST).

Was this helpful?
Yes
No