- TLC Home Home
- Discussions Discussions
- Documentation Documentation
- Knowledge Base Knowledge Base
- Education Education
- Blog Blog
- Support Desk Support Desk
06-29-2016 04:54 AM
Hi Tealiumeers,
Looking for some help with a custom tag implementation in my system. Tag loads an external JS (which is loading fine) but the external JS expects a custom array which contains the important information from the tag fire (account IDs, order IDs, etc.).
Usually mapping is a breeze, but due to the need to edit the custom template it's thrown me for a loop. Anyone have a clue? In the partner's UI I can see their tag fire and be recorded, but the affiliate, order, sub id are blank every time.
Thanks!
fs_aff_Source = Affiliate ID or Affiliate Name
fs_s_id = Sub ID (if your affiliates are networks)
fs_order_id = Your internal order ID
<!-- Fraudshield Tracking Code - Economist -->
<script>
var fsPassedParameters = {
"fs_aff_source": "REPLACE_ME_WITH_AFFILIATE",
"fs_s_id": "REPLACE_ME_WITH_SUB_ID",
"fs_order_id": "REPLACE_ME_WITH_ORDER_ID",
"fs_product_id": "Your company"
}
</script>
<script src="https://fraudshield.frb.io/api/tracker/[custom hash hidden]/conversions.js"></script>
<!-- Fraudshield Tracking Code End -->
Solved! Go to Solution.
06-29-2016 12:42 PM
If you can post your custom tag code, I can review it and provide some suggestions.
Thanks,
Adam
06-30-2016 05:05 AM
This is my latest attempt to get the variables to map from a JS extension, as someone else seemed to get working in another post:
//~~tv:20010.20140827
//~~tc: Tealium Custom Container
/*
Tealium Custom Container Notes:
- Add sending code between "Start Tag Sending Code" and "End Tag Sending Code".
- Add JavaScript tag library code between "Start Tag Library Code" and "End Tag Library Code".
- Add JavaScript code only, do not add HTML code in this file.
- Remove any <script> and </script> tags from the code you place in this file.
Loading external JavaScript files (Loader):
- If you need to load an additional external JavaScript file, un-comment the singe-line JavaScript comments ("//") within the following Loader sections near the bottom of this file:
- "Start Loader Function Call"
- "End Loader Function Call"
- "Start Loader Callback Function"
- "End Loader Callback Function"
- After un-commenting, insert the path to the external JavaScript file you want to load.
- Finally, within the Loader callback function, insert the JavaScript code that should run after the external JavaScript file has loaded.
*/
/* Start Tag Library Code */
/* End Tag Library Code */
//tealium universal tag - utag.sender.custom_container ut4.0.##UTVERSION##, Copyright ##UTYEAR## Tealium.com Inc. All Rights Reserved.
try {
(function (id, loader) {
var u = {};
utag.o[loader].sender[id] = u;
// Start Tealium loader 4.32
// Please do not modify
if (utag === undefined) { utag = {}; } if (utag.ut === undefined) { utag.ut = {}; } if (utag.ut.loader === undefined) { u.loader = function (o) { var a, b, c, l; a = document; if (o.type === "iframe") { b = a.createElement("iframe"); b.setAttribute("height", "1"); b.setAttribute("width", "1"); b.setAttribute("style", "display:none"); b.setAttribute("src", o.src); } else if (o.type === "img") { utag.DB("Attach img: " + o.src); b = new Image(); b.src=o.src; return; } else { b = a.createElement("script"); b.language = "javascript"; b.type = "text/javascript"; b.async = 1; b.charset = "utf-8"; b.src=o.src; } if (o.id) { b.id = o.id; } if (typeof o.cb === "function") { if (b.addEventListener) { b.addEventListener("load", function () { o.cb(); }, false); } else { b.onreadystatechange = function () { if (this.readyState === "complete" || this.readyState === "loaded") { this.onreadystatechange = null; o.cb(); } }; } } l = o.loc || "head"; c = a.getElementsByTagName(l)[0]; if (c) { utag.DB("Attach to " + l + ": " + o.src); if (l === "script") { c.parentNode.insertBefore(b, c); } else { c.appendChild(b); } } }; } else { u.loader = utag.ut.loader; }
// End Tealium loader
u.ev = {'view' : 1};
u.initialized = false;
##UTGEN##
u.send = function(a, b) {
if (u.ev[a] || u.ev.all !== undefined) {
//##UTENABLEDEBUG##utag.DB("send:##UTID##");
var c, d, e, f, i;
var fsPassedParameters = {};
u.data = {
/* Initialize default tag parameter values here */
/* Examples: */
/* "account_id" : "1234567" */
"base_url" : "//s3-eu-west-1.amazonaws.com/fstrk.net/custom/api/tracker/4734ba6f3de83d861c3176a6273cac6d/conversion.js"
/* A value mapped to "account_id" or "base_url" in TiQ will replace these default values. */
};
/* Start Tag-Scoped Extensions Code */
/* Please Do Not Edit This Section */
##UTEXTEND##
/* End Tag-Scoped Extensions Code */
/* Start Mapping Code */
for (d in utag.loader.GV(u.map)) {
if (b[d] !== undefined && b[d] !== "") {
e = u.map[d].split(",");
for (f = 0; f < e.length; f++) {
u.data[e[f]] = b[d];
}
}
}
/* End Mapping Code */
/* Start Tag Sending Code */
/* End Tag Sending Code */
/* Start Loader Callback Function */
/* Un-comment the single-line JavaScript comments ("//") to use this Loader callback function. */
u.loader_cb = function () {
u.initialized = true;
/* Start Loader Callback Tag Sending Code */
/* End Loader Callback Tag Sending Code */
};
/* End Loader Callback Function */
/* Start Loader Function Call */
/* Un-comment the single-line JavaScript comments ("//") to use Loader. */
if (!u.initialized) {
//u.loader({"type" : "iframe", "src" : u.data.base_url + c.join(u.data.qsp_delim), "cb" : u.loader_cb, "loc" : "body", "id" : 'utag_##UTID##' });
u.loader({"type" : "script", "src" : u.data.base_url, "cb" : u.loader_cb, "loc" : "script", "id" : 'utag_##UTID##' });
} else {
u.loader_cb();
}
//u.loader({"type" : "img", "src" : u.data.base_url + c.join(u.data.qsp_delim) });
/* End Loader Function Call */
//##UTENABLEDEBUG##utag.DB("send:##UTID##:COMPLETE");
}
};
utag.o[loader].loader.LOAD(id);
})("##UTID##", "##UTLOADERID##");
} catch (error) {
utag.DB(error);
}
//end tealium universal tag
06-30-2016 09:55 AM - edited 06-30-2016 09:57 AM
Let me know if the attached file works for you.
You should be able to map directly to "fs_aff_source", "fs_s_id", "fs_order_id", and "fs_product_id" using the mapping toolbox.
Let me know if you have any questions about how this is set up.
Thanks,
Adam
06-30-2016 02:19 PM
Works! Thanks so much! Now to solve the other issues..............!
Copyright All Rights Reserved © 2008-2023