Hi Team ,
I have configured below event164 (add to wishlist )in admin section :
I can see this event is firing also in the beacon :
However in reports the data is still 0 :
Can someone advise how can I fix this ?
Solved! Go to Solution.
Topics help categorize Community content and increase your ability to discover relevant content.
bunch of questions
Maybe the examples on the documentation help
// Send $9.99 USD in event1 using the events variable. Make sure the event type for event1 is Currency in Report suite settings
s.currencyCode = "USD";
s.events = "event1=9.99";
bunch of questions
Maybe the examples on the documentation help
// Send $9.99 USD in event1 using the events variable. Make sure the event type for event1 is Currency in Report suite settings
s.currencyCode = "USD";
s.events = "event1=9.99";
Yes, like @bjoern__koth said, both numeric and currency events you must pass a value to them so they know how to increment, otherwise 0 is assumed (you were absolutely correct about that Bjorn).
Since we can see the event in the beacon, this shouldn't need any additional tagging like linkTrackEvents (that is needed on action calls when you are setting the events manually, but not on page views). But everything looks good aside from missing a value passed to the event in this example.
Thank you for the inputs @bjoern__koth @Jennifer_Dungan
Yes I did pass the currency value in the event in the product string like this and now I can see report data :
As part of business requirement , we had to pass the product price in an eVar so did that also.
Thank you again..
perfect! that's what this community is all about
So glad that is now working for you (and yeah, I've done the whole pass as an event and as an eVar thing, no need to justify that.
Have you also considered passing the product price into the actual price, basically, this will multiply the price per product by the quantity (only on the actual purchase events) and that will get displayed as Revenue?
Views
Replies
Total Likes
Hi @Jennifer_Dungan the event164 is triggered to check the amount of product (actual product price *1) added to wishlist.
the quantity is always 1 since we either can add or remove from wishlist. So we do not send actual cart price (total cart price) in this wishlist action.
Shall we pass the total cart price also in the same beacon that passes the event164 ?
Views
Replies
Total Likes
Ah, if this is a wishlist, then the price and quantity won't do anything... those only work when in conjunction with the actual purchase event. (You don't want to track revenue before you actually make that revenue).
I wasn't sure which type of call this was, thanks for clarifying that this is a wishlist. And it's similar behaviours where I have used custom eVars and events as well.
@ambikaTewari_ATCI does that answer your question? Anything else we can help you with?