Adobe T&T conversion mbox

Silver Contributor
Silver Contributor
Hi all, we have setup a new conversion mbox through a "Test and Target content modification" extension. We have placed it before the end of the body tag but the div inserted by Tealium has got block style and it takes up space in the footer's page. This behaviour seems correct for a display mbox (which needs to display the offer) but not for a conversion mbox which needs to be kept "hidden" in the page. Would you think it will be possible to distinguish between display and conversion mbox in the future? It would be a nice feature (either through a new extension or through a checkbox). Thanks in advance Luca
3 REPLIES 3

Adobe T&T conversion mbox

Employee Emeritus
Hi Luca, That's a really good suggestion. It's something we'll look into, but in the mean time, please contact your account manager so we can call this conversion mbox for you in a 'hidden' way that won't actually insert a DIV onto your page (since I'm assuming this would be preferable to the scenario you're describing). We actually already do this if TNT fires on a purchase confirmation page.

Adobe T&T conversion mbox

Silver Contributor
Silver Contributor
Hi Son, thanks for your reply, we'll contact our account manager. Have a nice day ahead

Adobe T&T conversion mbox

Employee Emeritus
I agree it's best to contact your Account Manager and open a support ticket for this. I've included some sample code below. // Javascript Extension scoped to your Test and Target tag // Assumes your data layer (aka utag_data) has "conversion_id" and "conversion_value" // Assumes that conversion_id is only set on the conversion page if(b.conversion_id){ mboxDefine('conversionPage','conversionPage', 'conversionId='+b.conversion_id, 'conversionValue='+b.conversion_value); mboxUpdate('conversionPage', 'conversionId='+b.conversion_id, 'conversionValue='+b.conversion_value); } // Here is the existing code that fires automatically in the template for an E-commerce order event if(b._corder){ mboxDefine('orderConfirmPage','orderConfirmPage', 'productPurchasedId='+b._cprod.join(','), 'orderId='+b._corder, 'orderTotal='+b._ctotal); mboxUpdate('orderConfirmPage', 'productPurchasedId='+b._cprod.join(','), 'orderId='+b._corder, 'orderTotal='+b._ctotal); }
Public