summary | How to add nextbuy to your website nextbuy is a network of websites that refer shoppers to one another post-checkout.Below are the instructions to set up nextbuy on your site consisting of 3 code snippets to add to your site. Existing preezie customers It is very similar to how standard preezie journeys are loaded and reuses the same transaction pixel, this means you can skip step 3 below. First complete your sign-up form After completing your application form we will send you a CMS account invite. Once you have access, your onboarding rep will then send you your custom website code. Create your offers Once you have created your brand and offer assets in the CMS let your onboarding specialist know and they will add your brand to the network.You can now start to add the code to your website. Add 3 code snippets to your site Follow the Integration menu steps in the CMS.1. Add the Tracking code to all pages that will receive incoming traffic2. Add the nextbuy widget to your checkout confirmation page3. Add the Transaction pixel to your checkout confirmation page Go live Once we've notified you're live, you can monitor clicks and sales by clicking on the Dashboard link in your nextbuy CMS menuCheck out our guide on monitoring performance and our email remarketing feature. Headline Lorem ipsum dolor sit amet. <span>Take me to application form</span> <span>Take me to the offers guide</span> <span>See instructions below</span> <span style="font-size: 12px; background-color: rgb(255, 165, 0);">How to monitor performance</span> First complete your application formOnce approved, we will use this to set up your account and send you an account invite. <span>Take me to the application form</span> Create your offersNow you create your brand and offer details in the CMS, learn how to do this in the instruction guide. New! If you want to automatically schedule offers then click Add another and set the start/end times. Read the guide for full details. <span>Take me to the offers guide</span> Add 3 code snippets to your siteAfter setting up your offer click the Integration menu in the CMS. This will provide your personalised code snippets based on your eCommerce platform (or Google Tag Manager!).Select your method (All / Shopify / BigCommerce / Google Tag Manager) and then follow the 3 steps below: Add Tracking code to all pages 1. Add the Tracking Code to all pages that will receive referral traffic This code snippet is needed to load on ALL landing pages you'll use in your offers. This allows incoming clicks and sales to be tracked. Please add the below line of code to the <head> section on all pages - this ensures both clicks and sales into your website from other partners are recorded.Note: make sure this is NOT loading on your checkout confirmation page, step 2 covers this. Paste the below code snippet on all landing pages <script type="text/javascript" src="https://widget-cdn.preezie.com/production/preguide.min.js"></script> Tip! Don’t add defer or async to this code as it causes tracking issues. The js code already uses defer in it’s follow on js calls. Ensure it's not on the checkout confirmation page, this page is covered below.Existing preezie customers do not need to do this again if you have previously done this (the code is identical). Shopify users The above code can be added directly to your theme.liquid file anywhere within the <head> tag. Google Tag Manager / All tag manager users The above code can be added as a single tag firing on all pages EXCEPT your checkout confirmation page. 2. Widget code for your confirmation page Now add this In the preezie CMS you'll have access to your personalised script code, this is what goes on your checkout thank you page. To get this go to the checkout : https://admin.preezie.com/app/main/nextbuy-integrationnextbuy > Integration > Select your methodCopy the code from 2. Widget code for your confirmation page in a page position where the widget will show. We recommend right after the ‘Thank you’ statement, this will show the brands you are referring to on the network. Your script will look something like this:<script type="text/javascript" src="https://widget-cdn.preezie.com/production/preguide.min.js" data-widgetid="PRE-78546111-44eb-4a312e-e29f-08db07f4253f,EPO-3a3110da-e0b2-400e-d952-08da34dc93"></script>OR, you can also choose to position the widget by using the additional parameters data-targets, data-isafter as below. This example uses the CSS class os-header on the page to position the widget underneath it:<script type="text/javascript" src="https://widget-cdn.preezie.com/production/preguide.min.js" data-widgetid="PRE-78546111-44eb-4a312e-e29f-08db07f4253f,EPO-3a3110da-e0b2-400e-d952-08dadc9308dadc98" data-targets="os-header,os-header" data-isafter="true"></script>The two customisable values in this script are:1. data-targets - this is the value of the CSS class or HTML id on the page where you want to load the widget2. data-isafter - if this is 'true' it will load the code after the class or id you have stated in data-targets. If this value is 'false' it will load the code INSIDE the class or idIn the above example, data-widgetid is loading 2 widgets one as an embedded widget (PRE) and the second as a delayed slide out (EPO). I have used data-targets="os-header,os-header" to load both widgets AFTER the HTML with class="os-header". To find which CSS class you need right-click on your confirmation page in the position you want and note the text string used in class="e.g. class="section-header os-header" as below: Shopify Code for Shopify users <span>(Incl. Shopify Plus & Checkout Extensibility)</span> Tip! In Shopify the class="os-header" is usually used as the opening thank you statement div: Navigate to Settings > Checkout, e.g. https://preezie.myshopify.com/admin/settings/checkoutThen Order status page > Additional scripts boxIn this box, paste in your personalised code as the last thing in this Additional scripts box The code will look something like this: Note Your widgetid values will be unique to your CMS account don't paste the examples given above. Google Tag Manager Code for Google Tag Manager users Create a custom To get your GTM code go to: https://admin.preezie.com/app/main/nextbuy-integrationnextbuy > Integration > Select your method: Google Tag ManagerCreate a Custom HTML tag in GTM and give it a trigger to load on your thank you page only.Now copy your custom code from 2. Widget code for your confirmation page, then add the part below code but replacing the parts in yellow as belowto give the widget a position on your page:<script type="text/javascript" src="https://widget-cdn.preezie.com/production/preguide.min.js" ></script><script type="text/javascript"> var targetElement = document.querySelector(".os-header") ;(function () { if (!targetElement) return targetElement.outerHTML += '<br><div id="preezie-widget-div-id"></div><div id="preezie-widget-div-id-popup"></div>' PREEZIE_GUIDE.render([ { guideKey: "PRE-78546111-44eb-4a8e-e29f-08db07f4253f", version: "1.0.0", renderTo: "preezie-widget-div-id", }, ]), PREEZIE_GUIDE.render([ { guideKey: "EPO-3a5710da-e0b2-400e-d952-08dadc93", version: "1.0.0", renderTo: "preezie-widget-div-id-popup", }, ]) })()</script>This snippet requires you update the 3 sections to personalise the widget on your checkout confirmation page. You MUST update these values to see the widget loading correctly:1. Update the two guideKey values to the ones shown in your CMS, the widget code will start with PRE, the pop up with EPO, e.g.data-widgetid=": data-widgetid="PRE-78546111-44eb-4a312e-e29f-08db07f4253f,EPO-3a3110da-e0b2-400e-d952-08dadc98" data-targets="os-header,os-header" data-isafter="true"></script>You will need to update the os-header, os-header part based on your page's HTML. These additional parameters data-targets, data-isafter are used to reference the CSS class os-header on the page to position the widget underneath, update this section to the correct CSS class on your page where you'll position the widget AFTER. For example,1. data-targets - this is the value of the CSS class or HTML id on the page where you want to load the widget2. data-isafter - if this is 'true' it will load the code after the class or id you have stated in data-targets. If this value is 'false' it will load the code INSIDE the class or idTo find out your CSS class to use, open your browser's inspect element to look at the HTML: Alternate version if it's not loadingSome platforms won't 'fire' the code in the right load order, therefore add this additional script to your GTM Custom HTML tag underneath the first script tag:<script type="text/javascript" src="https://widget-cdn.preezie.com/production/preguide.min.js" data-widgetid="PRE-78546111-44eb-4a8e4a312e-e29f-08db07f4253f"data-widgetid=": ",EPO-3a5710da3a3110da-e0b2-400e-d952-08dadc93"2. Update the querySelector with the HTML class you want to load the widget AFTER, follow these steps to find this:Make a test transactionRight-click on the part of the page you want to insert the widget AFTER, e.g. Thank you Graham!Choose Inspect and find the text in the HTML of the class=" " hint: this is usually in the Elements tab and looks like this <div class="os-header"...Paste this text into the querySelector making sure it has a . before it, e.g.document.querySelector(".os-header")Now add a trigger to this Tag for the checkout confirmation page and save your tag in GTM, preview it to ensure you can see the widget is loading08dadc98" data-targets="os-header,os-header" data-isafter="true"></script><script> window.document.dispatchEvent(new Event("DOMContentLoaded", { bubbles: true, cancelable: true }));</script>This will then wait for the page to fully load before loading the nextbuy widget. Other ecomm platforms/custom websites Code for all other ecomm platforms For non-Shopify/GTM methods, there are 2 options:1. Place the personalised code you are shown in the CMS on your checkout confirmation page in the page position that will show the preezie journey. For example,<script type="text/javascript" src="https://widget-cdn.preezie.com/production/preguide.min.js" data-widgetid="PRE-78546111-44eb-4a8e-e29f-08db07f4253f,EPO-3a5710da-e0b2-400e-d952-08d423adc93"></script>We recommend placing after the confirmation 'Thank you' statement. 2. Or, you can use some extra values in the script to position it on the page for you, for example:<script type="text/javascript" src="https://widget-cdn.preezie.com/production/preguide.min.js" data-widgetid="PRE-78546111-44eb-4a8e-e29f-08db07f4253f,EPO-3a5710da-e0b2-400e-d952-08dadc93" data-targets="os-header,os-header" data-isafter="true"></script>These two values in the script can be updated based on your checkout page HTML.1. data-targets - this is the value of the css class or html id on the page where you want to load the widget2. data-isafter - if this is 'true' it will load the code after the class or id you have stated in data-targets. If this value is 'false' it will load the code INSIDE the class or idIn the above example, data-widgetid is loading 2 widgets one as an embedded widget (PRE) and the second as it's pop up version (EPO). It is using data-targets="os-header,os-header" to load both widgets AFTER the HTML with class="os-header". 3. Add the Transaction tracking to your confirmation page Finally to track the value of the referred transactions, you need to add our transaction pixel to your checkout confirmation page. This loads after purchase and captures the order value to automatically calculate your network commission.How you do this is based on your ecommerce platform, the code shown to will be custom for your platform method.For Shopify you can copy and paste the exact code from your CMS and place into the Settings > Checkout > Order status page > Additional scripts boxFor BigCommerce you can copy and paste the exact code from your CMS into your Script Manager or theme's HTML file, check this guide to check if it is working For any Magento or other custom integrations you use the code from the CMS but also need to create custom code to pass the cart values of the product id, name, quantity and price (as the customer paid) - for example: <script> prz("event", "transaction", `{"products": [{"productId": "SKU1", "productName":"${encodeURIComponent(`product1`)}", "quantity":1, "price":0.00},]}`);</script>would be processed as:<script> prz("event", "transaction", `{"products": [{"productId": "12345", "productName":"Blue Tshirt XL", "quantity":1, "price":30.00},]}`);</script>Follow these instructions to test your pixel is workinghttps://preezie.atlassian.net/wiki/spaces/PW/pages/19104300/Custom+platforms+-+Pixel+tracking+guide#%5BinlineExtension%5DHow-to-test-itFor more details on each method visit these guides: Shopify Google Tag Manager BigCommerce Neto Magento & Custom platforms Go live Once you have tested everything is loaded on your staging site or after a test transaction, send us a screenshot via email to your onboarding representative and we'll add your brand to the network and you're ready to go live. Things to remember After adding the code above to your staging site, you should see the widget loading a test brandSend a link or screenshot to your onboarding rep via email, they will then add your brand to the network as well as confirm which brands you’ll refer out toLaunch the code to live order confirmation page and monitor the clicks in How to monitor performance Check out our guide on monitoring performance and our email remarketing feature. Go to monitoring performance guide |
---|
page | {"name":"page","children":[{"id":"zHLaZhN5XkZfWi0V3qSiF","params":{"background":"#000000","padding":39,"gap":10},"children":[{"id":"HVlS4qLSjLXgUanpXQsOQ","name":"row","children":[{"id":"3MqpZDWb-ny02oDPJLL_h","name":"column","children":[{"name":"text","params":{"value":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"text":"How to add nextbuy to your website","fontWeight":600,"letterSpacing":-1,"lineHeight":"unset","fontSize":32,"color":"#ffffff","fontFamily":"Poppins, sans-serif"}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"text":"","fontFamily":"Open Sans, sans-serif"}]}]}]},"children":[],"id":"KpvekJIoLFYVdNAyuKAGu"},{"name":"text","params":{"templateId":"simple paragraph","value":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","letterSpacing":0,"text":"nextbuy is a network of websites that refer shoppers to one another post-checkout.","color":"#ffffff","fontFamily":"Poppins, sans-serif"}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","letterSpacing":0,"color":"#ffffff","text":"","fontFamily":"Poppins, sans-serif"}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","letterSpacing":0,"color":"#ffffff","text":"Below are the instructions to set up nextbuy on your site consisting of 3 code snippets to add to your site.","fontFamily":"Poppins, sans-serif"}]}]}]}]},"children":[],"id":"ZcI0qgOLc5VEJpv-5U8Nb"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"center"}},{"id":"EKuRC5cMwcB7Z6yD6NPW5","name":"column","children":[{"name":"image","params":{"alignment":"center","position":"center center","borderRadius":{"all":20,"bbl":0,"bbr":0,"btl":0,"btr":0,"isIndividualCorners":false},"height":400,"image":{"value":"att147390465","target":"_blank","type":"attachment"}},"children":[],"id":"a1gEdmXgw0aL_U_0gU8uY"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"center"}},{"id":"fNTaQMNSL_5iPsqCbWO2z","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"center"}},{"id":"yvJfbpX5n4HLEf-UhjGYi","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"center"}},{"id":"_yEqUL6qjc7KCtio0KCxE","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"center"}},{"id":"qH5ywQrZTVgWa91PaSlKP","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"center"}}],"params":{"layout":[1,1],"gap":65,"minHeight":200,"padding":10,"borderRadius":0}}],"name":"section"},{"id":"AIdNuQA-Sy7FM9OE6xVty","params":{"background":"#EBEBEB","padding":19,"gap":10},"children":[{"id":"XcdstrG6P438d357qWCEL","name":"row","children":[{"id":"sJGtjLC-h6LhqaqGtd7gc","name":"column","children":[{"name":"divider","params":{"templateId":"solid text start","color":"#FFA500","alignment":"start","fontSize":20,"fontColor":"#FFA500","height":2,"borderStyle":"solid","text":"Existing preezie customers"},"children":[],"id":"gLLTkHt3whAjashAdRj1j"},{"name":"text","params":{"templateId":"headline and paragraph","value":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","letterSpacing":0,"text":"It is very similar to how standard preezie journeys are loaded and reuses the same transaction pixel, this means you can skip step 3 below.","color":"#3A3A3A","fontFamily":"Poppins, sans-serif"}]}]}]},"children":[],"id":"pF8gPBudu58Ep7wnwDBYq"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"atQ9o1p4xpuaEQqtiLzSD","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"e8GxSt4utNxGSCgk636m9","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"QtliuVJB7bhcEHvf82Jfu","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"80f-NAg10S7GZgcwnBAmF","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"oq9LAHca-vGlE6FNnBNIs","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}}],"params":{"layout":[1],"gap":10,"minHeight":100,"padding":10,"borderRadius":0,"size":"medium"}}],"name":"section"},{"id":"aA5hi5Go8vcVR8PeLmoUX","params":{"background":"#ffffff","padding":43,"gap":10},"children":[{"id":"J9_8sigQJ5MZQ5aaFuOl6","name":"row","children":[{"id":"WKmyGzRrXCM_vl_akfyoc","name":"column","children":[{"name":"icon","params":{"icon":"1","size":20,"color":"#FFA500","shape":"rounded","alignment":"start","background":"#000000"},"children":[],"id":"vMH1SGliJ5yBwhO7b3Yts"},{"name":"text","params":{"value":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"text":"First complete your sign-up form","letterSpacing":0,"fontWeight":600,"color":"#3a3a3a","fontFamily":"Poppins, sans-serif","fontSize":18}],"align":"left"}]}]},"children":[],"id":"4GO_n_95gAp4AllO8Oz2c"},{"name":"text","params":{"value":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"type":"paragraph","align":"left","children":[{"letterSpacing":0,"fontWeight":300,"color":"#3a3a3a","text":"After completing your ","fontSize":14,"fontFamily":"Poppins, sans-serif"},{"type":"link","link":{"value":"https://preezie.com/solutions/nextbuy/get-started","target":"_blank","type":"link"},"children":[{"letterSpacing":0,"fontWeight":300,"text":"application form","fontSize":14,"fontFamily":"Poppins, sans-serif","color":"#0091FF","underline":true}]},{"letterSpacing":0,"fontWeight":300,"color":"#3a3a3a","text":" we will send you a CMS account invite. ","fontSize":14,"fontFamily":"Poppins, sans-serif"}]},{"type":"paragraph","align":"left","children":[{"letterSpacing":0,"fontWeight":300,"color":"#3a3a3a","fontSize":14,"fontFamily":"Poppins, sans-serif","text":""}]},{"type":"paragraph","align":"left","children":[{"letterSpacing":0,"fontWeight":300,"color":"#3a3a3a","fontSize":14,"fontFamily":"Poppins, sans-serif","text":"Once you have access, your onboarding rep will then send you your custom website code."}]}]}]}]},"children":[],"id":"Xg8fTdVNVthdaNSfjseTY"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"iA5_30AlFFJXDMqyS-H_O","name":"column","children":[{"name":"icon","params":{"icon":"2","size":20,"color":"#FFA500","shape":"rounded","alignment":"start","background":"#000000"},"children":[],"id":"aakzMu1-vU8xdMbIMLRbN"},{"name":"text","params":{"value":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"text":"Create your offers","letterSpacing":0,"fontWeight":600,"color":"#3a3a3a","fontFamily":"Poppins, sans-serif","fontSize":18}],"align":"left"}]}]},"children":[],"id":"GENE3yFS-Fmb_-l3WHlel"},{"name":"text","params":{"value":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"text":"Once you have created your brand and offer assets ","letterSpacing":0,"fontWeight":300,"color":"#3a3a3a","fontSize":14,"fontFamily":"Poppins, sans-serif"},{"type":"link","link":{"value":"163872769","target":"_blank","type":"page"},"children":[{"letterSpacing":0,"fontWeight":300,"fontSize":14,"fontFamily":"Poppins, sans-serif","text":"in the CMS","color":"#0091FF","underline":true}]},{"letterSpacing":0,"fontWeight":300,"fontSize":14,"fontFamily":"Poppins, sans-serif","text":" let your onboarding specialist know and they will "},{"letterSpacing":0,"fontWeight":300,"color":"#3a3a3a","fontSize":14,"fontFamily":"Poppins, sans-serif","text":"add your brand to the network."}],"align":"left"},{"type":"paragraph","align":"left","children":[{"letterSpacing":0,"fontWeight":300,"color":"#3a3a3a","fontSize":14,"text":"","fontFamily":"Poppins, sans-serif"}]},{"type":"paragraph","align":"left","children":[{"letterSpacing":0,"fontWeight":300,"color":"#3a3a3a","fontSize":14,"text":"You can now start to add the code to your website.","fontFamily":"Poppins, sans-serif"}]}]}]}]}]}]},"children":[],"id":"nTmDMZD9SlxxWFafaogrJ"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"mC4VNPNzmNLDmPJrIrZ0t","name":"column","children":[{"name":"icon","params":{"icon":"3","size":20,"color":"#FFA500","shape":"rounded","alignment":"start","background":"#000000"},"children":[],"id":"0NZ10hj67CIaHCnLRT2EN"},{"name":"text","params":{"value":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"text":"Add 3 code snippets to your site","letterSpacing":0,"fontWeight":600,"color":"#3a3a3a","fontFamily":"Poppins, sans-serif","fontSize":18}],"align":"left"}]}]}]},"children":[],"id":"HZJtZ-dfKIEUKFhtkQKIU"},{"name":"text","params":{"value":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"text":"Follow the ","letterSpacing":0,"fontWeight":300,"lineHeight":"unset","fontFamily":"Poppins, sans-serif","color":"#000000","fontSize":14},{"letterSpacing":0,"fontWeight":300,"lineHeight":"unset","fontFamily":"Poppins, sans-serif","color":"#000000","fontSize":14,"text":"Integration ","italic":true},{"letterSpacing":0,"fontWeight":300,"lineHeight":"unset","fontFamily":"Poppins, sans-serif","color":"#000000","fontSize":14,"text":"menu steps in the CMS."}],"align":"left"},{"type":"paragraph","align":"left","children":[{"letterSpacing":0,"fontWeight":300,"lineHeight":"unset","fontFamily":"Poppins, sans-serif","color":"#000000","fontSize":14,"text":""}]},{"type":"paragraph","align":"left","children":[{"letterSpacing":0,"fontWeight":300,"lineHeight":"unset","fontFamily":"Poppins, sans-serif","color":"#000000","fontSize":14,"text":"1. Add the Tracking code to "},{"letterSpacing":0,"lineHeight":"unset","fontFamily":"Poppins, sans-serif","text":"all pages that will ","color":"#000000","fontSize":14},{"letterSpacing":0,"lineHeight":"unset","fontFamily":"Poppins, sans-serif","color":"#000000","fontSize":14,"text":"receive incoming traffic","fontWeight":700}]},{"type":"paragraph","align":"left","children":[{"letterSpacing":0,"lineHeight":"unset","fontFamily":"Poppins, sans-serif","text":"","color":"#000000","fontSize":14}]},{"type":"paragraph","align":"left","children":[{"letterSpacing":0,"lineHeight":"unset","fontFamily":"Poppins, sans-serif","color":"#000000","text":"2. Add the nextbuy widget to your ","fontSize":14},{"letterSpacing":0,"lineHeight":"unset","fontFamily":"Poppins, sans-serif","color":"#000000","text":"checkout confirmation page","fontWeight":700,"fontSize":14}]},{"type":"paragraph","align":"left","children":[{"letterSpacing":0,"fontWeight":300,"lineHeight":"unset","fontFamily":"Poppins, sans-serif","text":"","color":"#000000","fontSize":14}]},{"type":"paragraph","align":"left","children":[{"letterSpacing":0,"fontWeight":300,"lineHeight":"unset","fontFamily":"Poppins, sans-serif","color":"#000000","text":"3. Add the Transaction pixel to your ","fontSize":14},{"letterSpacing":0,"lineHeight":"unset","fontFamily":"Poppins, sans-serif","text":"checkout confirmation page","fontWeight":700,"color":"#000000","fontSize":14}]}]}]}]}]}]},"children":[],"id":"vAox7IauMzqEIoew6fb9G"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"qDsTHyjVcK4z94klyPQOK","name":"column","children":[{"name":"icon","params":{"icon":"4","size":20,"color":"#FFA500","shape":"rounded","alignment":"start","background":"#000000"},"children":[],"id":"w8jvtbDAIi0jW8bfmtrLR"},{"name":"text","params":{"value":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"text":"Go live","letterSpacing":0,"fontWeight":600,"color":"#3a3a3a","fontSize":18,"fontFamily":"Poppins, sans-serif"}],"align":"left"}]}]},"children":[],"id":"NS87me7hYzhN7byPYVAel"},{"name":"text","params":{"value":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"text":"Once we've notified you're live, you can monitor clicks and sales by clicking on the Dashboard link in your ","letterSpacing":0,"fontWeight":300,"color":"#3a3a3a","fontSize":14,"lineHeight":"unset","fontFamily":"Poppins, sans-serif"},{"type":"link","link":{"value":"https://admin.preezie.com/app/main/dashboard","target":"_blank","type":"link"},"children":[{"letterSpacing":0,"fontWeight":300,"fontSize":14,"text":"nextbuy CMS menu","color":"#0091FF","underline":true,"lineHeight":"unset","fontFamily":"Poppins, sans-serif"}]},{"text":"","lineHeight":"unset","fontFamily":"Poppins, sans-serif"}],"align":"left"},{"type":"paragraph","align":"left","children":[{"text":"","lineHeight":"unset","fontFamily":"Poppins, sans-serif"}]},{"type":"paragraph","children":[{"type":"paragraph","children":[{"letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"Check out our guide on monitoring performance and our email remarketing feature.","color":"#3A3A3A","fontSize":14,"lineHeight":"unset"}]}]}]}]}]},"children":[],"id":"eaOuhM_5q1Y9br41CJpwn"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"T_iw3jAaAL9vMA4Ih53k9","name":"column","children":[{"name":"icon","params":{"templateId":"circular 3","size":20,"color":"#FFA500","alignment":"start","icon":"5","shape":"rounded","background":"#000000"},"children":[],"id":"A4e4AeBUdsKytzIEvllnG"},{"name":"text","params":{"templateId":"headline 4","value":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"text":"Headline","letterSpacing":0,"fontWeight":700,"color":"#3A3A3A","fontSize":20}]}]}]},"children":[],"id":"7QNuQ9EYOYqvCnNWBkUcI"},{"name":"text","params":{"templateId":"simple paragraph","value":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","letterSpacing":0,"text":"Lorem ipsum dolor sit amet.","fontFamily":"Open Sans, sans-serif","color":"#3A3A3A","fontWeight":300}]}]}]},"children":[],"id":"NqpLqMgewFXgDrdLqEWSK"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"SmoQTg_TC0fXj5WriS46j","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}}],"params":{"layout":[1,1,1,1],"gap":45,"minHeight":200,"padding":10,"borderRadius":0,"size":"full"}},{"id":"0ebksPcA1MYBn-Bu0ZiRL","name":"row","children":[{"id":"WBdVOb5L9w1A-aY8vC7yd","name":"column","children":[{"name":"button","params":{"templateId":"regular button","label":"<span>Take me to application form</span>","size":"medium","shape":"circular","alignment":"start","states":{"idle":{"colors":{"background":"#FFA500","label":"#ffffff"}},"hover":{"colors":{"background":"#ffffff","label":"#FFA500","outline":"#FFA500"}}},"link":{"value":"https://preezie.com/solutions/nextbuy/get-started","target":"_blank","type":"link"}},"children":[],"id":"3myQy10XNQzfYZm_D2pM0"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":0,"verticalAlignment":"top"}},{"id":"oVXdUbGQdqox2Y7COmu9e","name":"column","children":[{"name":"button","params":{"templateId":"regular button","label":"<span>Take me to the offers guide</span>","size":"medium","shape":"circular","alignment":"start","states":{"idle":{"colors":{"background":"#FFA500","label":"#ffffff"}},"hover":{"colors":{"background":"#ffffff","label":"#FFA500","outline":"#FFA500"}}},"link":{"value":"163872769","target":"_blank","type":"page"}},"children":[],"id":"DcxAY-WDUSP4TV9S9vHC4"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"GyVt3u23KLkfxUiErMUWj","name":"column","children":[{"name":"button","params":{"templateId":"regular button","label":"<span>See instructions below</span>","size":"medium","shape":"circular","alignment":"start","states":{"idle":{"colors":{"background":"#FFA500","label":"#ffffff"}},"hover":{"colors":{}}}},"children":[],"id":"0w-cnjCsKrpzMNrK1MDOf"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"T946twztOBK4u9vbimNx6","name":"column","children":[{"name":"button","params":{"templateId":"regular button","label":"<span style=\"font-size: 12px; background-color: rgb(255, 165, 0);\">How to monitor performance</span>","size":"medium","shape":"circular","alignment":"start","states":{"idle":{"colors":{"background":"#FFA500","label":"#ffffff"}},"hover":{"colors":{}}},"link":{"value":"https://preezie.atlassian.net/wiki/spaces/PW/pages/145195058/Once+you+re+live+on+the+nextbuy+network...","target":"_blank","type":"link"}},"children":[],"id":"q1RYpHzHo2yIlkgpGL9UX"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"6EMu9wxHNP7gd_HBjicRo","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"To3P6jYOA0wIy3XfkgZqR","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}}],"params":{"layout":[1,1,1,1],"gap":35,"minHeight":40,"padding":10,"borderRadius":0,"size":"full"}}],"name":"section"},{"id":"NovlBqcRJFAcKHe2UWhgC","params":{"background":"#000000","padding":45,"gap":10},"children":[{"id":"WgdEtXzInF1lUeOn-51cy","name":"row","children":[{"id":"y2-RGznHfKoroe5pPCbtB","name":"column","children":[{"name":"icon","params":{"icon":"1","size":28,"color":"#ffffff","shape":"rounded","alignment":"start","background":"#BFC0C1"},"children":[],"id":"zCBZRunKqqexej0rI6NwS"},{"name":"text","params":{"value":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"text":"First complete your application form","letterSpacing":0,"fontWeight":600,"fontSize":22,"color":"#ffffff","fontFamily":"Poppins, sans-serif"}],"align":"left"},{"type":"paragraph","align":"left","children":[{"letterSpacing":0,"color":"#ffffff","fontFamily":"Poppins, sans-serif","text":"Once approved, we will use this to set up your account and send you an account invite.","fontSize":16}]}]}]}]},"children":[],"id":"bdG1-j60zhgFotIfWfjIE"},{"name":"button","params":{"templateId":"regular button","label":"<span>Take me to the application form</span>","size":"medium","shape":"circular","alignment":"start","states":{"idle":{"colors":{"background":"#ffffff","label":"#FFA500"}},"hover":{"colors":{"background":"#FFA500","label":"#ffffff"}}},"link":{"value":"https://preezie.com/solutions/nextbuy/get-started","target":"_blank","type":"link"}},"children":[],"id":"5gvD2Hy4mC8xWmipvf9Oj"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"U3Bob-NFs1AXnNZWWS-FU","name":"column","children":[{"name":"image","params":{"alignment":"center","position":"center center","borderRadius":{"all":20,"bbl":0,"bbr":0,"btl":0,"btr":0,"isIndividualCorners":false},"height":246,"width":558,"image":{"value":"att147292174","target":"_blank","type":"attachment"}},"children":[],"id":"ekwjbpk7-qOxI9rO7Klyt"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"ldOCx04i6wshTjt0v4_1G","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"DHVJRlGG3qoVmiVnOfubg","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"sybrMi739SvQeba1oW3Ih","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"ccWXuO_naZUa-2ChsHyh7","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}}],"params":{"layout":[1,1],"gap":65,"minHeight":200,"padding":10,"borderRadius":0}}],"name":"section"},{"id":"E_iX6aMkhW6uTa8iPUvOc","params":{"background":"#efefef","padding":40,"gap":10},"children":[{"id":"Fck20Hj-2WPuwCg1hZ0Qv","name":"row","children":[{"id":"90uQRGxsPu8ZKkSnP4AUK","name":"column","children":[{"name":"icon","params":{"icon":"2","size":28,"color":"#ffffff","shape":"rounded","alignment":"start","background":"#BFC0C1"},"children":[],"id":"aTFt9A5PBV0Yk0UZXwbG2"},{"name":"text","params":{"value":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"text":"Create your offers","letterSpacing":0,"fontWeight":600,"fontSize":22,"fontFamily":"Poppins, sans-serif","color":"#000000"}],"align":"left"},{"type":"paragraph","align":"left","children":[{"letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"Now you create your brand and offer details in the CMS, learn how to do this in the ","color":"#000000","fontSize":16},{"type":"link","link":{"value":"163872769","target":"_blank","type":"page"},"children":[{"letterSpacing":0,"fontFamily":"Poppins, sans-serif","fontSize":16,"text":"instruction guide","color":"#0091FF","underline":true}]},{"letterSpacing":0,"fontFamily":"Poppins, sans-serif","color":"#000000","fontSize":16,"text":". "}]},{"type":"paragraph","align":"left","children":[{"letterSpacing":0,"fontFamily":"Poppins, sans-serif","color":"#000000","text":"","fontSize":16}]},{"type":"paragraph","align":"left","children":[{"letterSpacing":0,"fontFamily":"Poppins, sans-serif","color":"#000000","text":"New! ","fontSize":16,"fontWeight":700},{"letterSpacing":0,"fontFamily":"Poppins, sans-serif","color":"#000000","fontSize":16,"text":"If you want to automatically schedule offers then click Add another and set the start/end times. Read the guide for full details. "}]}]}]}]},"children":[],"id":"dE10sn6RHyGyUGdVvMpVP"},{"name":"button","params":{"templateId":"regular button","label":"<span>Take me to the offers guide</span>","size":"medium","shape":"circular","alignment":"start","states":{"idle":{"colors":{"background":"#ffffff","label":"#FFA500"}},"hover":{"colors":{"background":"#FFA500","label":"#ffffff"}}},"link":{"value":"163872769","target":"_blank","type":"page"}},"children":[],"id":"WFZR8fBk60adp4T99FXAo"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"sENvv0rxQz9W0agYEF5DY","name":"column","children":[{"name":"image","params":{"alignment":"center","position":"center center","borderRadius":{"all":20,"bbl":0,"bbr":0,"btl":0,"btr":0,"isIndividualCorners":false},"height":346,"width":558,"image":{"value":"att166494301","target":"_blank","type":"attachment"}},"children":[],"id":"R6fdDrHo-2XEM4Dh-B6eM"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"VSQhPlK9Wy_g1066pqBFb","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"3jMxrOi0crPIBdnAYZNyP","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"xeIfVlyOgzVjvxRGsWXuI","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"BguVFo9Sm0wT56xJI2qgQ","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}}],"params":{"layout":[1,1],"gap":65,"minHeight":200,"padding":10,"borderRadius":0}}],"name":"section"},{"id":"ZcDRSaRg3vSmErulNzSyo","params":{"background":"#ffffff","padding":45,"gap":10},"children":[{"id":"GxkkRk6xTSzkYwPWG9qF0","name":"row","children":[{"id":"sMUWoRB0__yu524sAaTFa","name":"column","children":[{"name":"icon","params":{"icon":"3","size":28,"color":"#ffffff","shape":"rounded","alignment":"start","background":"#BFC0C1"},"children":[],"id":"CaqlULuqtEfi2fvq5kLFD"},{"name":"text","params":{"value":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"text":"Add 3 code snippets to your site","letterSpacing":0,"color":"#000000","fontFamily":"Poppins, sans-serif","fontWeight":700,"fontSize":22}],"align":"left"},{"type":"paragraph","align":"left","children":[{"letterSpacing":0,"color":"#000000","fontFamily":"Poppins, sans-serif","text":"After setting up your offer click the Integration menu in the CMS. This will provide your personalised code snippets based on your eCommerce platform (or Google Tag Manager!).","fontSize":18}]},{"type":"paragraph","align":"left","children":[{"letterSpacing":0,"color":"#000000","fontFamily":"Poppins, sans-serif","fontSize":18,"text":""}]},{"type":"paragraph","align":"left","children":[{"letterSpacing":0,"color":"#000000","fontFamily":"Poppins, sans-serif","fontSize":18,"text":"Select your method ","fontWeight":700},{"letterSpacing":0,"color":"#000000","fontFamily":"Poppins, sans-serif","fontSize":18,"text":"(All / Shopify / BigCommerce / Google Tag Manager) and then follow the 3 steps below:"}]}]}]}]},"children":[],"id":"vbQuSZyh75SPrEUJJDkuH"},{"name":"image","params":{"templateId":"full-width","alignment":"center","position":"center center","borderRadius":{"all":0,"bbl":0,"bbr":0,"btl":0,"btr":0,"isIndividualCorners":false},"image":{"value":"att221642777","target":"_blank","type":"attachment"},"width":762,"height":117},"children":[],"id":"RGTF3L6vi3mC1lPUDTN40"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"bottom"}},{"id":"TxDOg_Id0ajRRB3pAejl6","name":"column","children":[{"name":"text","params":{"templateId":"headline 4","value":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"text":"Add Tracking code to all pages","letterSpacing":0,"fontWeight":700,"fontSize":24}]}]}]},"children":[],"id":"yJpuIKSa_x7XO2h74Q137"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"bottom"}},{"id":"vPmgBxLkjNtVNiJtcqR5v","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"bottom"}},{"id":"XvT-L48TZTzaGVfoB_wf4","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"bottom"}},{"id":"Zpus6glt9VdONVUI4faxi","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"bottom"}},{"id":"-XTZYaM5GMgud8l5zQfAK","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"bottom"}}],"params":{"layout":[1],"gap":10,"minHeight":150,"padding":10,"borderRadius":0}},{"id":"kX6BmGU8jq-rchyyuUshy","name":"row","children":[{"id":"CZMI0KWJhYU92wzg8hXjK","name":"column","children":[{"name":"icon","params":{"templateId":"rounded award","size":20,"color":"#000000","alignment":"end","icon":"angles-right","shape":"rounded","background":"#FFA500"},"children":[],"id":"BUwT76qnUNvL6CPyDXDO4"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"fBwg3KTptadzAJ4qBX2Ww","name":"column","children":[{"name":"text","params":{"templateId":"headline 2","value":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"text":"1. Add the Tracking Code to all pages that will receive referral traffic","letterSpacing":0,"fontWeight":700,"fontSize":20,"fontFamily":"Poppins, sans-serif"}]}]}]},"children":[],"id":"YxkIX05yHNmWUEgJDHJmb"},{"name":"text","params":{"templateId":"simple paragraph","value":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"text":"This code snippet is needed to load on ","fontFamily":"Poppins, sans-serif"},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"ALL landing pages","fontWeight":700},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":" you'll use in your offers. This allows incoming clicks and sales to be tracked. "}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":""}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"Please add the below line of code to the <head> section on all pages - this ensures both clicks and sales into your website from other partners are recorded."}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":""}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"Note","fontWeight":700,"color":"#a0a0a0"},{"fontSize":16,"lineHeight":"24px","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":": make sure this is ","color":"#a0a0a0"},{"fontSize":16,"lineHeight":"24px","letterSpacing":0,"fontFamily":"Poppins, sans-serif","color":"#a0a0a0","text":"NOT ","fontWeight":700},{"fontSize":16,"lineHeight":"24px","letterSpacing":0,"fontFamily":"Poppins, sans-serif","color":"#a0a0a0","text":"loading on your checkout confirmation page, step 2 covers this."}]}]}]},"children":[],"id":"-IfwCwDxCl-cdblfQ3vr6"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"2-3tMa8t4sxzWIoQUfm_1","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"4FDxMVU6brNYrCFjMR7If","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"mevyUPIAhumncLhNBRlIt","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"hi4u-NNHbIJJVr0YZWiaz","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}}],"params":{"layout":[1,2],"gap":35,"minHeight":150,"padding":10,"borderRadius":0,"size":"full"}},{"id":"-kEngZ2u1Ru8NA8g6gF4Q","name":"row","children":[{"id":"WDHcaXh8sXZI2RBkq-mWI","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"hX7GbcYrk8nmCiTDImMKa","name":"column","children":[{"name":"divider","params":{"templateId":"solid long","color":"#EBEBEB","alignment":"start","fontSize":14,"fontColor":"#BFC0C1","height":1,"borderStyle":"solid","text":"Paste the below code snippet on all landing pages"},"children":[],"id":"lSFHFjq3_1-CqtMiVGHPy"},{"name":"text","params":{"templateId":"simple paragraph","value":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"lineHeight":"24px","letterSpacing":0,"text":"<script type=\"text/javascript\" src=\"https://widget-cdn.preezie.com/production/preguide.min.js\"></script>","fontFamily":"Poppins, sans-serif","color":"#3e46fd","fontSize":16}]}]}]},"children":[],"id":"vYWt5gSeu5UYXZkaamzXP"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"7FQfc8WlH9VP967fmc2PM","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"m7evb0gulWx5RRaX3oItr","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"7FQfc8WlH9VP967fmc2PMFRRL_ZSNvdPZix40rwOIC","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"m7evb0gulWx5RRaX3oItrdkL5vxBhdLdyTdljVtQHP","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}}],"params":{"layout":[1,2],"gap":35,"minHeight":110,"padding":10,"borderRadius":0,"size":"full"}},{"id":"FRRL_ZSNvdPZix40rwOIC8q9Kv_Rq-P5dQCQwEA5mg","name":"row","children":[{"id":"swfsqXzPGcRM8289IvoqI","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"dkL5vxBhdLdyTdljVtQHP2lruedn1Mh4W_G_jzeoPe","name":"column","children":[]{"name":"divider","params":{"borderRadiustemplateId":{"all":0solid icon exclamation-circle","btlcolor":0"#FFA500","bblalignment":0"start","btrfontSize":018,"bbrfontColor":0"#FFA500","isIndividualCornersheight":false}1,"paddingborderStyle":0"solid","gapicon":20"exclamation-circle","verticalAlignmenttext":"topTip!"}}],"paramschildren":{"layout":[1,2],"gapid":35,"minHeight"GhCVfSvc11roD5ww-nAJg"},{"name":110,"paddingtext":10,"borderRadiusparams":0,{"sizetemplateId":"fullsimple paragraph"}},{"idvalue":"8q9Kv_Rq-P5dQCQwEA5mg","name[{"type":"rowparagraph","children":[{"idtype":"swfsqXzPGcRM8289IvoqIparagraph","namechildren":[{"columnfontSize":16,"childrenlineHeight":[],"params24px":{,"borderRadiuscolor":{"all#555":0,"btlletterSpacing":0,"bbltext":0,"btrDon’t add ":0,"bbrfontFamily":0"Poppins, "isIndividualCorners":falsesans-serif"},{"paddingfontSize":016,"gaplineHeight":20"24px","verticalAlignmentcolor":"top#555"}},{"idletterSpacing":"2lruedn1Mh4W_G_jzeoPe"0,"namefontFamily":"columnPoppins, sans-serif","childrentext":[{"namedefer ":"divider","paramsfontWeight":700},{"templateIdfontSize":"solid icon exclamation-circle"16,"colorlineHeight":"#FFA50024px","alignmentcolor":"start#555","fontSizeletterSpacing":180,"fontColorfontFamily":"#FFA500Poppins, sans-serif","heighttext":1"or "},{"borderStylefontSize":"solid"16,"iconlineHeight":"exclamation-circle24px","textcolor":"Tip!#555"},"childrenletterSpacing":[]0,"idfontFamily":"GhCVfSvc11roD5wwPoppins, sans-nAJgserif"},{"nametext":"textasync ","paramsfontWeight":700},{"templateIdfontSize":16,"simple paragraphlineHeight",:"value24px":[{,"typecolor":"paragraph#555","childrenletterSpacing":[{0,"typefontFamily":"paragraphPoppins, sans-serif","childrentext":["to this code as it causes tracking issues. The js code already uses "},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"textfontFamily":"Don’t add Poppins, sans-serif","fontFamilytext":"defer "Poppins, sans-serif""fontWeight":700},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"defer ","fontWeight":700},in it’s follow on js calls. Ensure it's not on the checkout confirmation page, this page is covered below."}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"or "}]},{"type":"paragraph","children":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"async Existing preezie customers","fontWeight":700},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"text":" do not need to do this again if you have previously done this (the code is identical).","fontFamily":"Poppins, sans-serif"}]}]}]}]}]},"children":[],"textid":"to this code as it causes tracking issues. The js code already uses 3XhsrF8tOQOvsKcAOn6Nx"},{"fontSize":16,"lineHeightname":"24pxspacer","colorparams":{"#555space":10},"letterSpacingchildren":0[],"fontFamilyid":"Poppins, sans-serifVzAiursKRHtES3Fa9N69x"},{"textname":"defer divider","fontWeightparams":700},{"fontSizetemplateId":16,"lineHeight":"24px""solid icon check-circle","color":"#555#1da237","letterSpacingalignment":0"start","fontFamilyfontSize":"Poppins18, sans-serif","text"fontColor":"in it’s follow on js calls. Ensure it's not on the checkout confirmation page, this page is covered below."}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":""}]},{"type":"paragraph","children#1da237","height":1,"borderStyle":"solid","icon":"check-circle","text":"Shopify users"},"children":[],"id":"2mKd3yfyohSXs8-Uv3mcu"},{"name":"text","params":{"templateId":"simple paragraph","value":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamilytext":"Poppins, sans-serifThe above code can be added directly to your ","textfontFamily":"Existing preezie customers","fontWeight":700Poppins, sans-serif"},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"text":" do not need to do this again if you have previously done this (the code is identical).","fontFamily":"Poppins, sans-serif","text":"theme.liquid"}]}]}]}]}]},"children":[],"id":"3XhsrF8tOQOvsKcAOn6Nx"},{"name":"spacer","params":{"space":10,"fontWeight":700},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":" file anywhere within the <head> tag. "}]}]}]},"children":[],"id":"VzAiursKRHtES3Fa9N69xYHk6RCM7OELGnxctHmtJF"},{"name":"divider","params":{"templateId":"solid icon check-circle","color":"#1da237#1D5a83","alignment":"start","fontSize":18,"fontColor":"#1da237#1d58a3","height":1,"borderStyle":"solid","icon":"check-circle","text":"Shopify Google Tag Manager / All tag manager users"},"children":[],"id":"2mKd3yfyohSXs8-Uv3mcu12tF0z71mIZyyhVi5esWy"},{"name":"text","params":{"templateId":"simple paragraph","value":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"text":"The above code can be added directly to your ","fontFamily":"Poppins, sans-serif"},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"theme.liquid","fontWeight":700},":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"text":"The above code can be added as a single tag firing on all pages EXCEPT your checkout confirmation page. ","fontFamily":"Poppins, sans-serif","text":" file anywhere within the <head> tag. "}]}]}]},"children":[],"id":"YHk6RCM7OELGnxctHmtJFAW6htnywzgKZSEoNS7C1i"},{"name":"dividerspacer","params":{"templateId"space":0},"children":[],"id":"solid icon check-circle","color":"#1D5a83","alignment":"start","fontSize":18,"fontColor":"#1d58a3","height":1,"borderStyle":"solid","icon":"check-circle","text":"Google Tag Manager / All tag manager users"}aitN8AE3-Bth-_hpaTc9X"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":10,"verticalAlignment":"top"}},{"id":"DtaYvNn-PIX2u08y9MCTw","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"id"btr":0,"bbr":0,"12tF0z71mIZyyhVi5esWyisIndividualCorners":false},{"namepadding":0,"textgap":20,"paramsverticalAlignment":"top"}},{"templateIdid":"simple paragraphb1CI5GCQhxK3Y2QWqaKP5","valuename":[{"typecolumn":"paragraph","children":[{],"typeparams":{"paragraph",borderRadius"children":[{"fontSizeall":160,"lineHeightbtl":0,"24pxbbl":0,"colorbtr":"#555"0,"letterSpacingbbr":0,"text":"The above code can be added as a single tag firing on all pages EXCEPT your checkout confirmation page. ","fontFamily":"Poppins, sans-serif"}]}]}]},"children":[],"id":"AW6htnywzgKZSEoNS7C1i"},{"name":"spacer","params":{"space":0}isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"xvle-U51dlvSS_r4tdd0Y","name":"column","children":[],"id":"aitN8AE3-Bth-_hpaTc9X"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":1020,"verticalAlignment":"top"}},{"id":"DtaYvNn-PIX2u08y9MCTwEpZLxTsG0m_1tHNizOx4F","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false}},"padding":0,"gap":20,"verticalAlignment":"top"}}],"params":{"layout":[1,2],"gap":35,"minHeight":150,"padding":010,"gapborderRadius":200,"verticalAlignmentsize":"topfull"}},{"id":"b1CI5GCQhxK3Y2QWqaKP5tbCOYQckfC7mOL10LbLKY","name":"columnrow","children":[]{"id":"G-sdKQQlpsi9G0_7isHnb","paramsname":{"borderRadius"column","children":[{"allname":0"icon","btlparams":0,{"bbltemplateId":0"rounded award","btrsize":020,"bbrcolor":0,"isIndividualCorners#000000":false},"paddingalignment":0,"gapend":20,"verticalAlignmenticon":"topangles-right"}},{"idshape":"xvle-U51dlvSS_r4tdd0Yrounded","namebackground":"column#FFA500"},"children":[],"id":"yUu95zitdY9FsBnm5Jw78"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"EpZLxTsG0m_1tHNizOx4FtRMXcalPsuxkYQtp8dGJA","name":"column","children":[]{"name":"text","params":{"borderRadiustemplateId":{"allheadline 2":0,"btlvalue":0,[{"bbltype":0,"btrparagraph":0,"bbrchildren":0,[{"isIndividualCornerstype":false},"paddingparagraph":0,"gapchildren":20,[{"verticalAlignmenttext":"top"}}]2. Widget code for your confirmation page","paramsletterSpacing":{0,"layoutfontWeight":[1700,2],"gapfontSize":3520,"minHeightfontFamily":150"Poppins, "padding":10,"borderRadius":0,"size":"full"}sans-serif"}]}]}]},"children":[],"id":"llWO6t_zrmV2MR3Tfkgs9"},{"idname":"tbCOYQckfC7mOL10LbLKYtext","nameparams":{"templateId":"rowsimple paragraph","childrenvalue":[{"idtype":"G-sdKQQlpsi9G0_7isHnbparagraph","name"children":[{"type":"columnparagraph","children":[{"namefontSize":16,"iconlineHeight",:"params24px":{,"templateIdcolor":"rounded award#555","sizeletterSpacing":200,"colortext":"#000000In the preezie CMS you'll have access to your personalised script code, this is what goes on your ","alignmentfontFamily":"end","icon"Poppins, sans-serif"},{"fontSize":16,"lineHeight":"angles-right24px","shapecolor":"rounded#555","backgroundletterSpacing":0,"fontFamily"#FFA500:"}Poppins, "children":[]sans-serif","idtext":"yUu95zitdY9FsBnm5Jw78"}]checkout thank you page","paramsfontWeight":700},{"borderRadiusfontSize":{16,"alllineHeight":0"24px","btlcolor":0"#555","bblletterSpacing":0,"btrfontFamily":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"tRMXcalPsuxkYQtp8dGJA","name":"column","children":[{"name":"text","params":{"templateId":"headline 2","value":["Poppins, sans-serif","text":". To get this go to: https://admin.preezie.com/app/main/nextbuy-integration"}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":""}]},{"type":"paragraph","children":[{"typefontSize":"paragraph"16,"children":[{"text":"2. Widget code for your confirmation pagelineHeight":"24px","letterSpacingcolor":0,"fontWeight#555":700,"fontSizeletterSpacing":200,"fontFamily":"Poppins, sans-serif"}]}]}]},"childrentext":[],"id"nextbuy > Integration > Select your method"}]},{"type":"llWO6t_zrmV2MR3Tfkgs9paragraph"},{"namechildren":[{"textfontSize":16,"paramslineHeight":{"templateId"24px","color":"simple paragraph#555","valueletterSpacing":[{0,"typefontFamily":"paragraphPoppins, sans-serif","childrentext":[""}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"textfontFamily":"Now add this personalised script code to the Poppins, sans-serif","fontFamilytext":"Poppins, sans-serifCopy the code from "},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"checkout "2. Widget code for your confirmation page","fontWeightitalic":700true},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":" in a page position where the widget will show. We recommend right after the ‘Thank you’ statement, this will show the brands you are referring to on the network. "}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":""}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"Your script will look something like this:"}]},{"type":"paragraph","children":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"lineHeight":"24px","letterSpacing":0,"text":"<script type=\"text/javascript\" src=\"https://widget-cdn.preezie.com/production/preguide.min.js\" data-widgetid=\"PRE-78546111-44eb-4a312e-e29f-08db07f4253f,EPO-3a3110da-e0b2-400e-d952-08da34dc93\"></script>","fontFamily":"Poppins, sans-serif","color":"#3e46fd","fontSize":14}]}]}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":""}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"OR, you can also choose to position the widget by using the additional parameters "},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"data-targets","fontWeight":700},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":", "},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"data-isafter","fontWeight":700},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":" as below. This example uses the CSS class "},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"os-header","fontWeight":700},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":" on the page to position the widget underneath it:"}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":""}]},{"type":"paragraph","children":[{"type":"paragraph","children":[{"lineHeight":"24px","letterSpacing":0,"text":"<script type=\"text/javascript\" src=\"https://widget-cdn.preezie.com/production/preguide.min.js\" data-widgetid=\"PRE-78546111-44eb-4a312e-e29f-08db07f4253f,EPO-3a3110da-e0b2-400e-d952-08dadc9308dadc98\" data-targets=\"os-header,os-header\" data-isafter=\"true\"></script>","fontFamily":"Poppins, sans-serif","color":"#3e46fd","fontSize":14}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","letterSpacing":0,"color":"#000000","backgroundColor":"#EBEBEB","fontFamily":"Poppins, sans-serif","text":""}]},{"type":"paragraph","children":[{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"text":"The two customisable values in this script are:","fontFamily":"Poppins, sans-serif"}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":""}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"1. "},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","fontWeight":700,"text":"data-targets"},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":" - this is the value of the CSS "},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"class ","fontWeight":700},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"or HTML "},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"id ","fontWeight":700},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"on the page where you want to load the widget"}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":""}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"2. "},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"data-isafter ","fontWeight":700},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"- if this is 'true' it will load the code "},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"after ","fontWeight":700},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"the class or id you have stated in data-targets. If this value is 'false' it will load the code INSIDE the class or id"}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":""}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"In the above example, data-widgetid is loading 2 widgets one as an embedded widget (PRE) and the second as a delayed slide out (EPO). I have used data-targets=\"os-header,os-header\" to load both widgets AFTER the HTML with class=\"os-header\". "}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":""}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"To find which CSS class you need right-click on your confirmation page in the position you want and note the text string used in class=\""}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":""}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"e.g. class=\"section-header "},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"os-header","fontWeight":700},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"\" as below:"}]}]}]}]}]},"children":[],"id":"vRu3_GqWUnfJHlVUwxSPQ"},{"name":"image","params":{"templateId":"full-width","alignment":"end","position":"center center","borderRadius":{"all":0,"bbl":0,"bbr":0,"btl":0,"btr":0,"isIndividualCorners":false},"image":{"value":"att188514306","target":"_blank","type":"attachment"},"width":861,"height":349},"children":[],"id":"xP80IB-v9wa69ZbcF-ChV"},{"name":"image","params":{"templateId":"full-width rounded","alignment":"start","position":"center center","borderRadius":{"all":20,"bbl":0,"bbr":0,"btl":0,"btr":0,"isIndividualCorners":false},"image":{"value":"att145260557","target":"_blank","type":"attachment"},"width":520,"height":300},"children":[],"id":"35C3aPdnpkAiPorB-lWuL"},{"name":"spacer","params":{"space":0},"children":[],"id":"PUawHsmkOfuLxRbkuOR_b"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"CCcHQWSFhDByy3lUq55zl","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"JzLOSRqQgG_aFQx4sTmve","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"K-JfJxYGs7U7NtlfKHeU8","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"fKzX6wdPdiEpwYai-nQww","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}}],"params":{"layout":[1,2],"gap":35,"minHeight":100,"padding":10,"borderRadius":0,"size":"full"}},{"id":"MEZxoXhK5jTfCOC3hO5f0","name":"row","children":[{"id":"yBCvb1hk1gkSeJQgAEizz","name":"column","children":[{"name":"icon","params":{"templateId":"plain award","shape":"none","color":"#008060","alignment":"end","size":40,"icon":"shopify"},"children":[],"id":"_MdUICtkDwqqee0y7BdtS"},{"name":"button","params":{"templateId":"regular button","label":"Shopify","size":"medium","shape":"rounded","alignment":"end","states":{"idle":{"colors":{"background":"#000000"}},"hover":{"colors":{}}}},"children":[],"id":"Wz2VwyTsXs-UHWgfUwxOd"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"0JKWaneURLYL0CK06j0HE","name":"column","children":[{"name":"divider","params":{"templateId":"solid icon check-circle","color":"#008060","alignment":"start","fontSize":18,"fontColor":"#008060","height":1,"borderStyle":"solid","icon":"check-circle","text":"Code for Shopify users <span>(Incl. Shopify Plus & Checkout Extensibility)</span>"},"children":[],"id":"n2jEn9mp0cG_cSl6WfCXZ"},{"name":"text","params":{"templateId":"simple paragraph","value":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"Tip!","fontWeight":700},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":" In Shopify the class=\"os-header\" is usually used as the opening thank you statement div:"}]}]}]},"children":[],"id":"xBCDTlJYcQUKzERd5l52_"},{"name":"image","params":{"templateId":"square rounded","alignment":"center","height":305,"position":"center left","borderRadius":{"all":20,"bbl":0,"bbr":0,"btl":0,"btr":0,"isIndividualCorners":false},"image":{"value":"att165380097","target":"_blank","type":"attachment"}},"children":[],"id":"se2FqnmVcHynCzpQS6Isq"},{"name":"text","params":{"templateId":"simple paragraph","value":[{"type":"paragraph","children":[{"type":"bulleted-list","children":[{"type":"list-item","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"text":"Navigate to ","fontFamily":"Poppins, sans-serif"},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"text":"Settings","fontWeight":700,"fontFamily":"Poppins, sans-serif"},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"text":" > ","fontFamily":"Poppins, sans-serif"},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"text":"Checkout","fontWeight":700,"fontFamily":"Poppins, sans-serif"},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"text":", e.g. ","fontFamily":"Poppins, sans-serif"},{"type":"link","link":{"value":"https://preezie.myshopify.com/admin/settings/checkout","target":"_blank","type":"link"},"children":[{"fontSize":16,"lineHeight":"24px","letterSpacing":0,"text":"https://preezie.myshopify.com/admin/settings/checkout","color":"#0091FF","underline":true,"fontFamily":"Poppins, sans-serif"}]},{"text":"","fontFamily":"Poppins, sans-serif"}]},{"type":"list-item","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"text":"Then ","fontFamily":"Poppins, sans-serif"},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"text":"Order status page","fontWeight":700,"fontFamily":"Poppins, sans-serif"},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"text":" > ","fontFamily":"Poppins, sans-serif"},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"text":"Additional scripts","fontWeight":700,"fontFamily":"Poppins, sans-serif"},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"text":" box","fontFamily":"Poppins, sans-serif"}]},{"type":"list-item","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"text":"In this box, paste in your personalised code as the last thing in this ","fontFamily":"Poppins, sans-serif"},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"text":"Additional scripts","fontWeight":700,"fontFamily":"Poppins, sans-serif"},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"text":" box","fontFamily":"Poppins, sans-serif"}]}]}]}]},"children":[],"id":"v52Ciyll-wYD0ESkqxVFb"},{"name":"text","params":{"templateId":"simple paragraph","value":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"text":"The code will look something like this:","fontFamily":"Poppins, sans-serif"}]}]}]},"children":[],"id":"KoUWJeZrhSQk-uzgkx3wy"},{"name":"image","params":{"templateId":"full-width rounded","alignment":"start","position":"center center","borderRadius":{"all":20,"bbl":0,"bbr":0,"btl":0,"btr":0,"isIndividualCorners":false},"image":{"value":"att165314561","target":"_blank","type":"attachment"},"width":552,"height":309},"children":[],"id":"1-7W5N5ANakfo0sZzjBeB"},{"name":"divider","params":{"templateId":"solid icon exclamation-circle","color":"#FFA500","alignment":"start","fontSize":18,"fontColor":"#FFA500","height":1,"borderStyle":"solid","icon":"exclamation-circle","text":"Note"},"children":[],"id":"Z8xo8ydjnOizUOJmnqsOv"},{"name":"text","params":{"templateId":"simple paragraph","value":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"text":"Your widgetid values will be unique to your CMS account don't paste the examples given above.","fontFamily":"Poppins, sans-serif"}]}]}]},"children":[],"id":"0S5woNaF94ZfYpSroJZfg"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"btRuclAoo4fn8OU0sDZ7V","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"HI8KQjQJSl39eMcOTvNax","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"fkm7ZewM4sXbRV56dnQvQ","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"ReQIVvz8u4Cde1iiT8Xq1","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}}],"params":{"layout":[1,2],"gap":35,"minHeight":100,"padding":10,"borderRadius":0,"size":"full"}},{"id":"d5nHbWLFoAU4lWbIF5I5_","name":"row","children":[{"id":"XkuMC2WoMlOza0oXp0CMG","name":"column","children":[{"name":"icon","params":{"templateId":"plain award","shape":"none","color":"#3390f9","alignment":"end","size":40,"icon":"google"},"children":[],"id":"j7nv4VxkWs4z_W5O04zQ1"},{"name":"button","params":{"templateId":"regular button","label":"Google Tag Manager","size":"medium","shape":"rounded","alignment":"end","states":{"idle":{"colors":{","size":40,"icon":"google"},"children":[],"id":"j7nv4VxkWs4z_W5O04zQ1"},background":"#000000"}},"hover":{"colors":{}}}},"children":[],"id":"7HF5MGRZuFZwNd9JdKWDU"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"EoLyOhOOS08sE1gsthEPa","name":"column","children":[{"name":"buttondivider","params":{"templateId":"regular buttonsolid icon check-circle","labelcolor":"Google Tag Manager#3390F9","sizealignment":"mediumstart","shapefontSize":"rounded"18,"alignmentfontColor":"end#3390F9","statesheight":{1,"idleborderStyle":{"colorssolid":{,"backgroundicon":"#000000check-circle"}},"hovertext":{"colors":{}}}"Code for Google Tag Manager users"},"children":[],"id":"7HF5MGRZuFZwNd9JdKWDU5Hl4ZyL85CXlJ6o81nAe9"}],{"name":"text","params":{"borderRadiustemplateId":{"allsimple paragraph":0,"btlvalue":0,[{"bbltype":0"paragraph","btrchildren":0,[{"bbrtype":0"paragraph","isIndividualCornerschildren":false},"padding[{"type":0,"gapparagraph":20,"verticalAlignmentchildren":[{"topfontSize"}}:16,{"idlineHeight":"EoLyOhOOS08sE1gsthEPa24px","namecolor":"column#555","childrenletterSpacing":[{0,"namefontFamily":"dividerPoppins, sans-serif","paramstext":{"templateId":"solid icon check-circle","color":"#3390F9","alignment":"start","fontSize":18,"fontColor":"#3390F9","height":1,"borderStyle":"solid","icon":"check-circle"To get your GTM code go to: https://admin.preezie.com/app/main/nextbuy-integration"}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"Code for Google Tag Manager users"},"children":[],"id":"5Hl4ZyL85CXlJ6o81nAe9"},{"nametype":"textparagraph","paramschildren":[{"templateIdfontSize":16,"simple paragraphlineHeight",:"value24px":[{,"typecolor":"paragraph#555","childrenletterSpacing":[{0,"typefontFamily":"bulletedPoppins, sans-listserif","childrentext":["nextbuy > Integration > Select your method: Google Tag Manager"}]},{"type":"list-itemparagraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"Create a custom HTML tag in GTM and copy the below code but replacing the parts in ","fontFamily":"Poppins, sans-serif"},"}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"yellow ","backgroundColor":"#f7f907"},":"Poppins, sans-serif","text":"Create a Custom HTML tag in GTM and give it a trigger to load on your thank you page only."}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"as below:"}]}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","letterSpacing":0,"color":{"light":"#3e46fd"}#555","fontSizeletterSpacing":140,"fontFamily":"Poppins, sans-serif","text":"<script type=\"text/javascript\" src=\"https://widget-cdn.preezie.com/production/preguide.min.js\"></script>"}]Now copy your custom code from "},{"typefontSize":"paragraph","children":[{16,"lineHeight":"24px","letterSpacing":0,"color":{"light#555":"#3e46fd"},"fontSizeletterSpacing":140,"fontFamily":"Poppins, sans-serif","text":"<script type=\"text/javascript\">"}]}2. Widget code for your confirmation page, ","italic":true},{"typefontSize":"paragraph"16,"children":[{"lineHeight":"24px","letterSpacing":0,"color":{"light":"#3e46fd#555"},"fontSizeletterSpacing":140,"fontFamily":"Poppins, sans-serif","text":" var targetElement = document.querySelector(\"."},{then add the part below in "},{"fontSize":16,"lineHeight":"24px","letterSpacing":0,"color":{"light#555":"#3e46fd"},"fontSizeletterSpacing":140,"fontFamily":"Poppins, sans-serif","text":"os-headeryellow ","backgroundColor":{"#f7f907type":"solid"},{"lineHeightlight":"24px#f6ff0f"}},{"letterSpacingfontSize":016,"colorlineHeight":{"light"24px","color":"#3e46fd#555"},"fontSizeletterSpacing":140,"fontFamily":"Poppins, sans-serif","text":"\")"to give the widget a position on your page:"}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","letterSpacing":0,"color":{"light":"#3e46fd#555"},"fontSizeletterSpacing":140,"fontFamily":"Poppins, sans-serif","text":" ;(function () {"}]},{"type":"paragraph","children":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"lineHeight":"24px","letterSpacing":0,"colortext":{"light":"#3e46fd"},"fontSize":14"<script type=\"text/javascript\" src=\"https://widget-cdn.preezie.com/production/preguide.min.js\" data-widgetid=\"PRE-78546111-44eb-4a312e-e29f-08db07f4253f,EPO-3a3110da-e0b2-400e-d952-08dadc98\" ","fontFamily":"Poppins, sans-serif","textcolor":" if (!targetElement) return"}]},{"type":"paragraph","children":[#3e46fd","fontSize":14},{"lineHeight":"24px","letterSpacing":0,"colorfontFamily":{"light"Poppins, sans-serif","color":"#3e46fd"},"fontSize":14,"fontFamilytext":"Poppins, sans-serif","text":" targetElement.outerHTML += '<br><div iddata-targets=\"preezieos-widget-div-id\"></div><div id=\"preezie-widget-div-id-popup\"></div>'"}]},header,os-header\" data-isafter=\"true\"","backgroundColor":{"type":"paragraphsolid","childrenlight":["#f6ff0f"}},{"lineHeight":"24px","letterSpacing":0,"color":{"light":"#3e46fd"},"fontSize":14,"fontFamily":"Poppins, sans-serif","text":" PREEZIE_GUIDE.render(["}]},{"type":"paragraph","children":[{"lineHeight":"24px","letterSpacing":0,"color":{"light":"#3e46fd"},"fontSize":14,"fontFamilytext":"Poppins, sans-serif","text":" {"></script>"}]}]}]}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","letterSpacing":0,"color":{"light#555":"#3e46fd"},"fontSizeletterSpacing":140,"fontFamily":"Poppins, sans-serif","text":" guideKey: \""}]},{"lineHeighttype":"24pxparagraph","letterSpacing"children":[{"fontSize":016,"colorlineHeight":{"light"24px","color":"#3e46fd#555"},"fontSizeletterSpacing":140,"fontFamily":"Poppins, sans-serif","text":"PRE-78546111-44eb-4a8e-e29f-08db07f4253f","backgroundColor":"#f7f907"},{You will need to update the "},{"fontSize":16,"lineHeight":"24px","letterSpacing":0,"color":{"light":"#3e46fd#555"},"fontSizeletterSpacing":140,"fontFamily":"Poppins, sans-serif","text":"\os-header, os-header","fontWeight":700}]},{"typefontSize":"paragraph"16,"children":[{"lineHeight":"24px","letterSpacing":0,"color":{"light":"#3e46fd#555"},"fontSizeletterSpacing":140,"fontFamily":"Poppins, sans-serif","text":" version: \"1.0.0\",part based on your page's HTML. "}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","letterSpacing":0,"color":{"light#555":"#3e46fd"},"fontSizeletterSpacing":140,"fontFamily":"Poppins, sans-serif","text":" renderTo: \"preezie-widget-div-id\","}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","letterSpacing":0,"color":{"light":"#3e46fd"}#555","fontSizeletterSpacing":140,"fontFamily":"Poppins, sans-serif","text":" },These additional parameters "}]},{"typefontSize":"paragraph","children":[{16,"lineHeight":"24px","letterSpacing":0,"color":{"light#555":"#3e46fd"},"fontSizeletterSpacing":140,"fontFamily":"Poppins, sans-serif","text":"data-targets" ]),"fontWeight":700}]},{"typefontSize":"paragraph"16,"children":[{"lineHeight":"24px","letterSpacing":0,"color":{"light#555":"#3e46fd"},"fontSizeletterSpacing":140,"fontFamily":"Poppins, sans-serif","text":"\t\tPREEZIE_GUIDE.render([, "}]},{"typefontSize":"paragraph"16,"children":[{"lineHeight":"24px","letterSpacing":0,"color":{"light#555":"#3e46fd"},"fontSizeletterSpacing":140,"fontFamily":"Poppins, sans-serif","text":" {"}]},{"type":"paragraph","children":[{data-isafter","fontWeight":700},{"fontSize":16,"lineHeight":"24px","letterSpacing":0,"color":{"light#555":"#3e46fd"},"fontSizeletterSpacing":140,"fontFamily":"Poppins, sans-serif","text":" guideKey: \"are used to reference the CSS class "},{"fontSize":16,"lineHeight":"24px","letterSpacing":0,"color":{"light":"#3e46fd#555"},"fontSizeletterSpacing":140,"fontFamily":"Poppins, sans-serif","text":"EPO-3a5710da-e0b2-400e-d952-08dadc93os-header","backgroundColorfontWeight":700},{"#f7f907fontSize"}:16,{"lineHeight":"24px","letterSpacing":0,"color":{"light#555":"#3e46fd"},"fontSizeletterSpacing":140,"fontFamily":"Poppins, sans-serif","text":" \"on the page to position the widget underneath, update this section to the correct CSS class on your page where you'll position the widget AFTER. For example,"}]},{"type":"paragraph","children":[{"lineHeighttype":"24pxparagraph","letterSpacing"children":[{"type":0"paragraph","colorchildren":[{"light"fontSize":16,"lineHeight":"24px","color":"#3e46fd#555"},"fontSizeletterSpacing":140,"fontFamily":"Poppins, sans-serif","text":" version: \"1.0.0\","}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","letterSpacing":0,"color":{"light#555":"#3e46fd"},"fontSizeletterSpacing":140,"fontFamily":"Poppins, sans-serif","text":" renderTo: \"preezie-widget-div-id-popup\","}]1. "},{"typefontSize":"paragraph","children":[{16,"lineHeight":"24px","letterSpacing":0,"color":{"light":"#3e46fd#555"},"fontSizeletterSpacing":140,"fontFamily":"Poppins, sans-serif","fontWeight":700,"text":" },"}]data-targets"},{"typefontSize":"paragraph"16,"children":[{"lineHeight":"24px","letterSpacing":0,"color":{"light":"#3e46fd#555"},"fontSizeletterSpacing":140,"fontFamily":"Poppins, sans-serif","text":" ])- this is the value of the CSS "}]},{"typefontSize":"paragraph"16,"children":[{"lineHeight":"24px","letterSpacing":0,"color":{"light":"#3e46fd#555"},"fontSizeletterSpacing":140,"fontFamily":"Poppins, sans-serif","text":" })()"}]},{"type":"paragraph","children":[{class ","fontWeight":700},{"fontSize":16,"lineHeight":"24px","letterSpacing":0,"color":{"light#555":"#3e46fd"},"fontSizeletterSpacing":140,"fontFamily":"Poppins, sans-serif","text":"</script>or HTML "}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"id "}]},{"typefontWeight":"list-item","children":[{700},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"This snippet requires you update the 3 sections to personalise the widget on your checkout confirmation page. You MUST update these values to see the widget loading correctly::"Poppins, sans-serif","fontSizetext":16"on the page where you want to load the widget"}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"","fontSize":16}]},{"type":"paragraph","children":[{"typefontSize":"paragraph"16,"childrenlineHeight":[{"type24px":"paragraph","childrencolor":[{"lineHeight":"24px"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"1. Update the two guideKey values to the ones shown in your CMS, the widget code will start with PRE, the pop up with EPO, e.g.","color":"#000000",2. "},{"fontSize":16}]},{"typelineHeight":"paragraph24px","childrencolor":[{"lineHeight#555":"24px","letterSpacing":0,"color":{"light":"#3e46fd"},"fontFamily":"Poppins, sans-serif","text":"data-isafter ","fontSizefontWeight":16}]700},{"typefontSize":"paragraph"16,"children":[{"lineHeight":"24px","letterSpacingcolor":0,"color#555":{,"lightletterSpacing":"#3e46fd"}0,"fontFamily":"Poppins, sans-serif","text":"data-widgetid=\": \"",- if this is 'true' it will load the code "},{"fontSize":14}16,{"lineHeight":"24px","letterSpacingcolor":0,"color#555":{,"lightletterSpacing":"#3e46fd"}0,"fontFamily":"Poppins, sans-serif","text":"PRE-78546111-44eb-4a8e-e29f-08db07f4253fafter ","backgroundColorfontWeight":"#f7f907"700},{"fontSize":14}16,{"lineHeight":"24px","letterSpacingcolor":0,"color#555":{,"lightletterSpacing":"#3e46fd"}0,"fontFamily":"Poppins, sans-serif","text":"\"","fontSize":14the class or id you have stated in data-targets. If this value is 'false' it will load the code INSIDE the class or id"}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","letterSpacingcolor":0,"color#555":{,"lightletterSpacing":"#3e46fd"}0,"fontFamily":"Poppins, sans-serif","text":"data-widgetid=\""}]},{"type": \"paragraph","children":[{"fontSize":14}16,{"lineHeight":"24px","letterSpacingcolor":0,"color#555":{,"lightletterSpacing":"#3e46fd"}0,"fontFamily":"Poppins, sans-serif","text":"EPO-3a5710da-e0b2-400e-d952-08dadc93","backgroundColor":"#f7f907","fontSize":14},{"lineHeight":"24px","letterSpacing":0,"color":{"light":"#3e46fd"},"fontFamily":"Poppins, sans-serif","text":"\"","fontSize":14}]},{"type":"paragraph","children":[{"lineHeight":"24px","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"","color":"#000000","fontSize":16}]},{"type":"paragraph","children":[{"lineHeight":"24px","letterSpacing":0,"fontFamily":"Poppins, sans-serif","color":"#000000","text":"2. Update the querySelector with the ","fontSize":16},{"lineHeight":"24px","letterSpacing":0,"fontFamily":"Poppins, sans-serif","color":"#000000","text":"HTML class","fontWeight":700,"fontSize":16},{"lineHeight":"24px","letterSpacing":0,"fontFamily":"PoppinsTo find out your CSS class to use, open your browser's inspect element to look at the HTML:"}]}]}]}]}]}]},"children":[],"id":"M-L2zpOG-VIBxWY8EWsF2"},{"name":"image","params":{"templateId":"full-width","alignment":"end","position":"center center","borderRadius":{"all":0,"bbl":0,"bbr":0,"btl":0,"btr":0,"isIndividualCorners":false},"image":{"value":"att188514306","target":"_blank","type":"attachment"},"width":861,"height":349},"children":[],"id":"SYzYU59mr6TufPJ9rZJrl"},{"name":"text","params":{"templateId":"simple paragraph","value":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","letterSpacing":0,"text":"Alternate version if it's not loading","fontFamily":"Open Sans, sans-serif","color":"#000000{"type":"solid","textlight":" you want to load the widget AFTER, follow these steps to find this:","fontSize":16#000000"},"fontWeight":700}]},{"type":"bulleted-listparagraph","children":[{"typefontSize":"list-item","children":[{"16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"PoppinsOpen Sans, sans-serif","color":{"type":"solid","textlight":"Make a test transaction#000000"},"text"fontSize":16:"Some platforms won't 'fire' the code in the right load order, therefore add this additional script to your GTM Custom HTML tag underneath the first script tag:"}]},{"type":"list-itemparagraph","children":[{"lineHeightfontSize":"24px"16,"colorlineHeight":"#55524px","letterSpacing":0,"fontFamily":"PoppinsOpen Sans, sans-serif","color":{"texttype":"Right-click on the part of the page you want to insert the widget AFTER, e.g. Thank you Graham!","fontSize":16}]},solid","light":"#000000"},"text":""}]},{"type":"paragraph","children":[{"type":"list-itemparagraph","children":[{"lineHeighttype":"paragraph","24pxchildren",:[{"colortype":"#555paragraph","letterSpacingchildren":0,[{"fontFamilytype":"Poppins, sans-serifparagraph","textchildren":"Choose Inspect and find the text in the HTML of the class=\" \" [{"type":"paragraph","fontSizechildren":16}]}]},[{"type":"paragraph","children":[{"lineHeighttype":"24pxparagraph","letterSpacingchildren":0,[{"fontFamilytype":"Poppins, sans-serifparagraph","fontSizechildren":16,[{"texttype":"hintparagraph","colorchildren":[{"lighttype":"#a0a0a0paragraph"},"fontWeightchildren":700},[{"lineHeight":"24px","letterSpacing":0,"fontFamilytext":"Poppins, sans-serif","fontSize":16,"color":{"light":"#a0a0a0"},"text":": this is usually in the Elements tab and looks like this <div class=\"os-header\"..."}]},{"type":"bulleted-list","children":[<script type=\"text/javascript\" src=\"https://widget-cdn.preezie.com/production/preguide.min.js\" data-widgetid=\"PRE-78546111-44eb-4a312e-e29f-08db07f4253f,EPO-3a3110da-e0b2-400e-d952-08dadc98\" data-targets=\"os-header,os-header\" data-isafter=\"true\"></script>","fontFamily":"Poppins, sans-serif","color":"#3e46fd","fontSize":14}]}]}]}]}]}]}]}]}]}]}]},{"type":"list-itemparagraph","children":[{"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"PoppinsOpen Sans, sans-serif","text":"Paste this text into the <script>","fontSizecolor":16},{"lineHeighttype":"24pxsolid","letterSpacinglight":0"#3E46FD"},"fontFamilyfontSize":"Poppins14, sans-serif","color":"#000000","text"fontWeight":700}]},{"type":"querySelector paragraph","fontSizechildren":16},[{"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"PoppinsOpen Sans, sans-serif","fontSize":16,"text":" making sure it has a . before it, e.g."}]}]},{"type":"paragraph","children":[window.document.dispatchEvent(new Event(\"DOMContentLoaded\", {","color":{"type":"paragraphsolid","children":[{"type"light":"paragraph#3E46FD"},"childrenfontSize":[{"type":"paragraph"14,"childrenfontWeight":[700}]},{"type":"paragraph","children":[{"lineHeight":"24px","letterSpacing":0,"colorfontFamily":{"light"Open Sans, sans-serif","text":" #3e46fdbubbles: true,"},"fontFamily"color":{"type":"Poppins, sans-serifsolid","textlight":"document.querySelector(\""#3E46FD"},"fontSize":14,"fontWeight":700}]},{"lineHeighttype":"24pxparagraph","letterSpacingchildren":0,[{"colorlineHeight":{"light24px":,"#3e46fdletterSpacing"}:0,"fontFamily":"PoppinsOpen Sans, sans-serif","text":" .os-headercancelable: true","backgroundColorcolor":{"type":"solid","light":"#f7f907#3E46FD"},"fontSize":14,"fontWeight":700}]},{"lineHeighttype":"24pxparagraph","letterSpacingchildren":0,[{"colorlineHeight":{"light24px":,"#3e46fdletterSpacing"}:0,"fontFamily":"PoppinsOpen Sans, sans-serif","text":" \")"}));","color":{"type":"solid","light":"#3E46FD"},"fontSize":14}]}]}]}],"fontWeight":700}]},{"type":"paragraph","children":[{"fontSize"lineHeight":"24px","letterSpacing":160,"lineHeightfontFamily":"24pxOpen Sans, sans-serif","colortext":"#555</script>","letterSpacing"color":{"type":0"solid","fontFamilylight":"Poppins, sans-serif#3E46FD"},"textfontSize":14,"fontWeight":700}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"PoppinsOpen Sans, sans-serif","textcolor":"Now add a trigger to this Tag for the checkout confirmation page and save your tag in GTM, preview it to ensure you can see the widget is loading."}]}]}]}]}]},"children":[],"id":"JoNvB3Yddi3yXXetv24ns"},{"name":"image","params":{"templateId":"full-width","alignment":"end","position":"center center","borderRadius":{"all":0,"bbl":0,"bbr":0,"btl":0,"btr":0,"isIndividualCorners":false},"image":{"value":"att188514306","target":"_blank","type":"attachment"},"width":861,"height":349{"type":"solid","light":"#3E46FD"},"fontSize":14,"fontWeight":700,"text":""}]},{"type":"paragraph","children":[{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","letterSpacing":0,"fontFamily":"Open Sans, sans-serif","color":{"type":"solid","light":"#000000"},"text":"This will then wait for the page to fully load before loading the nextbuy widget."}]}]}]}]},"children":[],"id":"SYzYU59mr6TufPJ9rZJrlhDx5UHI4q4jmRno-y7JXw"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"JasO-ECdi9HcAMTTIIgUz","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"iFj8jRX8vswJTf3viC6dB","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"JFb_01dO86eNvJNoBe5yF","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"7lVan2HPU1HLyDriJdqiu","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}}],"params":{"layout":[1,2],"gap":35,"minHeight":100,"padding":10,"borderRadius":0,"size":"full"}},{"id":"T4ihSrjMyugcGBTYI-XIf","name":"row","children":[{"id":"fRM9mySNPCNkjLzUaDdfv","name":"column","children":[{"name":"button","params":{"templateId":"regular button","label":"Other ecomm platforms/custom websites","size":"medium","shape":"rounded","alignment":"end","states":{"idle":{"colors":{"background":"#000000"}},"hover":{"colors":{}}},"link":{"value":"https://preezie.atlassian.net/wiki/spaces/PW/pages/19104300/Custom+platforms+-+Pixel+tracking+guide","target":"_blank","type":"link"}},"children":[],"id":"bDb9vDLEVv2INNgjI2hwN"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"v-EEBrEgBPr9p96iV3KdH","name":"column","children":[{"name":"divider","params":{"templateId":"solid icon check-circle","color":"#000000","alignment":"start","fontSize":18,"fontColor":"#000000","height":1,"borderStyle":"solid","icon":"check-circle","text":"Code for all other ecomm platforms"},"children":[],"id":"6zS0cmloCex6NitriydvS"},{"name":"text","params":{"templateId":"simple paragraph","value":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","letterSpacing":0,"text":"For non-Shopify/GTM methods, there are 2 options:","color":"#000000","fontFamily":"Poppins, sans-serif"}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","letterSpacing":0,"text":"","color":"#000000","fontFamily":"Poppins, sans-serif"}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","letterSpacing":0,"text":"1. Place the personalised code you are shown in the CMS on your checkout confirmation page in the page position that will show the preezie journey. For example,","color":"#000000","fontFamily":"Poppins, sans-serif"}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","letterSpacing":0,"text":"","color":"#000000","fontFamily":"Poppins, sans-serif"}]},{"type":"paragraph","children":[{"lineHeight":"24px","letterSpacing":0,"text":"<script type=\"text/javascript\" src=\"https://widget-cdn.preezie.com/production/preguide.min.js\" data-widgetid=\"PRE-78546111-44eb-4a8e-e29f-08db07f4253f,EPO-3a5710da-e0b2-400e-d952-08d423adc93\"></script>","color":"#3e46fd","fontSize":14,"fontFamily":"Poppins, sans-serif"}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","letterSpacing":0,"text":"","color":"#000000","fontFamily":"Poppins, sans-serif"}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","letterSpacing":0,"text":"We recommend placing after the confirmation 'Thank you' statement. ","color":"#000000","fontFamily":"Poppins, sans-serif"}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","letterSpacing":0,"text":"","color":"#000000","fontFamily":"Poppins, sans-serif"}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","letterSpacing":0,"text":"2. Or, you can use some extra values in the script to position it on the page for you, for example:","color":"#000000","fontFamily":"Poppins, sans-serif"}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","letterSpacing":0,"text":"","color":"#000000","fontFamily":"Poppins, sans-serif"}]},{"type":"paragraph","children":[{"lineHeight":"24px","letterSpacing":0,"text":"<script type=\"text/javascript\" src=\"https://widget-cdn.preezie.com/production/preguide.min.js\" data-widgetid=\"PRE-78546111-44eb-4a8e-e29f-08db07f4253f,EPO-3a5710da-e0b2-400e-d952-08dadc93\" ","fontFamily":"Poppins, sans-serif","color":"#3e46fd","fontSize":14},{"lineHeight":"24px","letterSpacing":0,"fontFamily":"Poppins, sans-serif","color":"#3e46fd","fontSize":14,"text":"data-targets=\"os-header,os-header\" data-isafter=\"true\"","backgroundColor":"#f7f907"},{"lineHeight":"24px","letterSpacing":0,"fontFamily":"Poppins, sans-serif","color":"#3e46fd","fontSize":14,"text":"></script>"}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","letterSpacing":0,"text":"","color":"#000000","fontFamily":"Poppins, sans-serif"}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","letterSpacing":0,"text":"These two values in the script can be updated based on your checkout page HTML.","color":"#000000","fontFamily":"Poppins, sans-serif"}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","letterSpacing":0,"text":"","color":"#000000","fontFamily":"Poppins, sans-serif"}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","letterSpacing":0,"text":"1. ","color":"#000000","fontFamily":"Poppins, sans-serif"},{"fontSize":16,"lineHeight":"24px","letterSpacing":0,"color":"#000000","fontFamily":"Poppins, sans-serif","text":"data-targets ","fontWeight":700},{"fontSize":16,"lineHeight":"24px","letterSpacing":0,"color":"#000000","fontFamily":"Poppins, sans-serif","text":"- this is the value of the css class or html id on the page where you want to load the widget"}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","letterSpacing":0,"text":"","color":"#000000","fontFamily":"Poppins, sans-serif"}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","letterSpacing":0,"text":"2. ","color":"#000000","fontFamily":"Poppins, sans-serif"},{"fontSize":16,"lineHeight":"24px","letterSpacing":0,"color":"#000000","fontFamily":"Poppins, sans-serif","text":"data-isafter","fontWeight":700},{"fontSize":16,"lineHeight":"24px","letterSpacing":0,"color":"#000000","fontFamily":"Poppins, sans-serif","text":" - if this is 'true' it will load the code after the class or id you have stated in data-targets. If this value is 'false' it will load the code INSIDE the class or id"}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","letterSpacing":0,"text":"","color":"#000000","fontFamily":"Poppins, sans-serif"}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","letterSpacing":0,"text":"In the above example, data-widgetid is loading 2 widgets one as an embedded widget (PRE) and the second as it's pop up version (EPO). It is using data-targets=\"os-header,os-header\" to load both widgets AFTER the HTML with class=\"os-header\".","color":"#000000","fontFamily":"Poppins, sans-serif"}]}]}]},"children":[],"id":"wlZrnQyoWIENFiK_2oixP"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"center"}},{"id":"N3Casck9LqSSJzJtnodAb","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"Z4M_0IXN2b6nS9HRM6cif","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"j2j_KqBHiMANcToGuZqO6","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"6FENwCa7PyaqMHBFE11NH","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}}],"params":{"layout":[1,2],"gap":35,"minHeight":150,"padding":10,"borderRadius":0,"size":"full"}},{"id":"RdubZLdH7vi4cxd8nn9ek","name":"row","children":[{"id":"AC7HySEsddXojnAgP2oha","name":"column","children":[{"name":"icon","params":{"templateId":"rounded award","size":20,"color":"#000000","alignment":"end","icon":"angles-right","shape":"rounded","background":"#FFA500"},"children":[],"id":"bZAZrna1zCNcPxUnSgsiG"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"bF925Hpovb0MZ_0DGxvJW","name":"column","children":[{"name":"text","params":{"templateId":"headline 2","value":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"text":"3. Add the Transaction tracking to your confirmation page","letterSpacing":0,"fontWeight":700,"fontSize":20,"fontFamily":"Poppins, sans-serif"}]}]}]},"children":[],"id":"QZZuDy1AdAQ6lvFX_C1zN"},{"name":"text","params":{"templateId":"simple paragraph","value":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"text":"Finally to track the value of the referred transactions, you need to add our transaction pixel to your checkout confirmation page. This loads after purchase and captures the order value to automatically calculate your network commission.","fontFamily":"Poppins, sans-serif"}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"text":"","fontFamily":"Poppins, sans-serif"}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"text":"How you do this is based on your ecommerce platform, the code shown to will be custom for your platform method.","fontFamily":"Poppins, sans-serif"}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":""}]},{"type":"bulleted-list","children":[{"type":"list-item","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"For "},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"Shopify ","fontWeight":700},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"you can copy and paste the exact code from your CMS and place into the "},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"Settings > Checkout > Order status page > Additional scripts","fontWeight":700},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":" box"}]},{"type":"list-item","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"For "},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"BigCommerce ","fontWeight":700},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"you can copy and paste the exact code from your CMS into your Script Manager or theme's HTML file, check this "},{"type":"link","link":{"value":"https://preezie.atlassian.net/wiki/spaces/PW/pages/43778049/BigCommerce+Pixel+Tracking","target":"_blank","type":"link"},"children":[{"fontSize":16,"lineHeight":"24px","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"guide","color":"#0091FF","underline":true}]},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":" to check if it is working "}]}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"For any Magento or other custom integrations you use the code from the CMS but also need to create custom code to pass the "},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"cart values ","fontWeight":700},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"of the product id, name, quantity and price (as the customer paid) - for example: "}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":""}]},{"type":"paragraph","children":[{"lineHeight":"24px","letterSpacing":0,"text":"<script>","color":"#3e46fd","fontSize":14,"fontFamily":"Poppins, sans-serif"}]},{"type":"paragraph","children":[{"lineHeight":"24px","letterSpacing":0,"text":" prz(\"event\", \"transaction\", `{\"products\": [{\"productId\": \"SKU1\", \"productName\":\"${encodeURIComponent(`product1`)}\", \"quantity\":1, \"price\":0.00},]}`);","color":"#3e46fd","fontSize":14,"fontFamily":"Poppins, sans-serif"}]},{"type":"paragraph","children":[{"lineHeight":"24px","letterSpacing":0,"text":"</script>","color":"#3e46fd","fontSize":14,"fontFamily":"Poppins, sans-serif"}]},{"type":"paragraph","children":[{"lineHeight":"24px","letterSpacing":0,"color":"#3e46fd","fontSize":14,"fontFamily":"Poppins, sans-serif","text":""}]},{"type":"paragraph","children":[{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"would be processed as:"}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","fontWeight":700,"text":""}]}]},{"type":"paragraph","children":[{"type":"paragraph","children":[{"lineHeight":"24px","letterSpacing":0,"text":"<script>","color":"#3e46fd","fontSize":14,"fontFamily":"Poppins, sans-serif"}]},{"type":"paragraph","children":[{"lineHeight":"24px","letterSpacing":0,"text":" prz(\"event\", \"transaction\", `{\"products\": [{\"productId\": \"12345\", \"productName\":\"Blue Tshirt XL\", \"quantity\":1, \"price\":30.00},]}`);","color":"#3e46fd","fontSize":14,"fontFamily":"Poppins, sans-serif"}]},{"type":"paragraph","children":[{"lineHeight":"24px","letterSpacing":0,"text":"</script>","color":"#3e46fd","fontSize":14,"fontFamily":"Poppins, sans-serif"}]}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":""}]},{"type":"paragraph","children":[{"lineHeight":"24px","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"Follow these instructions to test your pixel is working","fontSize":18,"color":"#000000","fontWeight":700}]},{"type":"paragraph","children":[{"text":""},{"type":"link","link":{"value":"https://preezie.atlassian.net/wiki/spaces/PW/pages/19104300/Custom+platforms+-+Pixel+tracking+guide#%5BinlineExtension%5DHow-to-test-it","target":"_blank","type":"link"},"children":[{"fontSize":16,"lineHeight":"24px","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"https://preezie.atlassian.net/wiki/spaces/PW/pages/19104300/Custom+platforms+-+Pixel+tracking+guide#%5BinlineExtension%5DHow-to-test-it","color":"#0091FF","underline":true}]},{"text":""}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":""}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"For more details on each method "},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"visit these guides:","fontWeight":700}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Open Sans, sans-serif","text":""}]}]}]},"children":[],"id":"IG0t8Sr_r3-ylG5rOQod5"},{"name":"button","params":{"templateId":"regular button","label":"Shopify","size":"medium","shape":"rounded","alignment":"start","states":{"idle":{"colors":{"background":"#000000"}},"hover":{"colors":{"background":"#FFA500"}}},"link":{"value":"https://preezie.atlassian.net/wiki/spaces/PW/pages/1015832/Shopify+Pixel+Tracking","target":"_blank","type":"link"}},"children":[],"id":"sYXY0jawEOQw5LntQpFBx"},{"name":"button","params":{"templateId":"regular button","label":"Google Tag Manager","size":"medium","shape":"rounded","alignment":"start","states":{"idle":{"colors":{"background":"#000000"}},"hover":{"colors":{"background":"#FFA500"}}},"link":{"value":"https://preezie.atlassian.net/wiki/spaces/PW/pages/48136226/Google+Tag+Manager+Pixel+Tracking","target":"_blank","type":"link"}},"children":[],"id":"YvqK_7Lr0IzGzRkPZ-Spj"},{"name":"button","params":{"templateId":"regular button","label":"BigCommerce","size":"medium","shape":"rounded","alignment":"start","states":{"idle":{"colors":{"background":"#000000"}},"hover":{"colors":{"background":"#FFA500"}}},"link":{"value":"https://preezie.atlassian.net/wiki/spaces/PW/pages/43778049/BigCommerce+Pixel+Tracking","target":"_blank","type":"link"}},"children":[],"id":"9wT8LL9m3-UtQC4EESKem"},{"name":"button","params":{"templateId":"regular button","label":"Neto","size":"medium","shape":"rounded","alignment":"start","states":{"idle":{"colors":{"background":"#000000"}},"hover":{"colors":{"background":"#FFA500"}}},"link":{"value":"https://preezie.atlassian.net/wiki/spaces/PW/pages/43778119/Neto+Pixel+Tracking","target":"_blank","type":"link"}},"children":[],"id":"lr0S1n_ayaFD35Ytya9g9"},{"name":"button","params":{"templateId":"regular button","label":"Magento & Custom platforms","size":"medium","shape":"rounded","alignment":"start","states":{"idle":{"colors":{"background":"#000000"}},"hover":{"colors":{"background":"#FFA500"}}},"link":{"value":"https://preezie.atlassian.net/wiki/spaces/PW/pages/19104300/Custom+platforms+-+Pixel+tracking+guide","target":"_blank","type":"link"}},"children":[],"id":"4oOgIVg3G4iKXjplZS8lJ"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"l3VAt35E9d7_0Z2F3stzl","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"B7aW6LAq8n_lXvG3zmoWI","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"Yh4Dexn_3Pkdiq9d8XLUm","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"jBrXYYlApIzbK2qZ6SL5e","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}}],"params":{"layout":[1,2],"gap":35,"minHeight":100,"padding":10,"borderRadius":0,"size":"full"}}],"name":"section"},{"id":"YYBb-4LA8JMAoJ43krkjj","params":{"background":"#000000","padding":0,"gap":10},"children":[{"id":"1RAVEyPU9x0J25VfMKCyq","name":"row","children":[{"id":"qqfyTlqYKS3wj_8GQw9sp","name":"column","children":[{"name":"icon","params":{"icon":"4","size":28,"color":"#ffffff","shape":"rounded","alignment":"start","background":"#BFC0C1"},"children":[],"id":"yicO7GuWTPDazrjtvUkBq"},{"name":"text","params":{"value":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"text":"Go live","letterSpacing":0,"fontWeight":600,"fontSize":22,"color":"#ffffff","fontFamily":"Poppins, sans-serif"}],"align":"left"}]}]}]},"children":[],"id":"x2Tub_fcX0DVayOsHthnm"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"-rwr41EjifhkJBYX-rgsa","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"pO9N4lt80ap6fasHirxH_","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"sBhtYMj5ggx3C7CgWPivu","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"6SEGIlbVKPwHghaTHXc61","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"2VpdrzMlvBU2GaiG1N86t","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}}],"params":{"layout":[1],"gap":65,"minHeight":100,"padding":10,"borderRadius":0}}],"name":"section"},{"id":"r66xqhdWqvuvMD-LObZUX","params":{"background":"#000000","padding":0,"gap":10},"children":[{"id":"NEgfLXczcLFrPq2cJEDxO","name":"row","children":[{"id":"X0G4pzcbBImEb8SEoHubW","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"S2yGlxSLVWMJhGzpbA7uv","name":"column","children":[{"name":"text","params":{"templateId":"simple paragraph","value":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","letterSpacing":0,"text":"Once you have tested everything is loaded on your staging site or after a test transaction, send us a screenshot via email to your onboarding representative and we'll add your brand to the network and you're ready to go live.","fontFamily":"Poppins, sans-serif","color":{"light":"#ffffff"}}]}]}]},"children":[],"id":"z8uuMmjHsImH_8v2DUcub"},{"name":"divider","params":{"templateId":"solid icon exclamation-circle","color":"#FFA500","alignment":"start","fontSize":18,"fontColor":"#FFA500","height":1,"borderStyle":"solid","icon":"exclamation-circle","text":"Things to remember"},"children":[],"id":"3kyv-vjAUUQVIfwSZ5nA-"},{"name":"text","params":{"templateId":"simple paragraph","value":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","letterSpacing":0,"color":"#ffffff","text":"","fontFamily":"Poppins, sans-serif"}]},{"type":"bulleted-list","children":[{"type":"list-item","children":[{"fontSize":16,"lineHeight":"24px","letterSpacing":0,"color":"#ffffff","text":"After adding the code above to your staging site, you should see the widget loading a test brand","fontFamily":"Poppins, sans-serif"}]}]},{"type":"bulleted-list","children":[{"type":"list-item","children":[{"fontSize":16,"lineHeight":"24px","letterSpacing":0,"color":"#ffffff","text":"Send a link or screenshot to your onboarding rep via email, they will then add your brand to the network as well as confirm which brands you’ll refer out to","fontFamily":"Poppins, sans-serif"}]}]},{"type":"bulleted-list","children":[{"type":"list-item","children":[{"fontSize":16,"lineHeight":"24px","letterSpacing":0,"color":"#ffffff","text":"Launch the code to live order confirmation page and monitor the clicks in","fontFamily":"Poppins, sans-serif"}]}]}]}]},"children":[],"id":"45siUv8v6BzUpDSYE1AEJ"},{"name":"spacer","params":{"space":10},"children":[],"id":"g3DnnK_-oKof3sBXH5NfI"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"FlZibvtWySpDUAFzwK3kI","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"wMY4eWPcrW273Syuso8x3","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"BbI5y75jQuQ_jNDQsyOr-","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"PnbYIEe6RwQmlEaAeXagj","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}}],"params":{"layout":[1,2],"gap":35,"minHeight":200,"padding":10,"borderRadius":0,"size":"full"}}],"name":"section"},{"id":"BXjeQtKUEAdB93hltNEGp","params":{"background":"#3A3A3A","padding":3,"gap":10},"children":[{"id":"oabILin-NAdsfV2H3VpJF","name":"row","children":[{"id":"3KTqFrXfQ1zE6cmnpU9NO","name":"column","children":[{"name":"icon","params":{"icon":"5","size":28,"color":"#ffffff","shape":"rounded","alignment":"start","background":"#BFC0C1"},"children":[],"id":"UTLfmGrQZmSNKszY_imu7"},{"name":"text","params":{"value":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"text":"How to monitor performance","letterSpacing":0,"fontWeight":600,"fontSize":20,"color":"#ffffff","fontFamily":"Poppins, sans-serif"}],"align":"left"}]}]}]}]},"children":[],"id":"sJUo4ilv1laOZcfjUK1Dd"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"NGnKSvqbr4rlZwQJZPBbg","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"MvWmq-6YSjRViAgRS-OGO","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"9jcjC13hgdawjL5nYTZ0U","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"7lVL4GhHuLs_JHD9YvN2j","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"GngXax-QKykxeL85zqc4z","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}}],"params":{"layout":[1,1],"gap":65,"minHeight":100,"padding":10,"borderRadius":0}}],"name":"section"},{"id":"8UC6njQylwqAv6b9caqlH","params":{"background":"#3A3A3A","padding":15,"gap":10},"children":[{"id":"3QE8-unT9Tnlvho1c_i3P","name":"row","children":[{"id":"o2ONOxY7uobYTu_ZuFxo0","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"-L_Xejo7okvCmR55DZEFQ","name":"column","children":[{"name":"text","params":{"templateId":"simple paragraph","value":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","letterSpacing":0,"color":"#ffffff","text":"Check out our guide on monitoring performance and our email remarketing feature.","fontFamily":"Poppins, sans-serif"}]}]}]}]},"children":[],"id":"77J5B3hmeoHyQW9ItI3MX"},{"name":"button","params":{"templateId":"regular button","label":"Go to monitoring performance guide","size":"medium","shape":"circular","alignment":"start","states":{"idle":{"colors":{"background":"#FFA500","label":"#ffffff"}},"hover":{"colors":{"background":"#ffffff","label":"#FFA500","outline":"#FFA500"}}},"link":{"value":"145195058","target":"_blank","type":"page"}},"children":[],"id":"RVNmYVmrL5eHtIDeK5TMe"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"8wEyfQqYHNQD5VkWVSvc_","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"1lySTV_jsvJCqC8p8aHw0","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"6jV9kIwN_mSmjTddTwWqm","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"-P4g0S4iwyodWdypQSmq4","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}}],"params":{"layout":[1,2],"gap":10,"minHeight":200,"padding":10,"borderRadius":0}}],"name":"section"}],"id":"4SdUqWhHe6DO6JUtnz-Lb"} |
---|
|