Enable Additional URL parameters configured in Brand Configuration only for a single delivery | Community
Skip to main content
Level 2
June 8, 2022
Solved

Enable Additional URL parameters configured in Brand Configuration only for a single delivery

  • June 8, 2022
  • 2 replies
  • 1073 views

Hi everybody,

we need to know if it is possible to enable tracking parameters previously configured on Brand Configuration, only for a single delivery without cancel those parameters from the Brand Configuration . Is it possible?

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by bisswang

Few things you could do:

  • add a condition on the delivery ID in the brand config to only reflect it for the requested delivery
    context.delivery.name == 'DM123'
  • or do a filter on the URL to check if a parameter was already defined on the URL and only append from branding if it's not yet there
    $(urlstring).indexOf('utm_source') === -1

2 replies

Adobe Employee
June 8, 2022

Hi @abr86 

You can add the tracking parameter manually in the delivery itself BUT the tracking parameters set at Brand level would add its own too. If the 2 set of tracking parameters don't conflict, it would work.

Another option is to create a 2nd Brand without any tracking parameter and you will select the new Brand for the delivery and do the above step nevertheless.

Hope this helps,

Thanks

Denis

bisswangAdobe EmployeeAccepted solution
Adobe Employee
June 15, 2022

Few things you could do:

  • add a condition on the delivery ID in the brand config to only reflect it for the requested delivery
    context.delivery.name == 'DM123'
  • or do a filter on the URL to check if a parameter was already defined on the URL and only append from branding if it's not yet there
    $(urlstring).indexOf('utm_source') === -1