Wishlist Notifications
Trigger notifications for certain Wishlist events.
Code Access
Subscribe to Wishlist Event
export function setup({ app }) {
// Add this below the other subscribers
app.events.subscribe("wk:wishlist:add:success", (event) => {
console.log(`${event.data.product.title} added to Wishlist`);
});
}Wishlist Events
Last updated