This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//marketingData Example | |
//vtexjs.checkout.orderForm.marketingData | |
//Example 1: GET UTMS FROM COOKIES OR EMPTY | |
utms = { | |
utmCampaign: (Cookies.get('IPS').indexOf('Campanha')!= -1 ? Cookies.get('IPS').split('Campanha=')[1].split('&')[0] : "" ), | |
utmMedium: (Cookies.get('IPS').indexOf('Midia')!= -1 ? Cookies.get('IPS').split('Midia=')[1].split('&')[0] : "" ), | |
utmSource: (Cookies.get('IPS').indexOf('Parceiro')!= -1 ? Cookies.get('IPS').split('Parceiro=')[1].split('&')[0] : "" ), | |
utmiCampaign: (Cookies.get('ISICI').indexOf('InternalCampaign')!= -1 ? Cookies.get('ISICI').split('InternalCampaign=')[1].split('&')[0] : "" ), | |
utmiPart: (Cookies.get('ISICI').indexOf('InternalPart')!= -1 ? Cookies.get('ISICI').split('InternalPart=')[1].split('&')[0] : "" ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
vtex.NavigationCapture.sendEvent('userContactInfo', { visitorContactInfo: ['[email protected]'] }); |
NewerOlder