Hello everyone,
Does anybody can help me to fix this?
Here is my situation:
I have many kinds of advertings and we always use diferent types of URL parameters for each ads. Just like theses examples:
- www.mysite.com?utm_source=123&utm_medium=123&utm_campaign=123
- www.mysite.com?utm_source=abc&utm_medium=abc&utm_campaign=abc
And also, my typeform is EMBEDED direct on my landing page.
So, my code was exactly this below, using data-transferable-url-parameters, and everything has been worked perfectly!!!
CODE THAT USED TO WORK:
- <div class="typeform-widget" data-url="https://form.typeform.com/to/fvaZ3gzb?utm_source=xxxxx&utm_medium=xxxxx&utm_campaign=xxxxx&utm_term=xxxxx&utm_content=xxxxx&typeform-medium=embed-snippet" data-transferable-url-parameters="utm_source, utm_campaign, utm_content, utm_term, utm_medium" style="width: 150%; height: 750px;"></div> <script> (function() { var qs,js,q,s,d=document, gi=d.getElementById, ce=d.createElement, gt=d.getElementsByTagName, id="typef_orm", b="https://embed.typeform.com/"; if(!gi.call(d,id)) { js=ce.call(d,"script"); js.id=id; js.src=b+"embed.js"; q=gt.call(d,"script")[0]; q.parentNode.insertBefore(js,q) } })() </script>
HOWEVER, now we have a new type of embeded code that is not transfering my URL parameters. The new code is this below.
- <div data-tf-widget="rerSUjxu" data-tf-iframe-props="title=Application Form - LAIOB & The University of Akron - Feb2023" data-tf-medium="snippet" data-tf-hidden="utm_source=xxxxx,utm_medium=xxxxx,utm_campaign=xxxxx,utm_term=xxxxx,utm_content=xxxxx" data-transferable-url-parameters="utm_source, utm_campaign, utm_content, utm_term, utm_medium" style="width:100%;height:600px;"></div><script src="//embed.typeform.com/next/embed.js"></script>
Can you guys help me to find the issue?