The eCommerce Orders List page has a dashboard menu plugin slot. Slots are the placeholders in the UI for plugins. The slot ID is the value for the required extends
field when configuring the plugin in the App Dashboard.
Sales > Orders
To test your plugin on a site, do the following:
The eCommerce Orders List page features a dashboard menu plugin slot.
This dashboard menu plugin slot is located in the More Actions menu of the bulk actions toolbar. The bulk action toolbar appears when at least 1 product is selected.
Add a menu item that enables site owners to manage custom fees for orders. This can provide merchants with the ability to add or remove order fees according to your custom logic.
Use the following slot ID for the extends
property in your dashboard plugin's configuration in your app's dashboard:
slot ID: 3172f3e2-236f-41db-84ca-a744e5edfcd9
For example:
Important:
"iconKey"
.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.
This slot passes the following parameters:
Name | Type | Description |
---|---|---|
selectedIds | string[] | An array of IDs representing the orders that have been selected. |
uncheckedIds | string[] | An array of IDs representing the orders that have been unchecked. Applicable only when the "Select All" option was selected. |
isSelectAll | boolean | A boolean value indicating whether the "Select All" option was selected. |
total | number | The total number of orders that were selected. |
onSuccess() | ()=>Promise<void> | Callback that notifies the host after successful handling of the flow associated with the new menu item. |
This 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 bottom.
Slot | ID | Parameters |
---|---|---|
Bulk action toolbar's More Actions menu | 3172f3e2-236f-41db-84ca-a744e5edfcd9 | selectedIds , uncheckedIds , isSelectAll , total , onSuccess() |