diff --git a/examples/facebook_clickid.html b/examples/facebook_clickid.html
index 532ef89..0635f83 100644
--- a/examples/facebook_clickid.html
+++ b/examples/facebook_clickid.html
@@ -60,8 +60,6 @@
To edit: make changes to the input URL in the address bar and reload the pag
var mediaSource = {keys: ["inmedia"], defaultValue: "my_media_default_source"};
// Facebook clickid passthrough to af_sub2 outgoing parameter
var afSub2 = {keys: ["fbclid"]};
- // Facebook clickid passthrough to "fbclid" outgoing parameter
- var fbclid_out = {paramKey: "fbclid", keys: ["fbclid"]};
//Function is embedded on the window object in a global parameter called window.AF_SMART_SCRIPT.
//Onelink URL is generated
@@ -69,10 +67,7 @@ To edit: make changes to the input URL in the address bar and reload the pag
oneLinkURL,
afParameters:{
mediaSource: mediaSource,
- afSub2: afSub2,
- afCustom: [
- fbclid_out
- ]
+ afSub2: afSub2
}
})
diff --git a/examples/google_clickid.html b/examples/google_clickid.html
index d3f3880..06a6b56 100644
--- a/examples/google_clickid.html
+++ b/examples/google_clickid.html
@@ -60,8 +60,6 @@ To edit: make changes to the input URL in the address bar and reload the pag
// If a media source key is NOT FOUND on the link and NO default value is found, the script will return a null string
var mediaSource = {keys: ["inmedia"], defaultValue: "my_media_default_source"};
var googleClickIdKey = "af_sub4";
- // Google clickid passthrough to "gclid" outgoing parameter
- var gclid_out = {paramKey: "gclid", keys: ["gclid"]};
//Calling the function after embedding the code will be through a global parameter
//on the window object called window.AF_SMART_SCRIPT
@@ -70,10 +68,7 @@ To edit: make changes to the input URL in the address bar and reload the pag
oneLinkURL,
afParameters:{
mediaSource: mediaSource,
- googleClickIdKey: googleClickIdKey,
- afCustom: [
- gclid_out
- ]
+ googleClickIdKey: googleClickIdKey
}
})