Add To WishList

When a customer adds an item to wish list, fire the following event

Copy

MagicPixel.recordEvent('mp_add_to_wishlist', {
    currency: 'INR', // can be hard coded to INR
    value: 123.33, // value of item added to wish list
    items: [{\
        item_id: '<item id>',\
        item_name: '<product name>',\
        item_sku: '<style id of the item>',\
        price: 1.23, // float price\
        quantity: 1, // integer quantity\
        item_category: '<item category>',\
        index: 1, // since this is view item, hard coded to 1\
    }]
});

PreviousView Wishlist NextSearch