Preventing _mkt_trk cookie capture with a simple forms-level rule
Currently, if you want to dynamically prevent a form from capturing the _mkt_trk cookie value, you need to add a couple of JS lines to your form.
It should be feasible with rules as simple as visibility rules. Typically:
if Opt-in = "no", do not capture cookie value (the opt-in field being different from one organization to another).
Another use case would be:
- set field "cookie acceptance" as a hidden field, reading the value of the cookie set by the cookie banner
- have the form rule say if "cookie acceptance" = "No", do not capture cookie.
Not as good as a real munchkin-level deactivation but easier to set up for non JS-savvy marketers.
an additional, welcome feature would be to be able to combine the 2 logics :
if "cookie acceptance" = "No" or if Opt-in = "no", do not capture cookie in the form.
-Greg