Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Appanvil karma designer
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 personalised script code to the checkout 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-08dadc93" 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&nbsp;<span>(Incl. Shopify Plus &amp; 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 HTML tag in GTM and copy the below code but replacing the parts in yellow as below:<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=": "PRE-78546111-44eb-4a8e-e29f-08db07f4253f"data-widgetid=": "EPO-3a5710da-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 loading. 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 more details on each method visit these guides: Shopify Google Tag Manager BigCommerce Neto Magento &amp; 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 guidepage{"name":"pageyou 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 &amp; 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":[{"idname":"zHLaZhN5XkZfWi0V3qSiFicon","params":{"backgroundicon":"#0000001","paddingsize":3920,"gapcolor":10}"#FFA500","childrenshape":[{"id"rounded","alignment":"HVlS4qLSjLXgUanpXQsOQstart","namebackground":"row#000000"},"children":[{],"id":"3MqpZDWb-ny02oDPJLL_hvMH1SGliJ5yBwhO7b3Yts","name":"column","children":[},{"name":"text","params":{"value":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"text":"How to add nextbuy to your website"First complete your sign-up form","letterSpacing":0,"fontWeight":600,"letterSpacingcolor":-1"#3a3a3a","lineHeightfontFamily":"unsetPoppins, sans-serif","fontSize":3218}],"coloralign":"#ffffff"left"}]}]},"children":[],"fontFamilyid":"Poppins, sans-serif"}]},{"4GO_n_95gAp4AllO8Oz2c"},{"name":"text","params":{"value":[{"type":"paragraph","children":[{"fontSizetype":16"paragraph","lineHeight"children":[{"type":"24pxparagraph","coloralign":"#555left","children":[{"letterSpacing":0,"text"fontWeight":300,"color":"#3a3a3a","fontFamilytext":"Open Sans, sans-serif"}]}]}]},"children":[],"id":"KpvekJIoLFYVdNAyuKAGuAfter completing your ","fontSize":14,"fontFamily":"Poppins, sans-serif"},{"nametype":"textlink","paramslink":{"templateIdvalue":"simple paragraphhttps://preezie.com/solutions/nextbuy/get-started","valuetarget":[{"_blank","type":"paragraphlink"},"children":[{"type"letterSpacing":0,"fontWeight":300,"text":"paragraphapplication form","childrenfontSize":[{14,"typefontFamily":"paragraphPoppins, sans-serif","childrencolor":[{"fontSize":16,"lineHeight":"24px","letterSpacing":0"#0091FF","underline":true}]},{"letterSpacing":0,"fontWeight":300,"color":"#3a3a3a","text":" nextbuy is a network of websites that refer shoppers to one another post-checkoutwe will send you a CMS account invite. ","colorfontSize":"#ffffff"14,"fontFamily":"Poppins, sans-serif"}]},{"type":"paragraph","childrenalign":[{"fontSizeleft":16,"lineHeightchildren":[{"24pxletterSpacing":0,"letterSpacingfontWeight":0300,"color":"#ffffff#3a3a3a","textfontSize":""14,"fontFamily":"Poppins, sans-serif","text":""}]},{"type":"paragraph","childrenalign":[{"fontSizeleft":16,"lineHeightchildren":[{"24px","letterSpacing":0,"colorfontWeight":"#ffffff"300,"text":"Below are the instructions to set up nextbuy on your site consisting of 3 code snippets to add to your site.""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":"ZcI0qgOLc5VEJpv-5U8NbXg8fTdVNVthdaNSfjseTY"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"centertop"}},{"id":"EKuRC5cMwcB7Z6yD6NPW5iA5_30AlFFJXDMqyS-H_O","name":"column","children":[{"name":"imageicon","params":{"icon":"2","size":20,"color":"#FFA500","shape":"rounded","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"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":"dividericon","params":{"templateIdicon":"solid text start3","colorsize":"#FFA500"20,"alignmentcolor":"start#FFA500","fontSizeshape":20,"fontColorrounded":"#FFA500","heightalignment":2,"borderStylestart":"solid","textbackground":"Existing preezie customers#000000"},"children":[],"id":"gLLTkHt3whAjashAdRj1j0NZ10hj67CIaHCnLRT2EN"},{"name":"text","params":{"value":[{"templateIdtype":"headline and paragraph","valuechildren":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"fontSizetext":16,"lineHeight":"24px""Add 3 code snippets to your site","letterSpacing":0,"textfontWeight":"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.",600,"color":"#3A3A3A#3a3a3a","fontFamily":"Poppins, sans-serif","fontSize":18}],"align":"left"}]}]}]},"children":[],"id":"pF8gPBudu58Ep7wnwDBYqHZJtZ-dfKIEUKFhtkQKIU"}],{"paramsname":{"borderRadiustext":{,"allparams":0,{"btlvalue":0,[{"bbltype":0,"btrparagraph":0,"bbrchildren":0,[{"isIndividualCornerstype":false},"paddingparagraph":0,"gapchildren":20,[{"verticalAlignmenttype":"topparagraph"}},{"idchildren":[{"atQ9o1p4xpuaEQqtiLzSDtype","name":"columnparagraph","children":[],"params":{"borderRadiustype":{"allparagraph":0,"btlchildren":0,[{"bbltext":0,"btrFollow the ":0,"bbrletterSpacing":0,"isIndividualCornersfontWeight":false}300,"paddinglineHeight":0,"gapunset":20,"verticalAlignmentfontFamily":"top"}},{"idPoppins, sans-serif","color":"e8GxSt4utNxGSCgk636m9#000000","namefontSize":"column"14},{"childrenletterSpacing":[]0,"paramsfontWeight":{300,"borderRadiuslineHeight":{"allunset":0,"btlfontFamily":0"Poppins, sans-serif","bblcolor":0"#000000","btrfontSize":014,"bbrtext":0"Integration ","isIndividualCornersitalic":falsetrue},{"paddingletterSpacing":0,"gapfontWeight":20300,"verticalAlignmentlineHeight":"topunset"}},{"idfontFamily":"QtliuVJB7bhcEHvf82JfuPoppins, sans-serif","namecolor":"column#000000","childrenfontSize":[]14,"paramstext":{"borderRadius"menu steps in the CMS."}],"align":{"allleft":0},{"btltype":0,"bblparagraph":0,"btralign":0,"bbrleft":0,"isIndividualCornerschildren":false},"padding[{"letterSpacing":0,"gapfontWeight":20300,"verticalAlignmentlineHeight":"topunset"}},{"idfontFamily":"80fPoppins, sans-NAg10S7GZgcwnBAmFserif","namecolor":"column#000000","childrenfontSize":[]14,"paramstext":{"borderRadius":}]},{"alltype":0,"btlparagraph":0,"bblalign":0,"btrleft":0,"bbrchildren":0,[{"isIndividualCornersletterSpacing":false},"padding":0,"gapfontWeight":20300,"verticalAlignmentlineHeight":"topunset"}},{"idfontFamily":"oq9LAHcaPoppins, sans-vGlE6FNnBNIsserif","namecolor":"column#000000","childrenfontSize":[]14,"paramstext":{"borderRadius":{"all"1. Add the Tracking code to "},{"letterSpacing":0,"btllineHeight":0"unset","bblfontFamily":0"Poppins, sans-serif","btrtext":0"all pages that will ","bbrcolor":0"#000000","isIndividualCornersfontSize":false14},{"paddingletterSpacing":0,"gaplineHeight":20"unset","verticalAlignmentfontFamily":"top"}}]Poppins, sans-serif","paramscolor":{"layout#000000":[1],"gapfontSize":1014,"minHeighttext":100,"paddingreceive incoming traffic":10,"borderRadiusfontWeight":0,"size":"medium"}}],"name700}]},{"type":"sectionparagraph"},{"idalign":"aA5hi5Go8vcVR8PeLmoUXleft","paramschildren":[{"backgroundletterSpacing":0,"#fffffflineHeight",:"paddingunset":43,"gapfontFamily":10},"children":[{"id"Poppins, sans-serif","text":"J9_8sigQJ5MZQ5aaFuOl6","namecolor":"row#000000","childrenfontSize":[14}]},{"idtype":"WKmyGzRrXCM_vl_akfyocparagraph","namealign":"columnleft","children":[{"nameletterSpacing":"icon"0,"params":{"iconlineHeight":"1unset","sizefontFamily":20"Poppins, sans-serif","color":"#FFA500#000000","shapetext":"rounded2. Add the nextbuy widget to your ","alignmentfontSize":14},{"startletterSpacing":0,"backgroundlineHeight":"#000000unset"},"childrenfontFamily":[]"Poppins, sans-serif","idcolor":"vMH1SGliJ5yBwhO7b3Yts#000000"},{"nametext":"textcheckout confirmation page","paramsfontWeight":{700,"valuefontSize":[14}]},{"type":"paragraph","childrenalign":[{"typeleft":"paragraph","children":[{"text":"First complete your sign-up form","letterSpacing":0,"fontWeight":600300,"colorlineHeight":"#3a3a3aunset","fontFamily":"Poppins, sans-serif","fontSizetext":18}]"","aligncolor":"left#000000"}]}]},"childrenfontSize":[],"id":"4GO_n_95gAp4AllO8Oz2c"14}]},{"nametype":"textparagraph","paramsalign":{"value":[{"type":"paragraph"left","children":[{"typeletterSpacing":"paragraph"0,"childrenfontWeight":[{300,"typelineHeight":"paragraphunset","alignfontFamily":"leftPoppins, sans-serif","childrencolor":[{"letterSpacing#000000":0,"fontWeighttext":300,"color":"#3a3a3a"3. Add the Transaction pixel to your ","textfontSize":"After completing your "14},{"letterSpacing":0,"fontSizelineHeight":14"unset","fontFamily":"Poppins, sans-serif"},{"typetext":"linkcheckout confirmation page","linkfontWeight":{700,"valuecolor":"https://preezie.com/solutions/nextbuy/get-started#000000","targetfontSize":"_blank","type14}]}]}]}]}]}]},"children":[],"id":"linkvAox7IauMzqEIoew6fb9G"}],"params":{"childrenborderRadius":[{"letterSpacingall":0,"fontWeightbtl":3000,"textbbl":0,"application formbtr":0,"fontSizebbr":140,"fontFamilyisIndividualCorners":"Poppins, sans-serif","color":"#0091FF","underline":true}]false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"letterSpacingid":0"qDsTHyjVcK4z94klyPQOK","fontWeightname":300"column","color"children":[{"name":"#3a3a3aicon","text"params":{"icon":" we will send you a CMS account invite. 4","fontSizesize":1420,"fontFamilycolor":"Poppins, sans-serif"}]},{"type#FFA500","shape":"paragraphrounded","alignalignment":"leftstart","childrenbackground":[{"letterSpacing#000000":0},"fontWeightchildren":300[],"colorid":"#3a3a3aw8jvtbDAIi0jW8bfmtrLR"},{"fontSizename":14,"fontFamily":text"Poppins, sans-serif",params"text":{""}]},value":[{"type":"paragraph","alignchildren":[{"type":"leftparagraph","children":[{"text":"Go live","letterSpacing":0,"fontWeight":300600,"color":"#3a3a3a","fontSize":1418,"fontFamily":"Poppins, sans-serif"}],"textalign":"Once you have access, your onboarding rep will then send you your custom website code."}]}]left"}]}]},"children":[],"id":"Xg8fTdVNVthdaNSfjseTYNS87me7hYzhN7byPYVAel"}],"params":{"borderRadiusname":{"alltext":0,"btlparams":0,{"bblvalue":0,[{"btrtype":0,"bbrparagraph":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"iA5_30AlFFJXDMqyS-H_O","name":"column","children":[{"type":"paragraph","children":[{"nametype":"iconparagraph","paramschildren":[{"icontext":"2","size":20,"color":"#FFA500","shape":"rounded","alignment":"start","background":"#000000"},"children":[],"id":"aakzMu1-vU8xdMbIMLRbNOnce 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"},{"nametype":"textlink","paramslink":{"value":"https://admin.preezie.com/app/main/dashboard",":[{target":"_blank","type":"paragraphlink"},"children":[{"typeletterSpacing":0,"paragraphfontWeight":300,"childrenfontSize":[{14,"text":"Create your offersnextbuy CMS menu","letterSpacingcolor":0"#0091FF","fontWeightunderline":600true,"colorlineHeight":"#3a3a3aunset","fontFamily":"Poppins, sans-serif","fontSize":18}]},{"aligntext":"left"}]}]},"childrenlineHeight":[]"unset","idfontFamily":"GENE3yFS-Fmb_-l3WHlelPoppins, sans-serif"}],{"namealign":"textleft"},"params":{"value":[{"type":"paragraph","childrenalign":[{"type":left"paragraph","children":[{"typetext":"paragraph","childrenlineHeight":[{"type"unset","fontFamily":"paragraph","children":[Poppins, sans-serif"}]},{"type":"paragraph","children":[{"text":"Once you have created your brand and offer assets ","letterSpacingtype":0,"fontWeightparagraph":300,"colorchildren":"#3a3a3a","fontSize[{"letterSpacing":140,"fontFamily":"Poppins, sans-serif"},{"typetext":"linkCheck out our guide on monitoring performance and our email remarketing feature.","link":{"valuecolor":"163872769#3A3A3A","targetfontSize":"_blank"14,"typelineHeight":"page"unset"}]}]}]}]}]},"children":[{],"letterSpacingid":0,"fontWeight":300eaOuhM_5q1Y9br41CJpwn"}],"fontSizeparams":14,{"fontFamilyborderRadius":{"Poppins, sans-serif"all":0,"textbtl":0,"in the CMSbbl":0,"colorbtr":0,"#0091FFbbr":0,"underlineisIndividualCorners":true}]false},{"letterSpacingpadding":0,"fontWeightgap":30020,"fontSizeverticalAlignment":14"top"}},{"fontFamilyid":"Poppins, sans-serifT_iw3jAaAL9vMA4Ih53k9","textname":" 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"column","children":[{"name":"icon","params":{"templateId":"circular 3","size":20,"color":"#FFA500","alignment":"start","icon":"5","shape":"rounded","background":"#000000"},"children":[{],"letterSpacingid":0,"fontWeightA4e4AeBUdsKytzIEvllnG":300},{"colorname":"#3a3a3atext","fontSizeparams":14,{"texttemplateId":"headline 4","fontFamilyvalue":"Poppins, sans-serif"}]},[{"type":"paragraph","align"children":[{"type":"leftparagraph","children":[{"letterSpacingtext":0,"fontWeightHeadline":300,"colorletterSpacing":"#3a3a3a"0,"fontSizefontWeight":14700,"textcolor":"You can now start to add the code to your website.#3A3A3A","fontFamilyfontSize":"Poppins, sans-serif"}]20}]}]}]}]}]},"children":[],"id":"nTmDMZD9SlxxWFafaogrJ7QNuQ9EYOYqvCnNWBkUcI"}],{"name":"text","params":{"borderRadius"templateId":"simple paragraph","value":[{"alltype":0"paragraph","btlchildren":0,[{"bbltype":0"paragraph","btrchildren":0,[{"bbrfontSize":016,"isIndividualCornerslineHeight":false}"24px","paddingletterSpacing":0,"gaptext":20"Lorem ipsum dolor sit amet.","verticalAlignmentfontFamily":"top"}},{"idOpen Sans, sans-serif","color":"mC4VNPNzmNLDmPJrIrZ0t#3A3A3A","name":"column"fontWeight":300}]}]}]},"children":[{],"nameid":"iconNqpLqMgewFXgDrdLqEWSK"}],"params":{"iconborderRadius":{"3all":0,"sizebtl":200,"colorbbl":0,"#FFA500btr":0,"shapebbr":"rounded"0,"alignmentisIndividualCorners":"start"false},"backgroundpadding":"#000000"}0,"childrengap":[]20,"idverticalAlignment":"0NZ10hj67CIaHCnLRT2ENtop"}},{"nameid":"textSmoQTg_TC0fXj5WriS46j","paramsname":{"value":[{"type":"paragraph""column","children":[{],"typeparams":{"paragraphborderRadius","children":[{"typeall":"paragraph"0,"childrenbtl":[{0,"textbbl":"Add 3 code snippets to your site"0,"letterSpacingbtr":0,"fontWeightbbr":6000,"colorisIndividualCorners":"#3a3a3a"false},"fontFamilypadding":"Poppins, sans-serif"0,"fontSizegap":18}]20,"alignverticalAlignment":"lefttop"}]}]}]},"childrenparams":{"layout":[1,1,1,1],"idgap":45,"HZJtZ-dfKIEUKFhtkQKIU"},{"name":"text","params":{"value":[{"type":"paragraph","children":[{"type":"paragraphminHeight":200,"padding":10,"borderRadius":0,"size":"full"}},{"id":"0ebksPcA1MYBn-Bu0ZiRL","name":"row","children":[{"typeid":"paragraphWBdVOb5L9w1A-aY8vC7yd","childrenname":[{"type":"paragraph"column","children":[{"typename":"paragraphbutton","childrenparams":[{"texttemplateId":"Follow the regular button","letterSpacinglabel":0,"fontWeight":300,"lineHeight"<span>Take me to application form</span>","size":"unsetmedium","fontFamilyshape":"Poppins, sans-serifcircular","coloralignment":"#000000start","fontSizestates":14},{"letterSpacingidle":0,{"fontWeightcolors":300,{"lineHeightbackground":"unset#FFA500","fontFamilylabel":"Poppins, sans-serif"#ffffff"}},"colorhover":{"#000000colors",:{"fontSizebackground":14"#ffffff","textlabel":"Integration #FFA500","italicoutline":true},{"letterSpacing":0#FFA500"}}},"fontWeightlink":300,{"lineHeightvalue":"unset","fontFamily":"Poppins, sans-serifhttps://preezie.com/solutions/nextbuy/get-started","colortarget":"#000000_blank","fontSizetype":14,"text":"menu steps in the CMS."}],"align":"left"},{"type":"paragraph","align":"left","children":[{"letterSpacinglink"}},"children":[],"id":"3myQy10XNQzfYZm_D2pM0"}],"params":{"borderRadius":{"all":0,"fontWeightbtl":3000,"lineHeightbbl":0,"unsetbtr":0,"fontFamilybbr":"Poppins, sans-serif","color":"#000000","fontSize":14,"text":""}]0,"isIndividualCorners":false},"padding":0,"gap":0,"verticalAlignment":"top"}},{"typeid":"paragraphoVXdUbGQdqox2Y7COmu9e","alignname":"leftcolumn","children":[{"letterSpacingname":0"button","fontWeightparams":300,{"lineHeighttemplateId":"unsetregular button","fontFamilylabel":"Poppins, sans-serif<span>Take me to the offers guide</span>","colorsize":"#000000medium","fontSizeshape":14"circular","textalignment":"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":"leftstart","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":[{"letterSpacingname":0"button","lineHeightparams":{"templateId":"unsetregular button","fontFamilylabel":"Poppins, sans-serif<span>See instructions below</span>","colorsize":"#000000medium","textshape":"2. Add the nextbuy widget to your circular","fontSizealignment":14}"start",{"letterSpacingstates":0,{"lineHeightidle":{"unsetcolors",:{"fontFamilybackground":"Poppins, sans-serif#FFA500","colorlabel":"#000000#ffffff"}},"texthover":{"checkout confirmation page","fontWeight":700,"fontSize":14}]},{"type":"paragraph","align":"left","children":[{"letterSpacingcolors":{}}}},"children":[],"id":"0w-cnjCsKrpzMNrK1MDOf"}],"params":{"borderRadius":{"all":0,"fontWeightbtl":3000,"lineHeightbbl":0,"unsetbtr":0,"fontFamilybbr":"Poppins, sans-serif"0,"textisIndividualCorners":false},"padding":0,"colorgap":20,"#000000verticalAlignment",:"fontSizetop":14}]},{"typeid":"paragraphT946twztOBK4u9vbimNx6","alignname":"leftcolumn","children":[{"letterSpacingname":0"button","fontWeightparams":300,{"lineHeighttemplateId":"unsetregular button","fontFamilylabel":"Poppins, sans-serif"<span style=\"font-size: 12px; background-color: rgb(255, 165, 0);\">How to monitor performance</span>","colorsize":"#000000medium","textshape":"3. Add the Transaction pixel to your circular","fontSizealignment":14},{"letterSpacing":0,"lineHeight"start","states":{"idle":{"colors":{"background":"unset#FFA500","fontFamilylabel":"Poppins, sans-serif"#ffffff"}},"texthover":{"checkout confirmation page","fontWeight":700,"color":"#000000","fontSize":14}]}]}]}]}]}]}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":"vAox7IauMzqEIoew6fb9Gq1RYpHzHo2yIlkgpGL9UX"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"qDsTHyjVcK4z94klyPQOK6EMu9wxHNP7gd_HBjicRo","name":"column","children":[{"name":"icon"],"params":{"iconborderRadius":{"4all":0,"sizebtl":200,"colorbbl":0,"#FFA500btr":0,"shapebbr":0,"roundedisIndividualCorners":false},"alignmentpadding":0,"startgap":20,"backgroundverticalAlignment":"#000000top"}},{"childrenid":[]"To3P6jYOA0wIy3XfkgZqR","idname":"w8jvtbDAIi0jW8bfmtrLRcolumn"},{"namechildren":"text"[],"params":{"valueborderRadius":[{"typeall":0,"paragraphbtl":0,"childrenbbl":[{0,"typebtr":0,"paragraphbbr":0,"childrenisIndividualCorners":[{"textfalse},"padding":0,"Go livegap":20,"letterSpacingverticalAlignment":0"top"}}],"fontWeightparams":600,{"colorlayout":"#3a3a3a","fontSize":18,"fontFamily":"Poppins, sans-serif"}],"align":"left"}]}]},"children":[],"id":"NS87me7hYzhN7byPYVAel"},{"name":"text[1,1,1,1],"gap":35,"minHeight":40,"padding":10,"borderRadius":0,"size":"full"}}],"name":"section"},{"id":"NovlBqcRJFAcKHe2UWhgC","params":{"valuebackground":[{"type"#000000","padding":45,"paragraphgap":10},"children":[{"typeid":"paragraphWgdEtXzInF1lUeOn-51cy","children":[{"type"name":"paragraphrow","children":[{"textid":"Once we've notified you're live, you can monitor clicks and sales by clicking on the Dashboard link in your y2-RGznHfKoroe5pPCbtB","letterSpacingname":0"column","fontWeightchildren":300,[{"colorname":"#3a3a3aicon","fontSizeparams":14,{"lineHeighticon":"unset1","fontFamilysize":"Poppins28, sans-serif"},{"type"color":"link#ffffff","linkshape":{"value":"https://admin.preezie.com/app/main/dashboard","targetrounded","alignment":"_blankstart","typebackground":"link#BFC0C1"},"children":[{],"letterSpacingid":0,"fontWeightzCBZRunKqqexej0rI6NwS":300},{"fontSizename":14,"text":"nextbuy CMS menu","colorparams":{"#0091FFvalue","underline":true,"lineHeight:[{"type":"unsetparagraph","fontFamilychildren":"Poppins, sans-serif"}]},[{"texttype":"paragraph","lineHeightchildren":[{"unsettype","fontFamily":"Poppins, sans-serif"}]paragraph","alignchildren":"left"},[{"typetext":"paragraphFirst complete your application form","alignletterSpacing":"left"0,"childrenfontWeight":[{600,"textfontSize":""22,"lineHeightcolor":"unset#ffffff","fontFamily":"Poppins, sans-serif"}],"align":"left"},{"type":"paragraph","children":[{"typealign":"paragraphleft","children":[{"letterSpacing":0,"color":"#ffffff","fontFamily":"Poppins, sans-serif","text":"Check out our guide on monitoring performance and our email remarketing featureOnce approved, we will use this to set up your account and send you an account invite.","color":"#3A3A3A","fontSize":14,"lineHeight":"unset"}]16}]}]}]}]},"children":[],"id":"eaOuhM_5q1Y9br41CJpwnbdG1-j60zhgFotIfWfjIE"}],"params":{"borderRadiusname":{"allbutton":0,"btlparams":0,{"bbltemplateId":0,"btrregular button":0,"bbrlabel":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"T_iw3jAaAL9vMA4Ih53k9","name":"column","children":[{"name":"icon","params":{"templateId":"circular 3","size":20,"color"<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","alignmentlabel":"start#ffffff"}}},"iconlink":{"value":"5https://preezie.com/solutions/nextbuy/get-started","shapetarget":"rounded_blank","backgroundtype":"#000000link"}},"children":[],"id":"A4e4AeBUdsKytzIEvllnG5gvD2Hy4mC8xWmipvf9Oj"}],{"nameparams":{"text","paramsborderRadius":{"templateIdall":"headline 4"0,"valuebtl":[{0,"typebbl":"paragraph"0,"childrenbtr":[{0,"typebbr":"paragraph"0,"childrenisIndividualCorners":[{"text":"Headline"false},"letterSpacingpadding":0,"fontWeightgap":70020,"colorverticalAlignment":"#3A3A3Atop"}},{"fontSizeid":20}]}]}]},"children":[],"id"U3Bob-NFs1AXnNZWWS-FU","name":"7QNuQ9EYOYqvCnNWBkUcIcolumn"},"children":[{"name":"textimage","params":{"templateIdalignment":"simple paragraphcenter","valueposition":[{"type":"paragraph"center center","childrenborderRadius":[{"typeall":20,"paragraphbbl":0,"childrenbbr":[{0,"fontSizebtl":160,"lineHeightbtr":0,"24pxisIndividualCorners":false},"letterSpacingheight":0246,"textwidth":"Lorem ipsum dolor sit amet.","fontFamily558,"image":{"value":"Open Sans, sans-serifatt147292174","colortarget":"#3A3A3A_blank","fontWeighttype":300"attachment"}]}]}]},"children":[],"id":"NqpLqMgewFXgDrdLqEWSKekwjbpk7-qOxI9rO7Klyt"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"SmoQTgldOCx04i6wshTjt0v4_TC0fXj5WriS46j1G","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-Bu0ZiRLDHVJRlGG3qoVmiVnOfubg","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":[],"params":{"colorsborderRadius":{"backgroundall":0,"#ffffffbtl":0,"labelbbl":0,"#FFA500btr":0,"outlinebbr":0,"#FFA500isIndividualCorners":false}}},"linkpadding":{0,"valuegap":20,"https://preezie.com/solutions/nextbuy/get-started","target":"_blank","type":"link"}}verticalAlignment":"top"}},{"id":"sybrMi739SvQeba1oW3Ih","name":"column","children":[],"id":"3myQy10XNQzfYZm_D2pM0"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":020,"verticalAlignment":"top"}},{"id":"oVXdUbGQdqox2Y7COmu9eccWXuO_naZUa-2ChsHyh7","name":"column","children":[{],"nameparams":{"buttonborderRadius","params":{"templateIdall":0,"regular buttonbtl":0,"labelbbl":"<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"}]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":{"borderRadiusicon":{"all2":0,"btlsize":028,"bblcolor":0"#ffffff","btrshape":0"rounded","bbralignment":0"start","isIndividualCornersbackground":false},"padding#BFC0C1":0},"gapchildren":20[],"verticalAlignmentid":"topaTFt9A5PBV0Yk0UZXwbG2"}},{"idname":"GyVt3u23KLkfxUiErMUWjtext","nameparams":{"column","childrenvalue":[{"nametype":"buttonparagraph","paramschildren":[{"templateIdtype":"regular buttonparagraph","labelchildren":"<span>See instructions below</span>","size[{"type":"mediumparagraph","shapechildren":[{"circulartext","alignment":"startCreate your offers","statesletterSpacing":{0,"idlefontWeight":{600,"colorsfontSize":{22,"backgroundfontFamily":"#FFA500Poppins, sans-serif","labelcolor":"#ffffff#000000"}}],"hoveralign":{"colors":{}}}},"children":[],"id":"0w-cnjCsKrpzMNrK1MDOf"}],"params":{"borderRadius":{"all"left"},{"type":"paragraph","align":"left","children":[{"letterSpacing":0,"btlfontFamily":0"Poppins, sans-serif","bbltext":0"Now you create your brand and offer details in the CMS, learn how to do this in the ","btrcolor":0,"bbr#000000":0,"isIndividualCornersfontSize":false16},{"paddingtype":0"link","gaplink":20,{"verticalAlignmentvalue":"top163872769"}},{"idtarget":"T946twztOBK4u9vbimNx6_blank","nametype":"columnpage"},"children":[{"nameletterSpacing":"button"0,"paramsfontFamily":{"templateId":"regular button"Poppins, sans-serif","labelfontSize":"<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"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":[],"paramsid":{"borderRadiusdE10sn6RHyGyUGdVvMpVP":{"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"},{"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":{"backgroundborderRadius":{"#000000all":0,"paddingbtl":450,"gapbbl":10}0,"childrenbtr":[{0,"idbbr":0,"WgdEtXzInF1lUeOn-51cy"isIndividualCorners":false},"namepadding":0,"rowgap":20,"childrenverticalAlignment":["top"}},{"id":"y2-RGznHfKoroe5pPCbtBsENvv0rxQz9W0agYEF5DY","name":"column","children":[{"name":"iconimage","params":{"iconalignment":"1center","sizeposition":28"center center","colorborderRadius":{"#ffffffall":20,"shapebbl":0,"roundedbbr":0,"alignmentbtl":0,"startbtr":0,"backgroundisIndividualCorners":"#BFC0C1"false},"childrenheight":[]346,"idwidth":558,"zCBZRunKqqexej0rI6NwSimage"},:{"namevalue":"textatt166494301","paramstarget":{"value":[{_blank","type":"paragraphattachment"}},"children":[{],"typeid":"paragraph"R6fdDrHo-2XEM4Dh-B6eM"}],"childrenparams":[{"typeborderRadius":{"paragraphall":0,"childrenbtl":[{0,"textbbl":"First complete your application form"0,"letterSpacingbtr":0,"fontWeightbbr":6000,"fontSizeisIndividualCorners":22false},"colorpadding":"#ffffff"0,"fontFamilygap":"Poppins20, sans-serif"}],"align""verticalAlignment":"lefttop"}},{"typeid":"paragraphVSQhPlK9Wy_g1066pqBFb","alignname":"leftcolumn","children":[{],"letterSpacingparams":0,{"colorborderRadius":{"#ffffffall":0,"fontFamilybtl":"Poppins, sans-serif"0,"bbl":0,"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"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"3jMxrOi0crPIBdnAYZNyP","name":"column","children":[],"params":{"templateIdborderRadius":{"regular buttonall":0,"labelbtl":"<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"}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"}}],{"idparams":{"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"}}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":[],{"idname":"ekwjbpk7-qOxI9rO7Klyticon"}],"params":{"borderRadiusicon":{"all3":0,"btlsize":028,"bblcolor":0"#ffffff","btrshape":0"rounded","bbralignment":0"start","isIndividualCornersbackground":false"#BFC0C1"},"paddingchildren":0[],"gapid":20"CaqlULuqtEfi2fvq5kLFD"},{"verticalAlignmentname":"toptext"}},"params":{"idvalue":[{"type":"ldOCx04i6wshTjt0v4_1Gparagraph","name"children":[{"type":"columnparagraph","children":[]{"type":"paragraph","paramschildren":[{"borderRadiustext":{"all":0,"btl"Add 3 code snippets to your site","letterSpacing":0,"bblcolor":0,"btr#000000":0,"bbrfontFamily":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}"Poppins, sans-serif","fontWeight":700,"fontSize":22}],"align":"left"},{"idtype":"DHVJRlGG3qoVmiVnOfubgparagraph","namealign":"columnleft","children":[],"params":{"borderRadiusletterSpacing":{"all":0,"btlcolor":0,"bbl#000000":0,"btrfontFamily":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"sybrMi739SvQeba1oW3Ih","name":"column"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":[],"params":{"borderRadiusletterSpacing":{"all":0,"btlcolor":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}#000000","fontFamily":"Poppins, sans-serif","fontSize":18,"text":""}]},{"idtype":"ccWXuO_naZUa-2ChsHyh7paragraph","namealign":"columnleft","children":[]{"letterSpacing":0,"paramscolor":{"borderRadius"#000000","fontFamily":{"all":0Poppins, sans-serif","btlfontSize":018,"bbltext":0"Select your method ","btrfontWeight":0700},{"bbrletterSpacing":0,"isIndividualCornerscolor":false}"#000000","paddingfontFamily":0"Poppins, sans-serif","gapfontSize":2018,"verticalAlignmenttext":"top(All / Shopify / BigCommerce / Google Tag Manager) and then follow the 3 steps below:"}]}]}]}]},"paramschildren":{[],"layoutid":[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""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":[{],"nameid":"iconRGTF3L6vi3mC1lPUDTN40"}],"params":{"iconborderRadius":{"2all":0,"sizebtl":280,"colorbbl":0,"#ffffffbtr":0,"shapebbr":0,"roundedisIndividualCorners":false},"alignmentpadding":0,"startgap":20,"backgroundverticalAlignment":"#BFC0C1bottom"}},{"childrenid":[]"TxDOg_Id0ajRRB3pAejl6","idname":"aTFt9A5PBV0Yk0UZXwbG2column"},"children":[{"name":"text","params":{"templateId":"headline 4","value":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"type":"paragraph""text":"Add Tracking code to all pages","letterSpacing":0,"fontWeight":700,"fontSize":24}]}]}]},"children":[],"id":"yJpuIKSa_x7XO2h74Q137"}],"params":{"textborderRadius":{"Create your offersall":0,"letterSpacingbtl":0,"fontWeightbbl":6000,"fontSizebtr":220,"fontFamilybbr":"Poppins, sans-serif","color":"#000000"}],"align":"left"},{"type":"paragraph","align":"left0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"bottom"}},{"id":"vPmgBxLkjNtVNiJtcqR5v","name":"column","children":[{],"letterSpacingparams":0,{"fontFamilyborderRadius":{"Poppins, sans-serif"all":0,"textbtl":"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"}0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"bottom"}},{"id":"XvT-L48TZTzaGVfoB_wf4","name":"column","children":[{],"letterSpacingparams":0,{"fontFamilyborderRadius":"Poppins, sans-serif","fontSize":16,"text":"instruction guide","color":"#0091FF","underline":true}]},{"letterSpacing{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"fontFamilyisIndividualCorners":"Poppins, sans-serif","color":"#000000","fontSize":16,"text":". "}]false},"padding":0,"gap":20,"verticalAlignment":"bottom"}},{"typeid":"paragraphZpus6glt9VdONVUI4faxi","alignname":"leftcolumn","children":[],"params":{"letterSpacingborderRadius":{"all":0,"fontFamilybtl":"Poppins, sans-serif"0,"colorbbl":0,"#000000btr":0,"textbbr":""0,"fontSizeisIndividualCorners":16}]false},{"typepadding":"paragraph"0,"aligngap":"left"20,"childrenverticalAlignment":[{"letterSpacingbottom":0}},{"fontFamilyid":"Poppins, sans-serifXTZYaM5GMgud8l5zQfAK","colorname":"#000000column","textchildren":"New! "[],"fontSizeparams":16,{"fontWeightborderRadius":700},{"letterSpacingall":0,"fontFamilybtl":"Poppins, sans-serif"0,"bbl":0,"colorbtr":"#000000"0,"fontSizebbr":160,"text":"If you want to automatically schedule offers then click Add another and set the start/end times. Read the guide for full details. "}]}]}]}]isIndividualCorners":false},"childrenpadding":[]0,"idgap":"dE10sn6RHyGyUGdVvMpVP"}20,{"nameverticalAlignment":"buttonbottom"}}],"params":{"templateIdlayout":"regular button"[1],"gap":10,"labelminHeight":"<span>Take me to the offers guide</span>"150,"sizepadding":"medium"10,"shapeborderRadius":"circular","alignment0}},{"id":"startkX6BmGU8jq-rchyyuUshy","statesname":{"idlerow":{,"colorschildren":[{"backgroundid":"#ffffffCZMI0KWJhYU92wzg8hXjK","labelname":"#FFA500column"}},"hoverchildren":[{"colors"name":"icon","params":{"backgroundtemplateId":"#FFA500""rounded award","size":20,"labelcolor":"#ffffff#000000"}}},"linkalignment":{"value"end","icon":"163872769angles-right","targetshape":"_blankrounded","typebackground":"page#FFA500"}},"children":[],"id":"WFZR8fBk60adp4T99FXAoBUwT76qnUNvL6CPyDXDO4"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"sENvv0rxQz9W0agYEF5DYfBwg3KTptadzAJ4qBX2Ww","name":"column","children":[{"name":"imagetext","params":{"alignmenttemplateId":"centerheadline 2","position"value":[{"type":"center centerparagraph","borderRadiuschildren":[{"alltype":20"paragraph","bbl":0,"bbrchildren":[{"text":"1. Add the Tracking Code to all pages that will receive referral traffic","letterSpacing":0,"btlfontWeight":0700,"btrfontSize":020,"isIndividualCornersfontFamily":false"Poppins, sans-serif"}]}]}]},"heightchildren":346[],"widthid":558,"imageYxkIX05yHNmWUEgJDHJmb":},{"valuename":"att166494301text","params":{"targettemplateId":"_blanksimple paragraph","value":[{"type":"attachmentparagraph"}},"children":[],{"idtype":"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"}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":"bottomtop"}},{"id":"TxDOg_Id0ajRRB3pAejl6hX7GbcYrk8nmCiTDImMKa","name":"column","children":[{"name":"textdivider","params":{"templateId":"headline 4solid long","valuecolor":[{"type"#EBEBEB","alignment":"paragraphstart","childrenfontSize":[{14,"typefontColor":"paragraph#BFC0C1","childrenheight":[{1,"textborderStyle":"Add Tracking code to all pagessolid","letterSpacingtext":0,"fontWeight":700,"fontSize":24}]}]}]"Paste the below code snippet on all landing pages"},"children":[],"id":"yJpuIKSalSFHFjq3_x7XO2h74Q1371-CqtMiVGHPy"}],{"name":"text","params":{"borderRadius"templateId":"simple paragraph","value":[{"alltype":0,"btl":0,"bbl":0,"btr":0,"bbr"paragraph","children":[{"type":"paragraph","children":[{"lineHeight":"24px","letterSpacing":0,"isIndividualCornerstext":false},"padding":0,"gap":20,"verticalAlignment":"bottom"}},{"id":"vPmgBxLkjNtVNiJtcqR5v","name":"column","children":["<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":"bottomtop"}},{"id":"XvT-L48TZTzaGVfoB_wf47FQfc8WlH9VP967fmc2PM","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"bottomtop"}},{"id":"Zpus6glt9VdONVUI4faxim7evb0gulWx5RRaX3oItr","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"bottomtop"}},{"id":"-XTZYaM5GMgud8l5zQfAKFRRL_ZSNvdPZix40rwOIC","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":0top"}},{"id":"kX6BmGU8jq-rchyyuUshydkL5vxBhdLdyTdljVtQHP","name":"rowcolumn","children":[{"id":"CZMI0KWJhYU92wzg8hXjK"],"nameparams":"column","children":[{"nameborderRadius":"icon","params":{"templateIdall":"rounded award"0,"sizebtl":200,"colorbbl":"#000000"0,"alignmentbtr":"end"0,"iconbbr":"angles-right"0,"shapeisIndividualCorners":"rounded"false},"backgroundpadding":"#FFA500"}0,"childrengap":[]20,"idverticalAlignment":"BUwT76qnUNvL6CPyDXDO4top"}}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false}layout":[1,2],"gap":35,"minHeight":110,"padding":010,"gapborderRadius":200,"verticalAlignmentsize":"topfull"}},{"id":"fBwg3KTptadzAJ4qBX2Ww8q9Kv_Rq-P5dQCQwEA5mg","name":"columnrow","children":[{"nameid":"textswfsqXzPGcRM8289IvoqI","paramsname":{"templateIdcolumn":"headline 2","valuechildren":[{],"typeparams":{"paragraphborderRadius","children":[{"typeall":"paragraph"0,"children":[{"text":"1. Add the Tracking Code to all pages that will receive referral traffic","letterSpacingbtl":0,"bbl":0,"fontWeightbtr":7000,"fontSizebbr":200,"fontFamilyisIndividualCorners":"Poppins, sans-serif"}]}]}]false},"childrenpadding":[]0,"idgap":"YxkIX05yHNmWUEgJDHJmb"}20,{"nameverticalAlignment":"texttop"}},"params":{"templateIdid":"simple paragraph2lruedn1Mh4W_G_jzeoPe","valuename":[{"type":column"paragraph","children":[{"typename":"paragraphdivider","childrenparams":[{"fontSizetemplateId":16,"lineHeight":"24px""solid icon exclamation-circle","color":"#555#FFA500","letterSpacing":0,"text":"This code snippet is needed to load on ","fontFamilyalignment":"Poppins, sans-serifstart"},{"fontSize":1618,"lineHeightfontColor":"24px#FFA500","colorheight":1,"#555borderStyle",:"letterSpacingsolid":0,"fontFamilyicon":"Poppins, sansexclamation-serifcircle","text":"ALL landing pagesTip!"},"fontWeightchildren":700}[],{"fontSizeid":16,"lineHeight"GhCVfSvc11roD5ww-nAJg"},{"name":"24pxtext","params":{"colortemplateId":"#555simple paragraph","letterSpacingvalue":0,[{"fontFamilytype":"Poppins, sans-serifparagraph","text":" you'll use in your offers. This allows incoming clicks and sales to be tracked. "}]},children":[{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"text":"Don’t add ","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":[defer ","fontWeight":700},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":""}]},{"type":"paragraph","children":[or "},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"Noteasync ","fontWeight":700,"color":"#a0a0a0"},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":": make sure this is ","color":"#a0a0a0to this code as it causes tracking issues. The js code already uses "},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","color":"#a0a0a0","text":"NOT defer ","fontWeight":700},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","color":"#a0a0a0","text":"loading on your in it’s follow on js calls. Ensure it's not on the checkout confirmation page, step 2 covers thisthis page is covered below."}]}]}]},{"childrentype":[],"id":"-IfwCwDxCl-cdblfQ3vr6"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"isIndividualCornersfontFamily":false},"padding":0,"gap":20,"verticalAlignment"Poppins, sans-serif","text":"top"}]},{"idtype":"2-3tMa8t4sxzWIoQUfm_1paragraph","namechildren":[{"type":"columnparagraph","children":[],"params":{"borderRadiustype":{"allparagraph":0,"btlchildren":0,[{"bblfontSize":016,"btrlineHeight":0,"bbr24px":0,"isIndividualCornerscolor":false},"padding#555":0,"gapletterSpacing":200,"verticalAlignmentfontFamily":"top"}},{"idPoppins, sans-serif","text":"4FDxMVU6brNYrCFjMR7IfExisting preezie customers","namefontWeight":"column"700},{"childrenfontSize":[]16,"paramslineHeight":{"borderRadius24px":{,"allcolor":0,"btl#555":0,"bblletterSpacing":0,"btrtext":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"mevyUPIAhumncLhNBRlIt","name":"column"" do not need to do this again if you have previously done this (the code is identical).","fontFamily":"Poppins, sans-serif"}]}]}]}]}]},"children":[],"id":"3XhsrF8tOQOvsKcAOn6Nx"},{"name":"spacer","params":{"space":10},"children":[],"paramsid":"VzAiursKRHtES3Fa9N69x"},{"borderRadiusname":{"alldivider":0,"btlparams":0,{"bbltemplateId":0"solid icon check-circle","btrcolor":0"#1da237","bbralignment":0"start","isIndividualCornersfontSize":false}18,"paddingfontColor":0"#1da237","gapheight":201,"verticalAlignmentborderStyle":"topsolid"}},{"idicon":"hi4ucheck-NNHbIJJVr0YZWiazcircle","nametext":"columnShopify users"},"children":[],"paramsid":"2mKd3yfyohSXs8-Uv3mcu"},{"borderRadiusname":{"alltext":0,"btlparams":0,{"bbltemplateId":0,"btrsimple paragraph":0,"bbrvalue":0,[{"isIndividualCornerstype":false},"paddingparagraph":0,"gapchildren":20,[{"verticalAlignmenttype":"topparagraph"}}],"paramschildren":[{"layoutfontSize":[1,2]16,"gaplineHeight":35"24px","minHeightcolor":150,"padding#555":10,"borderRadiusletterSpacing":0,"sizetext":"full"}},{"idThe above code can be added directly to your ","fontFamily":"Poppins, sans-kEngZ2u1Ru8NA8g6gF4Qserif"},{"namefontSize":"row"16,"children":[{"idlineHeight":"WDHcaXh8sXZI2RBkq-mWI24px","namecolor":"column#555","childrenletterSpacing":[]0,"paramsfontFamily":{"borderRadius"Poppins, sans-serif","text":{"alltheme.liquid":0,"btlfontWeight":0700},{"bblfontSize":016,"btrlineHeight":0"24px","bbrcolor":0,"isIndividualCorners#555":false},"paddingletterSpacing":0,"gapfontFamily":20"Poppins, sans-serif","verticalAlignmenttext":" topfile anywhere within the <head> tag. "}]}]}]},{"idchildren":"hX7GbcYrk8nmCiTDImMKa"[],"nameid":"columnYHk6RCM7OELGnxctHmtJF"},"children":[{"name":"divider","params":{"templateId":"solid longicon check-circle","color":"#EBEBEB#1D5a83","alignment":"start","fontSize":1418,"fontColor":"#BFC0C1#1d58a3","height":1,"borderStyle":"solid","icon":"check-circle","text":"Paste the below code snippet on all landing pagesGoogle Tag Manager / All tag manager users"},"children":[],"id":"lSFHFjq3_1-CqtMiVGHPy12tF0z71mIZyyhVi5esWy"},{"name":"text","params":{"templateId":"simple paragraph","value":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"text":"<script type=\"text/javascript\" src=\"https://widget-cdn.preezie.com/production/preguide.min.js\"></script>"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"},{"colorname":"#3e46fdspacer","fontSizeparams":{"space":16}]}]}]}0},"children":[],"id":"vYWt5gSeu5UYXZkaamzXPaitN8AE3-Bth-_hpaTc9X"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":2010,"verticalAlignment":"top"}},{"id":"7FQfc8WlH9VP967fmc2PMDtaYvNn-PIX2u08y9MCTw","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"m7evb0gulWx5RRaX3oItrb1CI5GCQhxK3Y2QWqaKP5","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"FRRLxvle-U51dlvSS_ZSNvdPZix40rwOICr4tdd0Y","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"dkL5vxBhdLdyTdljVtQHPEpZLxTsG0m_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":110150,"padding":10,"borderRadius":0,"size":"full"}},{"id":"8q9Kv_Rq-P5dQCQwEA5mgtbCOYQckfC7mOL10LbLKY","name":"row","children":[{"id":"swfsqXzPGcRM8289IvoqIG-sdKQQlpsi9G0_7isHnb","name":"column","children":[{"name":"icon","params":{"templateId":"rounded award","size":20,"color":"#000000","alignment":"end","icon":"angles-right","shape":"rounded","background":"#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":"2lruedn1Mh4W_G_jzeoPetRMXcalPsuxkYQtp8dGJA","name":"column","children":[{"name":"dividertext","params":{"templateId":"solid icon exclamation-circleheadline 2","colorvalue":[{"type":"#FFA500paragraph","alignment"children":[{"type":"startparagraph","fontSizechildren":18,[{"fontColortext":"#FFA5002. Widget code for your confirmation page","heightletterSpacing":10,"borderStylefontWeight":"solid"700,"iconfontSize":"exclamation-circle"20,"textfontFamily":"Tip!"Poppins, sans-serif"}]}]}]},"children":[],"id":"GhCVfSvc11roD5ww-nAJgllWO6t_zrmV2MR3Tfkgs9"},{"name":"text","params":{"templateId":"simple paragraph","value":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"text":"Don’t add Now add this personalised script code to the ","fontFamily":"Poppins, sans-serif"},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"defer checkout confirmation page","fontWeight":700},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":" or "},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"async ","fontWeight":700},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"to this code as it causes tracking issues. The js code already uses "},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"defer ","fontWeight":700},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":"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":"Your script will look something like this:"}]},{"type":"paragraph","children":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"fontSize"lineHeight":"24px","letterSpacing":160,"lineHeighttext":"24px","color":"#555","letterSpacing":0<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","textcolor":"Existing preezie customers#3e46fd","fontWeightfontSize":700},14}]}]}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"textfontFamily":" do not need to do this again if you have previously done this (the code is identical).Poppins, sans-serif","fontFamilytext":"Poppins, sans-serif"}]}]}]}]}]},{"type":"paragraph","children":[]{"fontSize":16,"idlineHeight":"3XhsrF8tOQOvsKcAOn6Nx24px"},{"namecolor":"spacer#555","paramsletterSpacing":{0,"spacefontFamily":10},"children":[],"id":"VzAiursKRHtES3Fa9N69x"Poppins, sans-serif","text":"OR, you can also choose to position the widget by using the additional parameters "},{"namefontSize":"divider"16,"paramslineHeight":{"templateId":"solid icon check-circle"24px","color":"#1da237#555","alignmentletterSpacing":0,"fontFamily"start:"Poppins, "fontSize":18sans-serif","fontColortext":"#1da237data-targets","heightfontWeight":1700},{"borderStylefontSize":"solid"16,"iconlineHeight":"check-circle24px","textcolor":"Shopify users#555"},"childrenletterSpacing":[]0,"idfontFamily":"2mKd3yfyohSXs8Poppins, sans-Uv3mcuserif"},{"nametext":"text, "},{"paramsfontSize":{16,"templateIdlineHeight":"simple paragraph24px","valuecolor":[{"type#555":,"paragraphletterSpacing":0,"childrenfontFamily":[{"type"Poppins, sans-serif","text":"paragraphdata-isafter","childrenfontWeight":[700},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"textfontFamily":"The above code can be added directly to your Poppins, sans-serif","fontFamilytext":" Poppins, sans-serifas below. This example uses the CSS class "},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"theme.liquidos-header","fontWeight":700},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":" file anywhere within the <head> tag. "}]}]}]},"children":[],"id":"YHk6RCM7OELGnxctHmtJF"on the page to position the widget underneath it:"}]},{"nametype":"dividerparagraph","paramschildren":[{"templateIdfontSize":"solid icon check-circle"16,"colorlineHeight":"#1D5a8324px","alignmentcolor":"start#555","fontSizeletterSpacing":180,"fontColorfontFamily":"#1d58a3","height":1,"borderStyle":"solid","icon":"check-circlePoppins, sans-serif","text":"Google Tag Manager / All tag manager users"},"children":[],"id":"12tF0z71mIZyyhVi5esWy"},{"name":"text","params":{"templateId":"simple type":"paragraph","valuechildren":[{"type":"paragraph","children":[{"typelineHeight":"paragraph24px","childrenletterSpacing":[{0,"fontSizetext":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. "<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-08dadc93\" data-targets=\"os-header,os-header\" data-isafter=\"true\"></script>","fontFamily":"Poppins, sans-serif"}]}]}]},"childrencolor":[]"#3e46fd","idfontSize":"AW6htnywzgKZSEoNS7C1i"14}]},{"nametype":"spacerparagraph","paramschildren":[{"spacefontSize":0}16,"childrenlineHeight":[],"id":"aitN8AE3-Bth-_hpaTc9X"}],"params":{"borderRadius":{"all"24px","letterSpacing":0,"btlcolor":0,"bbl#000000":0,"btrbackgroundColor":0,"bbr#EBEBEB":0,"isIndividualCornersfontFamily":false},"padding":0,"gap":10,"verticalAlignment"Poppins, sans-serif","text":"top"}]},{"idtype":"DtaYvNn-PIX2u08y9MCTwparagraph","name":"column","children":[],"params":{"borderRadiustype":{"allparagraph":0,"btlchildren":0,[{"bblfontSize":016,"btrlineHeight":0"24px","bbrcolor":0,"isIndividualCorners#555":false},"paddingletterSpacing":0,"text"gap":20,"verticalAlignment:"The two customisable values in this script are:","fontFamily":"topPoppins, sans-serif"}]},{"idtype":"b1CI5GCQhxK3Y2QWqaKP5paragraph","name":"column","children":[],"params":{"borderRadiusfontSize":{16,"alllineHeight":0,"btl24px":0,"bblcolor":0,"btr#555":0,"bbrletterSpacing":0,"isIndividualCornersfontFamily":false},"padding":0,"gap":20,"verticalAlignment"Poppins, sans-serif","text":"top"}]},{"idtype":"xvle-U51dlvSS_r4tdd0Yparagraph","namechildren":[{"columnfontSize":16,"childrenlineHeight":[],"params24px":{,"borderRadiuscolor":{"all#555":0,"btlletterSpacing":0,"bblfontFamily":0,"btr":0"Poppins, sans-serif","bbrtext":0,"isIndividualCorners1. ":false},{"paddingfontSize":016,"gaplineHeight":20"24px","verticalAlignmentcolor":"#555","topletterSpacing"}}:0,{"idfontFamily":"EpZLxTsG0m_1tHNizOx4FPoppins, sans-serif","namefontWeight":700,"columntext",:"children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbldata-targets"},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"btrfontFamily":0"Poppins, sans-serif","bbrtext":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}}],"params":{"layout":[1,2],"gap":35,"minHeight":150,"padding":10,"borderRadius":0,"size":"full"}},{"id":"tbCOYQckfC7mOL10LbLKY","name":"row","children":[{"id":"G-sdKQQlpsi9G0_7isHnb","name":"column","children":[{"name":"icon","params":{"templateId":"rounded award","size":20,"color":"#000000","alignment":"end","icon":"angles-right","shape":"rounded","background":"#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":"tRMXcalPsuxkYQtp8dGJA","name":"column"" - 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":[{"namefontSize":16,"textlineHeight",:"params24px":{,"templateIdcolor":"headline 2#555","valueletterSpacing":[{0,"typefontFamily":"paragraphPoppins, sans-serif","childrentext":[{"type":"paragraph","children":[{"text":"2. Widget code for your confirmation page","letterSpacing":0,"fontWeight":700,"fontSize":202. "},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif"}]}]}]},"childrentext":[]"data-isafter ","idfontWeight":"llWO6t_zrmV2MR3Tfkgs9"700},{"namefontSize":"text"16,"paramslineHeight":{"templateId":"simple paragraph","value":[{"type24px","color":"paragraph#555","childrenletterSpacing":[{0,"typefontFamily":"paragraphPoppins, sans-serif","childrentext":["- if this is 'true' it will load the code "},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"textfontFamily":"Now add this personalised script code to the Poppins, sans-serif","fontFamilytext":"after "Poppins, sans-serif""fontWeight":700},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"checkout confirmation page","fontWeight":700},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":" 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":"":"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":"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":":"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":"OR, you can also choose to position the widget by using the additional parameters "}]},{"fontSizetype":16,"lineHeight":"24px"paragraph","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"data-targets","fontWeight":700},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":"dataos-isafterheader","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-08dadc93\" 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"}]},:"}]}]}]}]}]},"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&nbsp;<span>(Incl. Shopify Plus &amp; 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!"}]},{"typefontWeight":"paragraph","children":[700},{"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-targetsShopify the class=\"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"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":[{],"fontSizeid":16"se2FqnmVcHynCzpQS6Isq"},{"lineHeightname":"24pxtext","colorparams":{"templateId":"#555simple paragraph","letterSpacingvalue":0,[{"fontFamilytype":"paragraph"Poppins, sans-serif","text"children":[{"type":"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=\""}]},bulleted-list","children":[{"type":"paragraphlist-item","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"text":"Navigate to ","fontFamily":"Poppins, sans-serif"},{"fontSize":16,"lineHeight":"24px","textcolor":""}]},{"type#555","letterSpacing":0,"text":"paragraph"Settings","fontWeight":700,"childrenfontFamily":["Poppins, sans-serif"},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamilytext":" Poppins, sans-serif> ","textfontFamily":"e.g. class=\"section-header Poppins, sans-serif"},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamilytext":"Checkout"Poppins, sans-serif""fontWeight":700,"textfontFamily":"osPoppins, sans-header","fontWeight":700serif"},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"text":", e.g. ","fontFamily":"Poppins, sans-serif"},{"texttype":"link"\,"link" 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":{{"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":020,"btlbbl":0,"bblbbr":0,"btrbtl":0,"bbrbtr":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"image":{"value":"att165314561","target":"_blank","type":"attachment"},"width":552,"height":309},"children":[{],"id":"yBCvb1hk1gkSeJQgAEizz1-7W5N5ANakfo0sZzjBeB"},{"name":"columndivider","childrenparams":[{"nametemplateId":"solid icon exclamation-circle","paramscolor":{"templateId"#FFA500","alignment":"plain award"start","fontSize":18,"shapefontColor":"none#FFA500","colorheight":"#008060"1,"alignmentborderStyle":"endsolid","sizeicon":40"exclamation-circle","icontext":"shopifyNote"},"children":[],"id":"_MdUICtkDwqqee0y7BdtSZ8xo8ydjnOizUOJmnqsOv"},{"name":"buttontext","params":{"templateId":"regular buttonsimple paragraph","label"value":[{"type":"Shopifyparagraph","sizechildren":[{"type":"mediumparagraph","shapechildren":[{"roundedfontSize":16,"alignmentlineHeight":"end24px","statescolor":{"idle#555":{,"colorsletterSpacing":{0,"backgroundtext":"#000000"}},"hover":{"colors":{}}}Your widgetid values will be unique to your CMS account don't paste the examples given above.","fontFamily":"Poppins, sans-serif"}]}]}]},"children":[],"id":"Wz2VwyTsXs-UHWgfUwxOd0S5woNaF94ZfYpSroJZfg"}],"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,{"id":"#008060btRuclAoo4fn8OU0sDZ7V","alignmentname":"startcolumn","fontSizechildren":18[],"fontColorparams":{"#008060borderRadius",:{"heightall":10,"borderStylebtl":0,"solidbbl":0,"iconbtr":0,"check-circlebbr":0,"textisIndividualCorners":"Code for Shopify users&nbsp;<span>(Incl. Shopify Plus &amp; Checkout Extensibility)</span>"},"children":[],"id":"n2jEn9mp0cG_cSl6WfCXZ"false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"nameid":"textHI8KQjQJSl39eMcOTvNax","paramsname":{"templateIdcolumn":,"simple paragraphchildren":[],"valueparams":[{"typeborderRadius":{"paragraphall":0,"childrenbtl":[{0,"typebbl":"paragraph"0,"childrenbtr":[{0,"fontSizebbr":160,"lineHeightisIndividualCorners":"24px"false},"colorpadding":"#555"0,"letterSpacinggap":020,"fontFamilyverticalAlignment":"Poppins, sans-serif","texttop"}},{"id":"Tip!fkm7ZewM4sXbRV56dnQvQ","fontWeightname":700},{"fontSizecolumn":16,"lineHeightchildren":"24px"[],"colorparams":{"#555borderRadius",:{"letterSpacingall":0,"fontFamilybtl":"Poppins, sans-serif"0,"textbbl":" 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","0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"ReQIVvz8u4Cde1iiT8Xq1","name":"column","children":[],"params":{"borderRadius":{"all":200,"bblbtl":0,"bbrbbl":0,"btlbtr":0,"btrbbr":0,"isIndividualCorners":false},"imagepadding":0,"gap":{20,"valueverticalAlignment":"att165380097top"}}],"params":{"targetlayout":"_blank"[1,2],"gap":35,"typeminHeight":100,"attachmentpadding"}}:10,"childrenborderRadius":[]0,"idsize":"se2FqnmVcHynCzpQS6Isqfull"}},{"id":"d5nHbWLFoAU4lWbIF5I5_","name":"textrow","paramschildren":[{"templateIdid":"simple paragraphXkuMC2WoMlOza0oXp0CMG","valuename":[{"type":"paragraph"column","children":[{"typename":"bulleted-listicon","childrenparams":[{"typetemplateId":"list-itemplain award","childrenshape":[{"fontSizenone":16,"lineHeightcolor":"24px#3390f9","coloralignment":"#555end","letterSpacingsize":040,"texticon":"Navigate to ""google"},"children":[],"fontFamilyid":"Poppins, sans-serifj7nv4VxkWs4z_W5O04zQ1"},{"fontSizename":16"button","lineHeight"params":{"templateId":"24pxregular button","colorlabel":"#555Google Tag Manager","letterSpacingsize":0"medium","textshape":"Settingsrounded","fontWeightalignment":700"end","fontFamilystates":{"Poppins, sans-serif"},idle":{"fontSizecolors":16,{"lineHeightbackground":"24px#000000"}},"colorhover":{"#555"colors":{}}}},"letterSpacingchildren":0[],"textid":" > 7HF5MGRZuFZwNd9JdKWDU"}],"fontFamilyparams":{"Poppins, sans-serif"},borderRadius":{"fontSizeall":160,"lineHeightbtl":0,"24pxbbl":0,"colorbtr":"#555"0,"letterSpacingbbr":0,"textisIndividualCorners":false},"Checkoutpadding":0,"fontWeightgap":70020,"fontFamilyverticalAlignment":"Poppins, sans-seriftop"}},{"fontSizeid":16"EoLyOhOOS08sE1gsthEPa","lineHeightname":"24pxcolumn","colorchildren":[{"name":"#555divider","letterSpacingparams":0,{"texttemplateId":", e.g. solid icon check-circle","fontFamilycolor":"Poppins, sans-serif#3390F9"},{"typealignment":"linkstart","linkfontSize":{18,"valuefontColor":"https://preezie.myshopify.com/admin/settings/checkout#3390F9","targetheight":"_blank"1,"typeborderStyle":"linksolid"},"childrenicon":[{"fontSizecheck-circle":16,"lineHeighttext":"24px"Code for Google Tag Manager users"},"letterSpacingchildren":0[],"textid":"https://preezie.myshopify.com/admin/settings/checkout","color5Hl4ZyL85CXlJ6o81nAe9"},{"name":"#0091FFtext","underlineparams":true,{"fontFamilytemplateId":"simple paragraph"Poppins, sans-serif"}]},"value":[{"texttype":"paragraph","fontFamilychildren":[{"type":"Poppins, sansbulleted-seriflist"}]},,"children":[{"type":"list-item","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"text":"Then Create a custom HTML tag in GTM and copy the below code but replacing the parts in ","fontFamily":"Poppins, sans-serif"},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"textfontFamily":"Order status pagePoppins, sans-serif","fontWeighttext":700"yellow ","fontFamilybackgroundColor":"Poppins, sans-serif#f7f907"},{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"as below:" > ","fontFamily}]}]},{"type":"Poppins, sans-serifparagraph"},{"fontSizechildren":16,[{"lineHeight":"24px","colorletterSpacing":"#555"0,"letterSpacingcolor":0,{"textlight":"Additional scripts#3e46fd"},"fontWeightfontSize":70014,"fontFamily":"Poppins, sans-serif"},{"fontSize":16,"lineHeight":"24px","color":"#555,"text":"<script type=\"text/javascript\" src=\"https://widget-cdn.preezie.com/production/preguide.min.js\"></script>"}]},{"type":"paragraph","children":[{"lineHeight":"24px","letterSpacing":0,"textcolor":{"light":" box"#3e46fd"},"fontSize":14,"fontFamily":"Poppins, sans-serif","text":"<script type=\"text/javascript\">"}]},{"type":"list-itemparagraph","children":[{"fontSize":16,"lineHeight":"24px","colorletterSpacing":"#555"0,"letterSpacingcolor":0,{"textlight":"In this box, paste in your personalised code as the last thing in this "#3e46fd"},"fontSize":14,"fontFamily":"Poppins, sans-serif"},{"fontSizetext":16,"lineHeight":"24px","color" var targetElement = document.querySelector(\"."},{"lineHeight":"#55524px","letterSpacing":0,"text"color":{"light":"Additional scripts#3e46fd"},"fontWeightfontSize":70014,"fontFamily":"Poppins, sans-serif"},{"fontSizetext":16"os-header","lineHeightbackgroundColor":"24px#f7f907"},{"colorlineHeight":"#55524px","letterSpacing":0,"textcolor":{" box",light"fontFamily":"Poppins, sans-serif"}]}]}]}]},"children":[],"id":"v52Ciyll-wYD0ESkqxVFb"},{"name":"text","params":{"templateId":"simple paragraph","value":[#3e46fd"},"fontSize":14,"fontFamily":"Poppins, sans-serif","text":"\")"}]},{"type":"paragraph","children":[{"typelineHeight":"paragraph24px","childrenletterSpacing":[{"fontSize":160,"lineHeightcolor":{"24px","colorlight":"#555#3e46fd"},"letterSpacingfontSize":0,"text":"The code will look something like this:"14,"fontFamily":"Poppins, sans-serif"}]}]}]},"childrentext":[],"id":"KoUWJeZrhSQk-uzgkx3wy"" ;(function () {"}]},{"nametype":"imageparagraph","paramschildren":[{"templateIdlineHeight":"full-width rounded24px","alignmentletterSpacing":0,"startcolor",:{"positionlight":"center center#3e46fd"},"borderRadiusfontSize":{"all":2014,"bblfontFamily":0"Poppins, sans-serif","bbrtext":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":[" if (!targetElement) return"}]},{"type":"paragraph","children":[{"lineHeight":"24px","letterSpacing":0,"color":{"light":"#3e46fd"},"fontSize":14,"fontFamily":"Poppins, sans-serif","text":" targetElement.outerHTML += '<br><div id=\"preezie-widget-div-id\"></div><div id=\"preezie-widget-div-id-popup\"></div>'"}]},{"type":"paragraph","children":[{"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,"fontFamily":"Poppins, sans-serif","text":" {"}]},{"type":"paragraph","children":[{"fontSizelineHeight":16"24px","lineHeightletterSpacing":"24px"0,"color":{"#555light",:"letterSpacing#3e46fd":0},"textfontSize":"Your widgetid values will be unique to your CMS account don't paste the examples given above."14,"fontFamily":"Poppins, sans-serif"}]}]}]},"childrentext":" :[],"idguideKey: \""},{"lineHeight":"0S5woNaF94ZfYpSroJZfg24px"}],"paramsletterSpacing":{0,"borderRadiuscolor":{"alllight":0"#3e46fd"},"btlfontSize":014,"bblfontFamily":0"Poppins, sans-serif","btrtext":0"PRE-78546111-44eb-4a8e-e29f-08db07f4253f","bbrbackgroundColor":0"#f7f907"},{"isIndividualCornerslineHeight":false}"24px","paddingletterSpacing":0,"gapcolor":20,{"verticalAlignmentlight":"top#3e46fd"}},{"id,"fontSize":14,"fontFamily":"btRuclAoo4fn8OU0sDZ7VPoppins, sans-serif","nametext":"column\","children}]},{"type":[],"paramsparagraph":{,"borderRadiuschildren":[{"alllineHeight":0,"btl24px":0,"bblletterSpacing":0,"btrcolor":0,{"bbrlight":0,"isIndividualCorners#3e46fd":false},"paddingfontSize":014,"gapfontFamily":20"Poppins, sans-serif","verticalAlignmenttext":"top" version: \"1.0.0\","}]},{"idtype":"HI8KQjQJSl39eMcOTvNax","name":"column"paragraph","children":[],{"paramslineHeight":{"borderRadius24px":{,"allletterSpacing":0,"btlcolor":0,{"bbllight":0,"btr#3e46fd":0},"bbrfontSize":014,"isIndividualCornersfontFamily":false},"padding":0,"gap":20,"verticalAlignment":"top"}"Poppins, sans-serif","text":" renderTo: \"preezie-widget-div-id\","}]},{"idtype":"fkm7ZewM4sXbRV56dnQvQ","name":"columnparagraph","children":[],"params":{"borderRadiuslineHeight":{"all24px":0,"btlletterSpacing":0,"bblcolor":0,{"btrlight":0,"bbr#3e46fd":0},"isIndividualCornersfontSize":false}14,"paddingfontFamily":0"Poppins, "gap":20sans-serif","verticalAlignmenttext":" top},"}},{"id":"ReQIVvz8u4Cde1iiT8Xq1","name]},{"type":"columnparagraph","children":[],"params":{"borderRadiuslineHeight":{"all24px":0,"btlletterSpacing":0,"bblcolor":0,{"btrlight":0,"bbr#3e46fd":0},"isIndividualCornersfontSize":false}14,"paddingfontFamily":0,"gap":20"Poppins, sans-serif","verticalAlignmenttext":" top]),"}]}],{"paramstype":{"layout"paragraph","children":[1,2],"gap{"lineHeight":35,"minHeight24px":100,"paddingletterSpacing":100,"borderRadiuscolor":0,{"sizelight":"full#3e46fd"}},{"idfontSize":"d5nHbWLFoAU4lWbIF5I5_"14,"namefontFamily":"rowPoppins, sans-serif","childrentext":[{"id":"XkuMC2WoMlOza0oXp0CMG","name"\t\tPREEZIE_GUIDE.render(["}]},{"type":"columnparagraph","children":[{"namelineHeight":"24px","iconletterSpacing":0,"paramscolor":{"templateIdlight":"plain award#3e46fd"},"shapefontSize":"none"14,"colorfontFamily":"#3390f9Poppins, sans-serif","alignmenttext":" end{"}]},{"sizetype":40,"iconparagraph":"google"},"children":[],{"idlineHeight":"j7nv4VxkWs4z_W5O04zQ124px"},{"nameletterSpacing":"button"0,"paramscolor":{"templateIdlight":"regular button#3e46fd"},"labelfontSize":"Google Tag Manager"14,"sizefontFamily":"mediumPoppins, sans-serif","text"shape:" guideKey: \"rounded"},{"alignmentlineHeight":"end24px","statesletterSpacing":{0,"idlecolor":{"colorslight":{"background":"#000000#3e46fd"}},"hoverfontSize":{14,"colorsfontFamily":{}}}},"children":[],"id":"7HF5MGRZuFZwNd9JdKWDU"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl"Poppins, sans-serif","text":"EPO-3a5710da-e0b2-400e-d952-08dadc93","backgroundColor":"#f7f907"},{"lineHeight":"24px","letterSpacing":0,"btrcolor":0,{"bbrlight":0,"isIndividualCorners#3e46fd":false},"paddingfontSize":014,"gapfontFamily":20"Poppins, sans-serif","verticalAlignmenttext":"\"top,"}]},{"idtype":"EoLyOhOOS08sE1gsthEPaparagraph","name":"column","children":[{"namelineHeight":"divider24px","paramsletterSpacing":{"templateId":"solid icon check-circle"0,"color":{"#3390F9",light"alignment":"start#3e46fd"},"fontSize":1814,"fontColorfontFamily":"#3390F9","height":1,"borderStyle":"solid","icon":"check-circle","text":"Code for Google Tag Manager users"}Poppins, sans-serif","text":" version: \"1.0.0\","}]},{"type":"paragraph","children":[],{"idlineHeight":"5Hl4ZyL85CXlJ6o81nAe924px"},{"nameletterSpacing":"text"0,"paramscolor":{"templateIdlight":"simple paragraph#3e46fd"},"valuefontSize":[{14,"typefontFamily":"paragraphPoppins, sans-serif","childrentext":[{" type"renderTo: "bulleted-list\"preezie-widget-div-id-popup\","children":[}]},{"type":"list-itemparagraph","children":[{"fontSizelineHeight":16"24px","lineHeightletterSpacing":"24px"0,"color":{"#555light",:"letterSpacing#3e46fd":0},"textfontSize":"Create a custom HTML tag in GTM and copy the below code but replacing the parts in "14,"fontFamily":"Poppins, sans-serif","text":" },"}]},{"fontSizetype":16"paragraph","children":[{"lineHeight":"24px","letterSpacing":0,"color":{"#555light":"#3e46fd"},"letterSpacingfontSize":014,"fontFamily":"Poppins, sans-serif","text":" yellow ])"}]},{"backgroundColortype":"#f7f907paragraph"},{"fontSizechildren":16,[{"lineHeight":"24px","24pxletterSpacing":0,"color":{"#555light":"#3e46fd"},"letterSpacingfontSize":014,"fontFamily":"Poppins, sans-serif","text":" as below:"}]})()"}]},{"type":"paragraph","children":[{"lineHeight":"24px","letterSpacing":0,"color":{"light":"#3e46fd"},"fontSize":14,"fontFamily":"Poppins, sans-serif","text":"<script type=\"text/javascript\" src=\"https://widget-cdn.preezie.com/production/preguide.min.js\"></</script>"}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","letterSpacing":0,"color":{"light":"#3e46fd#555"},"fontSizeletterSpacing":140,"fontFamily":"Poppins, sans-serif","text":"<script type=\"text/javascript\">"}]},{"type":"paragraphlist-item","children":[{"lineHeight":"24px","letterSpacing":0,"color":{"light#555":"#3e46fd"},"fontSizeletterSpacing":140,"fontFamily":"Poppins, sans-serif","text":" var targetElement = document.querySelector(\"."},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:","fontSize":16}]},{"type":"paragraph","children":[{"lineHeight":"24px","color":"#555","letterSpacing":0,"colorfontFamily":{"light"Poppins, sans-serif","text":"#3e46fd"},"fontSize":1416}]},{"fontFamilytype":"Poppins, sans-serifparagraph","textchildren":"os-header","backgroundColor"[{"type":"#f7f907paragraph"},{"lineHeightchildren":[{"24pxtype",:"letterSpacingparagraph":0,"colorchildren":[{"lightlineHeight":"#3e46fd24px"},"fontSizeletterSpacing":140,"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"\,")fontSize":16}]},{"type":"paragraph","children":[{"lineHeight":"24px","letterSpacing":0,"color":{"light":"#3e46fd"},"fontSize":14,"fontFamily":"Poppins, sans-serif","text":" ;(function () {""","fontSize":16}]},{"type":"paragraph","children":[{"lineHeight":"24px","letterSpacing":0,"color":{"light":"#3e46fd"},"fontSize":14,"fontFamily":"Poppins, sans-serif","text":" if (!targetElement) return"}]},{"type":"paragraphdata-widgetid=\": \"","childrenfontSize":[14},{"lineHeight":"24px","letterSpacing":0,"color":{"light":"#3e46fd"},"fontSize":14,"fontFamily":"Poppins, sans-serif","text":" targetElement.outerHTML += '<br><div id=\"preezie-widget-div-id\"></div><div id=\"preezie-widget-div-id-popup\"></div>'"}]},{"type":"paragraph","children":[PRE-78546111-44eb-4a8e-e29f-08db07f4253f","backgroundColor":"#f7f907","fontSize":14},{"lineHeight":"24px","letterSpacing":0,"color":{"light":"#3e46fd"},"fontSize":14,"fontFamily":"Poppins, sans-serif","text":" PREEZIE_GUIDE.render([""\"","fontSize":14}]},{"type":"paragraph","children":[{"lineHeight":"24px","letterSpacing":0,"color":{"light":"#3e46fd"},"fontSize":14,"fontFamily":"Poppins, sans-serif","text":" {"}]},{"type":"paragraphdata-widgetid=\": \"","childrenfontSize":[14},{"lineHeight":"24px","letterSpacing":0,"color":{"light":"#3e46fd"},"fontSize":14,"fontFamily":"Poppins, sans-serif","text":" guideKey: \"""EPO-3a5710da-e0b2-400e-d952-08dadc93","backgroundColor":"#f7f907","fontSize":14},{"lineHeight":"24px","letterSpacing":0,"color":{"light":"#3e46fd"},"fontSize":14,"fontFamily":"Poppins, sans-serif","text":"PRE-78546111-44eb-4a8e-e29f-08db07f4253f"\"","backgroundColorfontSize":"#f7f907"14}]},{"lineHeighttype":"24pxparagraph","letterSpacingchildren":0,"color":[{"lightlineHeight":"#3e46fd24px"},"fontSizeletterSpacing":140,"fontFamily":"Poppins, sans-serif","text":"\"","color":"#000000","fontSize":16}]},{"type":"paragraph","children":[{"lineHeight":"24px","letterSpacing":0,"fontFamily":"Poppins, sans-serif","color":{"light"#000000","text":"#3e46fd"}2. Update the querySelector with the ","fontSize":1416},{"fontFamilylineHeight":"Poppins, sans-serif24px","textletterSpacing":0," versionfontFamily": \"1.0.0\","}]},{"type"Poppins, sans-serif","color":"paragraph#000000","childrentext":[{"lineHeight":"24px"HTML class","letterSpacingfontWeight":0700,"colorfontSize":16},{"lightlineHeight":"#3e46fd24px"},"fontSizeletterSpacing":140,"fontFamily":"Poppins, sans-serif","textcolor":"#000000","text" renderTo: \"preezie-widget-div-id\","" you want to load the widget AFTER, follow these steps to find this:","fontSize":16}]},{"type":"paragraphbulleted-list","children":[{"lineHeighttype":"24pxlist-item","letterSpacingchildren":0,[{"colorlineHeight":{"light"24px","color":"#3e46fd#555"},"fontSizeletterSpacing":140,"fontFamily":"Poppins, sans-serif","text":" }Make a test transaction","fontSize":16}]},{"type":"paragraphlist-item","children":[{"lineHeight":"24px","letterSpacing":0,"color":{"light#555":"#3e46fd"},"fontSizeletterSpacing":140,"fontFamily":"Poppins, sans-serif","text":" ]),"Right-click on the part of the page you want to insert the widget AFTER, e.g. Thank you Graham!","fontSize":16}]},{"type":"paragraphlist-item","children":[{"lineHeight":"24px","letterSpacing":0,"color":{"light":"#3e46fd"}#555","fontSizeletterSpacing":140,"fontFamily":"Poppins, sans-serif","text":"\t\tPREEZIE_GUIDE.render(["Choose Inspect and find the text in the HTML of the class=\" \" ","fontSize":16}]}]},{"type":"paragraph","children":[{"lineHeight":"24px","letterSpacing":0,"colorfontFamily":{"light":"#3e46fd"}Poppins, sans-serif","fontSize":1416,"fontFamilytext":"Poppins, sans-serifhint","textcolor":" {"}]},{"type"light":"paragraph#a0a0a0"},"childrenfontWeight":[700},{"lineHeight":"24px","letterSpacing":0,"colorfontFamily":{"light":"#3e46fd"},"fontSize":14,"fontFamily":"Poppins, sans-serif"Poppins, sans-serif","fontSize":16,"color":{"light":"#a0a0a0"},"text":" guideKey: \""}: this is usually in the Elements tab and looks like this <div class=\"os-header\"..."}]},{"lineHeighttype":"24pxbulleted-list","letterSpacing":0,"color":{"light":"#3e46fd"},"fontSize":14"children":[{"type":"list-item","children":[{"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"EPO-3a5710da-e0b2-400e-d952-08dadc93Paste this text into the ","backgroundColorfontSize":"#f7f907"16},{"lineHeight":"24px","letterSpacing":0,"color":{"light":"#3e46fd"},"fontSize":14,"fontFamily":"Poppins, sans-serif","textcolor":"\#000000","}]},{"typetext":"paragraphquerySelector ","childrenfontSize":[16},{"lineHeight":"24px","letterSpacing":0,"color":{"light":"#3e46fd"}#555","fontSizeletterSpacing":140,"fontFamily":"Poppins, sans-serif","textfontSize":16,"text" version: \"1.0.0\",""making sure it has a . before it, e.g."}]}]},{"type":"paragraph","children":[{"lineHeighttype":"24pxparagraph","letterSpacingchildren":0,"color":[{"lighttype":"#3e46fdparagraph"},"fontSizechildren":14,[{"fontFamilytype":"Poppins, sans-serifparagraph","text":" renderTo: \"preezie-widget-div-id-popup\","}]},children":[{"type":"paragraph","children":[{"lineHeight":"24px","letterSpacing":0,"color":{"light":"#3e46fd"},"fontSize":14,"fontFamily":"Poppins, sans-serif","text":" },"}]},{"type":"paragraph","children":["document.querySelector(\"","fontSize":14},{"lineHeight":"24px","letterSpacing":0,"color":{"light":"#3e46fd"},"fontSize":14,"fontFamily":"Poppins, sans-serif","text":" ])"}]},{"type.os-header","backgroundColor":{"light":"paragraph#f7f907"},"childrenfontSize":[14},{"lineHeight":"24px","letterSpacing":0,"color":{"light":"#3e46fd"},"fontSize":14,"fontFamily":"Poppins, sans-serif","text":" })()"\")","fontSize":14}]}]}]}]}]},{"type":"paragraph","children":[{"lineHeightfontSize":"24px"16,"letterSpacinglineHeight":0,"color24px":{,"lightcolor":"#3e46fd#555"},"fontSizeletterSpacing":140,"fontFamily":"Poppins, sans-serif","text":"</script>"}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","text":"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":{"typetemplateId":"list-itemfull-width","alignment":"end","position":"center center","childrenborderRadius":[{"lineHeightall":0,"24pxbbl":0,"colorbbr":0,"#555btl":0,"letterSpacingbtr":0,"isIndividualCorners":false},"fontFamily"image":{"value":"att188514306"Poppins, sans-serif,"target":"_blank","texttype":"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:","fontSize":16}]},{"type":"paragraph","children":[{"lineHeight":"24px","color":"#555","letterSpacing"attachment"},"width":861,"height":349},"children":[],"id":"SYzYU59mr6TufPJ9rZJrl"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"fontFamilybbr":"Poppins, sans-serif","text":"","fontSize":16}]0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"typeid":"paragraphJasO-ECdi9HcAMTTIIgUz","childrenname":[{"typecolumn":,"paragraphchildren":[],"childrenparams":[{"typeborderRadius":{"paragraphall":0,"childrenbtl":[{0,"lineHeightbbl":0,"24pxbtr":0,"letterSpacingbbr":0,"fontFamilyisIndividualCorners":"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","fontSize":16}]},{"type":"paragraphfalse},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"iFj8jRX8vswJTf3viC6dB","name":"column","children":[],"params":{"lineHeightborderRadius":{"24pxall":0,"letterSpacingbtl":0,"colorbbl":{0,"lightbtr":0,"#3e46fdbbr"}:0,"fontFamilyisIndividualCorners":"Poppins, sans-serif"false},"textpadding":0,"gap":20,"fontSizeverticalAlignment":16"top"}]},{"typeid":"paragraphJFb_01dO86eNvJNoBe5yF","childrenname":[{"lineHeight":"24px"column","letterSpacingchildren":0[],"colorparams":{"lightborderRadius":{"#3e46fdall"}:0,"fontFamilybtl":"Poppins, sans-serif"0,"textbbl":"data-widgetid=\0,"btr": \""0,"fontSizebbr":14}0,{"lineHeightisIndividualCorners":"24px"false},"letterSpacingpadding":0,"colorgap":{20,"lightverticalAlignment":"#3e46fdtop"}},{"fontFamilyid":"Poppins, sans-serif7lVan2HPU1HLyDriJdqiu","textname":"PRE-78546111-44eb-4a8e-e29f-08db07f4253fcolumn","backgroundColorchildren":"#f7f907"[],"fontSizeparams":14},{"lineHeightborderRadius":{"24pxall":0,"letterSpacingbtl":0,"colorbbl":{"light":"#3e46fd"}0,"fontFamilybtr":"Poppins0, sans-serif",bbr"text":"\"":0,"fontSizeisIndividualCorners":14}]false},{"typepadding":"paragraph"0,"childrengap":[{20,"lineHeightverticalAlignment":"24pxtop"}}],"letterSpacingparams":0,"color":{"lightlayout":"#3e46fd"}[1,2],"fontFamilygap":"Poppins, sans-serif"35,"minHeight":100,"textpadding":"data-widgetid=\10,"borderRadius": \0,"size",:"fontSizefull":14}},{"lineHeightid":"24pxT4ihSrjMyugcGBTYI-XIf","letterSpacingname":0"row","colorchildren":[{"lightid":"#3e46fdfRM9mySNPCNkjLzUaDdfv"},"fontFamilyname":"Poppins, sans-serifcolumn","textchildren":"EPO-3a5710da-e0b2-400e-d952-08dadc93","backgroundColor":"#f7f907[{"name":"button","fontSizeparams":14},{"lineHeighttemplateId":"24pxregular button","letterSpacinglabel":0"Other ecomm platforms/custom websites","colorsize":{"light"medium","shape":"#3e46fdrounded"},"fontFamilyalignment":"Poppins, sans-serifend","textstates":{"\idle":{",colors"fontSize":14}]},{"typebackground":"paragraph#000000"}},"childrenhover":[{"lineHeightcolors":"24px"{}}},"letterSpacinglink":0,{"fontFamilyvalue":"Poppins, sans-serifhttps://preezie.atlassian.net/wiki/spaces/PW/pages/19104300/Custom+platforms+-+Pixel+tracking+guide","texttarget":"_blank","colortype":"#000000link"}},"fontSizechildren":16}[]},{"typeid":"paragraphbDb9vDLEVv2INNgjI2hwN"}],"childrenparams":[{"lineHeightborderRadius":{"24pxall":0,"letterSpacingbtl":0,"fontFamilybbl":"Poppins, sans-serif"0,"colorbtr":"#000000"0,"textbbr":"2. Update the querySelector with the "0,"fontSizeisIndividualCorners":16false},{"lineHeightpadding":"24px"0,"letterSpacinggap":020,"fontFamilyverticalAlignment":"Poppins, sans-serif","colortop"}},{"id":"#000000v-EEBrEgBPr9p96iV3KdH","textname":"HTML classcolumn","fontWeightchildren":700,"fontSize":16},[{"lineHeightname":"24pxdivider","letterSpacingparams":0,{"fontFamilytemplateId":"Poppins, sans-serifsolid icon check-circle","color":"#000000","textalignment":" you want to load the widget AFTER, follow these steps to find this:"start","fontSize":18,"fontColor":"#000000","fontSizeheight":16}]}1,{"typeborderStyle":"bulleted-listsolid","childrenicon":[{"type"check-circle","text":"list-item"Code for all other ecomm platforms"},"children":[{],"lineHeightid":"24px6zS0cmloCex6NitriydvS"},{"colorname":"#555text","letterSpacingparams":0,{"fontFamilytemplateId":"Poppins, sans-serif","textsimple paragraph","value":[{"type":"Make a test transactionparagraph","fontSizechildren":16}]},[{"type":"list-itemparagraph","children":[{"lineHeightfontSize":"24px"16,"colorlineHeight":"#55524px","letterSpacing":0,"fontFamilytext":"Poppins, sans-serifFor non-Shopify/GTM methods, there are 2 options:","textcolor":"Right-click on the part of the page you want to insert the widget AFTER, e.g. Thank you Graham!#000000","fontSizefontFamily":16"Poppins, sans-serif"}]},{"type":"list-itemparagraph","children":[{"lineHeightfontSize":"24px"16,"colorlineHeight":"#55524px","letterSpacing":0,"fontFamilytext":"Poppins, sans-serif","textcolor":"Choose Inspect and find the text in the HTML of the class=\" \" ","fontSize":16}]"#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"}]},{"fontSizetype":16,"text":"hint"paragraph","colorchildren":[{"lightfontSize":"#a0a0a0"},"fontWeight":700},{16,"lineHeight":"24px","letterSpacing":0,"fontFamilytext":"Poppins, sans-serif","fontSize":16,"color":{"light":"#a0a0a0#000000"},"textfontFamily":": this is usually in the Elements tab and looks like this <div class=\"os-header\"..."Poppins, sans-serif"}]},{"type":"bulleted-list","children":[{"type":"list-item"paragraph","children":[{"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamilytext":"Poppins, sans-serif","text":"Paste this text into the ","fontSize":16},{"lineHeight":"24px","letterSpacing":0<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"}]},{"colortype":"#000000paragraph","textchildren":[{"querySelector ","fontSize":16},{"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamilytext":"Poppins, sans-serif","fontSizecolor":16"#000000","textfontFamily":"making sure it has a . before it, e.g."}]Poppins, sans-serif"}]},{"type":"paragraph","children":[{"type"fontSize":16,"lineHeight":"paragraph24px","childrenletterSpacing":[{0,"typetext":"paragraphWe recommend placing after the confirmation 'Thank you' statement. ","childrencolor":[{"type"#000000","fontFamily":"paragraph","children":[Poppins, sans-serif"}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","letterSpacing":0,"colortext":{"","lightcolor":"#3e46fd#000000"},"fontFamily":"Poppins, sans-serif"}]},{"texttype":"document.querySelector(\"","paragraph","children":[{"fontSize":14}16,{"lineHeight":"24px","letterSpacing":0,"color":{"lighttext":"2. Or, you can use some extra values in the script to position it on the page for you, for example:","color":"#3e46fd#000000"},"fontFamily":"Poppins, sans-serif"}]},{"texttype":".os-headerparagraph","backgroundColorchildren":{"light":"#f7f907"},[{"fontSize":14}16,{"lineHeight":"24px","letterSpacing":0,"colortext":{"","lightcolor":"#3e46fd#000000"},"fontFamily":"Poppins, sans-serif","text":"\")","fontSize":14}]}]}]}]}]},{"type":"paragraph","children":[{"fontSize"lineHeight":"24px","letterSpacing":160,"lineHeighttext":"24px","color":"#555","letterSpacing":0<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","textcolor":"#3e46fd"}]},{"typefontSize":"paragraph","children":[{"fontSize":16,"14},{"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","color":"#3e46fd","fontSize":14,"text":"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":"JoNvB3Yddi3yXXetv24nsdata-targets=\"os-header,os-header\" data-isafter=\"true\"","backgroundColor":"#f7f907"},{"namelineHeight":"image24px","paramsletterSpacing":{0,"templateIdfontFamily":"fullPoppins, sans-widthserif","alignmentcolor":"end"#3e46fd","fontSize":14,"positiontext":"center center","borderRadius></script>"}]},{"type":{"allparagraph":0,"bblchildren":0,[{"bbrfontSize":016,"btllineHeight":0"24px","btrletterSpacing":0,"isIndividualCornerstext":false},"image":{,"valuecolor":"att188514306#000000","targetfontFamily":"_blank",Poppins, sans-serif"}]},{"type":"attachmentparagraph"},"width"children":[{"fontSize":86116,"heightlineHeight":349}"24px","childrenletterSpacing":[]0,"idtext":"SYzYU59mr6TufPJ9rZJrl"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"paddingThese 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,"gaptext":20"","verticalAlignmentcolor":"top#000000"}},{"idfontFamily":"JasOPoppins, sans-ECdi9HcAMTTIIgUzserif"}]},{"nametype":"columnparagraph","children":[],{"paramsfontSize":{16,"borderRadiuslineHeight":{"all24px":0,"btlletterSpacing":0,"bbltext":0"1. ","btrcolor":0"#000000","bbrfontFamily":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"iFj8jRX8vswJTf3viC6dB","name":"column","children":[],"params":{"borderRadius":{"all"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,"btlcolor":0"#000000","bblfontFamily":0"Poppins, sans-serif","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":"rowtext":"- 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":[{"idfontSize":"fRM9mySNPCNkjLzUaDdfv"16,"namelineHeight":"column24px","childrenletterSpacing":[{"name":"button","params":{"templateId0,"text":"regular button","labelcolor":"Other ecomm platforms/custom websites#000000","sizefontFamily":"medium"Poppins, "shape":"rounded","alignmentsans-serif"}]},{"type":"endparagraph","stateschildren":[{"idlefontSize":{16,"colorslineHeight":{"background":"#000000"}}24px","hoverletterSpacing":{"colors":{}}}0,"linktext":{"value":"https://preezie.atlassian.net/wiki/spaces/PW/pages/19104300/Custom+platforms+-+Pixel+tracking+guide","target":"_blank","type":"link"}}"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":"bDb9vDLEVv2INNgjI2hwNwlZrnQyoWIENFiK_2oixP"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"topcenter"}},{"id":"v-EEBrEgBPr9p96iV3KdHN3Casck9LqSSJzJtnodAb","name":"column","children":[],"params":{"nameborderRadius":{"dividerall":0,"paramsbtl":{0,"templateIdbbl":"solid icon check-circle"0,"btr":0,"colorbbr":0,"#000000isIndividualCorners":false},"alignmentpadding":0,"startgap":20,"fontSizeverticalAlignment":18"top"}},{"fontColorid":"#000000Z4M_0IXN2b6nS9HRM6cif","heightname":1"column","borderStylechildren":[],"solidparams",:{"iconborderRadius":{"check-circleall":0,"textbtl":"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":"paragraph0,"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":{"fontSizeborderRadius":{"all":160,"lineHeightbtl":0,"24pxbbl":0,"letterSpacingbtr":0,"textbbr":0,"isIndividualCorners":false},"colorpadding":0,"#000000gap":20,"fontFamilyverticalAlignment":"Poppins, sans-seriftop"}}]},"params":{"type"layout":[1,2],"gap":35,"paragraphminHeight":150,"childrenpadding":[{10,"fontSizeborderRadius":160,"lineHeightsize":"24pxfull"}},{"letterSpacingid":0"RdubZLdH7vi4cxd8nn9ek","textname":"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":"paragraphrow","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":[{"fontSizename":16"text","lineHeightparams":{"24pxtemplateId",:"letterSpacingheadline 2":0,"textvalue":"","color[{"type":"#000000paragraph","fontFamilychildren":"Poppins, sans-serif"}]},[{"type":"paragraph","children":[{"fontSizetext":16,"lineHeight":"24px""3. Add the Transaction tracking to your confirmation page","letterSpacing":0,"textfontWeight":"We recommend placing after the confirmation 'Thank you' statement. "700,"colorfontSize":"#000000"20,"fontFamily":"Poppins, sans-serif"}]}]}]},{"typechildren":"paragraph"[],"childrenid":[{"fontSize":16,"lineHeightQZZuDy1AdAQ6lvFX_C1zN"},{"name":"24pxtext","letterSpacingparams":0,{"texttemplateId":"simple paragraph","colorvalue":[{"type":"#000000paragraph","fontFamilychildren":"Poppins, sans-serif"}]},[{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","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"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","letterSpacingcolor":0"#555","textletterSpacing":""0,"colortext":"#000000","fontFamily":"Poppins, sans-serif"}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","letterSpacingcolor":0"#555","textletterSpacing":0,"<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\" ""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"}]},{"colortype":"#3e46fdparagraph","children":[{"fontSize":14}16,{"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","colortext":"#3e46fd"}]},{"fontSizetype":14,"text"bulleted-list","children":[{"type":"datalist-targets=\"os-header,os-header\" data-isafter=\"true\"","backgroundColor":"#f7f907"},{"lineHeight":"24pxitem","children":[{"fontSize":16,"lineHeight":"24px","color":"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif","colortext":"#3e46fdFor "},{"fontSize":1416,"textlineHeight":"></script>"}]},{"type24px","color":"paragraph#555","childrenletterSpacing":[{0,"fontSizefontFamily":16"Poppins, sans-serif","lineHeighttext":"24px","letterSpacing":0,"textShopify ","fontWeight":700},{"fontSize":16,"lineHeight":"24px","color":"#555","#000000letterSpacing":0,"fontFamily":"Poppins, sans-serif"}]},{"typetext":"paragraph","children":[you can copy and paste the exact code from your CMS and place into the "},{"fontSize":16,"lineHeight":"24px","letterSpacingcolor":0,"text":"These two values in the script can be updated based on your checkout page HTML.","color":"#000000"#555","letterSpacing":0,"fontFamily":"Poppins, sans-serif"}]},{"typetext":"paragraphSettings > Checkout > Order status page > Additional scripts","childrenfontWeight":[700},{"fontSize":16,"lineHeight":"24px","letterSpacingcolor":0,"text#555":"","colorletterSpacing":"#000000"0,"fontFamily":"Poppins, sans-serif","text":" box"}]},{"type":"paragraphlist-item","children":[{"fontSize":16,"lineHeight":"24px","letterSpacingcolor":0,"text":"1. "#555","colorletterSpacing":"#000000"0,"fontFamily":"Poppins, sans-serif","text":"For "},{"fontSize":16,"lineHeight":"24px","letterSpacingcolor":0"#555","colorletterSpacing":"#000000"0,"fontFamily":"Poppins, sans-serif","text":"data-targets BigCommerce ","fontWeight":700},{"fontSize":16,"lineHeight":"24px","letterSpacingcolor":0"#555","colorletterSpacing":"#000000"0,"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"}]you can copy and paste the exact code from your CMS into your Script Manager or theme's HTML file, check this "},{"type":"paragraphlink","childrenlink":[{"fontSizevalue":16,"lineHeight":"24px","letterSpacing":0,"text":"","color":"#000000","fontFamily":"Poppins, sans-serif"}]},{"type":"paragraph","https://preezie.atlassian.net/wiki/spaces/PW/pages/43778049/BigCommerce+Pixel+Tracking","target":"_blank","type":"link"},"children":[{"fontSize":16,"lineHeight":"24px","letterSpacing":0,"textfontFamily":"2. Poppins, sans-serif","colortext":"#000000guide","fontFamilycolor":"Poppins, sans-serif"#0091FF","underline":true}]},{"fontSize":16,"lineHeight":"24px","letterSpacingcolor":0"#555","colorletterSpacing":"#000000"0,"fontFamily":"Poppins, sans-serif","text":" data-isafter","fontWeight":700},to check if it is working "}]}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","letterSpacingcolor":0"#555","colorletterSpacing":"#000000"0,"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":[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","letterSpacingcolor":0,"text":""#555","colorletterSpacing":"#000000"0,"fontFamily":"Poppins, sans-serif"}]},{"typetext":"paragraphcart values ","childrenfontWeight":[700},{"fontSize":16,"lineHeight":"24px","letterSpacingcolor":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#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":[{"idfontSize":16,"lineHeight":"AC7HySEsddXojnAgP2oha24px","namecolor":"column#555","childrenletterSpacing":[{0,"namefontFamily":"icon"Poppins, sans-serif","fontWeight":700,"paramstext":""}]}]},{"templateIdtype":"rounded awardparagraph","sizechildren":20,[{"colortype":"#000000paragraph","alignmentchildren":[{"lineHeight":"end24px","iconletterSpacing":"angles-right"0,"shapetext":"rounded<script>","backgroundcolor":"#FFA500#3e46fd"},"childrenfontSize":[]14,"idfontFamily":"bZAZrna1zCNcPxUnSgsiGPoppins, sans-serif"}]},"params":{"borderRadiustype":{"allparagraph":0,"btlchildren":0,[{"bbllineHeight":0,"btr24px":0,"bbrletterSpacing":0,"isIndividualCornerstext":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"bF925Hpovb0MZ_0DGxvJW","name":"column","children":[{"name":"text","params":{"templateId":"headline 2","value":[" 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":[{"typelineHeight":"paragraph24px","childrenletterSpacing":[{0,"text":"3. Add the Transaction tracking to your confirmation page</script>","letterSpacingcolor":0,"fontWeight#3e46fd":700,"fontSize":2014,"fontFamily":"Poppins, sans-serif"}]}]}]},{"childrentype":[]"paragraph","idchildren":[{"QZZuDy1AdAQ6lvFX_C1zN"},{"namefontSize":16,"lineHeight":"text24px","paramscolor":{"templateId":"simple paragraph"#555","valueletterSpacing":[{0,"typefontFamily":"paragraphPoppins, sans-serif","childrentext":[""}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeight":"24px","colorletterSpacing":0,"fontFamily"#555:"Poppins, "letterSpacing":0sans-serif","text":"Finally to track the value of the referred transactions, 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""Follow these instructions to test your pixel is working","fontSize":18,"color":"#000000","fontWeight":700}]},{"type":"paragraph","children":[{"fontSize":16,"lineHeighttext":"24px"},{"colortype":"#555link","letterSpacinglink":0,{"textvalue":"https://preezie.atlassian.net/wiki/spaces/PW/pages/19104300/Custom+platforms+-+Pixel+tracking+guide#%5BinlineExtension%5DHow-to-test-it","fontFamilytarget":"Poppins, sans-serif"}]},{_blank","type":"paragraphlink"},"children":[{"fontSize":16,"lineHeight":"24px","colorletterSpacing":0,"fontFamily":"#555Poppins, sans-serif","letterSpacingtext":":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-serifhttps://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 &amp; 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"}