The Wix Events Event page consists of multiple tabs, each allowing for further customization of your event. Each tab includes one or more plugin slots designed for dashboard and/or dashboard menu plugin. The Event page includes the following tabs:
The Event page includes the following tabs:
The Event page's Features tab has 1 dashboard plugin slot.
Learn more about dashboard plugins and slots.
Events > Published or Drafts > Event > Features tab
This dashboard plugin slot is located in the features grid.
This plugin slot can host multiple plugins.
The plugins are displayed as the last items in the grid. They are shown in cards positioned next to each other and are ordered by date created, with the most recently created plugin displayed at the top.
Slot name | Slot type | ID | Interface |
---|---|---|---|
Additional features card | Dashboard plugin slot | 5566727b-e5a2-4a43-a26d-961aa4fe0898 | AdditionalFeaturesCardParams |
You can implement logic in your plugin using the Wix Events APIs:
The Event page's Guests tab for RSVP events has 1 dashboard menu plugin slot.
Learn more about dashboard plugins and slots.
Events > Published > Event (RSVP event) > Guests tab
This dashboard menu plugin slot is located in the more actions menu in the Guests tab.
This menu plugin slot can host multiple plugins.
The plugins are displayed vertically and ordered by date created, with the most recently created plugin displayed at the top.
Slot name | Slot type | ID | Interface |
---|---|---|---|
RSVP guest items bulk more actions menu | Dashboard menu plugin slot | f35dc417-bb7b-41c6-af99-c5a86c60f54a | RSVPGuestItemsBulkMoreActionsMenuParams |
You can implement logic in your plugin using the Wix Events APIs:
The Event page's Guests tab for ticketed events has 1 dashboard menu plugin slot.
Learn more about dashboard plugins and slots.
Events > Published > Event (ticketed event) > Guests tab
This dashboard menu plugin slot is located in the more actions menu in the Guests tab.
This menu plugin slot can host multiple plugins.
The plugins are displayed vertically and ordered by date created, with the most recently created plugin displayed at the top.
Slot name | Slot type | ID | Interface |
---|---|---|---|
Tickets guest items bulk more actions menu | Dashboard menu plugin slot | b9f7d36e-4035-4079-8781-4f78b4bec183 | TicketsGuestItemsBulkMoreActionsMenuParams |
You can implement logic in your plugin using the Wix Events APIs:
The Event page's Orders tab has 1 dashboard menu plugin slot.
Learn more about dashboard plugins and slots.
Events > Published > Event > Orders tab
This dashboard menu plugin slot is located in the more actions menu in the Orders tab.
This menu plugin slot can host multiple plugins.
The plugins are displayed vertically and ordered by date created, with the most recently created plugin displayed at the top.
Slot name | Slot type | ID | Interface |
---|---|---|---|
Order items bulk more actions menu | Dashboard menu plugin slot | 241f5aea-8e66-45b6-b7ed-6050100b6b29 | OrderItemsBulkMoreActionsMenuParams |
You can implement logic in your plugin using the Wix Events APIs:
The Event page's Overview tab has 1 dashboard plugin slot.
Learn more about dashboard plugins and slots.
Events > Published or Drafts > Event > Overview tab
This dashboard plugin slot is located at the bottom of the page.
This plugin slot can host multiple plugins.
The plugins are displayed at the bottom of the page and ordered by date created, with the most recently created plugin displayed at the top.
Slot name | Slot type | ID | Interface |
---|---|---|---|
Overview footer | Dashboard plugin slot | d2c6965a-7d50-47a0-881a-beb184135df3 | OverviewFooterParams |
You can implement logic in your plugin using the Wix Events APIs:
The Event page's Promotion tab has 1 dashboard plugin slot.
Learn more about dashboard plugins and slots.
Events > Published or Drafts > Event > Promotion tab
This dashboard plugin slot is located at the bottom of the page.
This plugin slot can host multiple plugins.
The plugins are displayed at the bottom of the page and ordered by date created, with the most recently created plugin displayed at the top.
Slot name | Slot type | ID | Interface |
---|---|---|---|
Promotion footer | Dashboard plugin slot | bc3b9b99-7a3a-4fb5-946f-078022277b6b | PromotionFooterParams |
You can implement logic in your plugin using the Wix Events APIs:
The Event page's Settings tab has 1 dashboard plugin slot.
Learn more about dashboard plugins and slots.
Events > Published or Drafts > Event > Settings tab
This dashboard plugin slot is located at the bottom of the page.
This plugin slot can host multiple plugins.
The plugins are displayed at the bottom of the page and ordered by date created, with the most recently created plugin displayed at the top.
Slot name | Slot type | ID | Interface |
---|---|---|---|
Settings footer | Dashboard plugin slot | c478b36b-7ce2-4564-afba-c2b0ca14bdea | SettingsFooterParams |
You can implement logic in your plugin using the Wix Events APIs:
The Event page's Tickets and Seating tab has 1 dashboard plugin slot.
Learn more about dashboard plugins and slots.
Events > Published or Drafts > Event > Tickets and Seating tab
This dashboard plugin slot is located on the right side of the page below Settings and discounts.
This plugin slot can host multiple plugins.
The plugins are displayed by date created, with the most recently created plugin displayed at the top.
Slot name | Slot type | ID | Interface |
---|---|---|---|
Tickets and seating right panel | Dashboard plugin slot | 80b95e22-26db-4063-a31f-76d4bb8797ba | TicketsAndSeatingRightPanelParams |
You can implement logic in your plugin using the Wix Events APIs:
Apps built by Wix pass parameters via dashboard slots for you to utilize in your plugin’s functionality. Learn how to interact with and retrieve parameters from the dashboard page.
Event ID.
Apps built by Wix pass parameters via dashboard slots for you to utilize in your plugin’s functionality. Learn how to interact with and retrieve parameters from the dashboard page.
Event ID.
Apps built by Wix pass parameters via dashboard slots for you to utilize in your plugin’s functionality. Learn how to interact with and retrieve parameters from the dashboard page.
Event ID.
Apps built by Wix pass parameters via dashboard slots for you to utilize in your plugin’s functionality. Learn how to interact with and retrieve parameters from the dashboard page.
Event ID.
Apps built by Wix pass parameters via dashboard slots for you to utilize in your plugin’s functionality. Learn how to interact with and retrieve parameters from the dashboard page.
Event ID.
Use this in the code for the dashboard plugin.
import React, { type FC } from 'react';
import { WixDesignSystemProvider, Button } from '@wix/design-system';
import '@wix/design-system/styles.global.css';
import { plugins } from "@wix/events/dashboard";
type PromotionFooterParams = plugins.EventsDetailsPage.PromotionFooterParams;
const Plugin: FC<PromotionFooterParams> = (props: PromotionFooterParams) => {
return (
<WixDesignSystemProvider features={{ newColorsBranding: true }}>
<Button onClick={() => ({
console.log(
`Event Id: ${componentParams.eventId}`
);
})}
>
Click me!
</Button>
</WixDesignSystemProvider>
);
};
export default Plugin;