{"id":1116,"date":"2021-05-18T16:41:27","date_gmt":"2021-05-18T12:41:27","guid":{"rendered":"https:\/\/blog.keitaro.io\/en\/?p=1116"},"modified":"2024-12-09T11:15:54","modified_gmt":"2024-12-09T09:15:54","slug":"tracking-script-conversions","status":"publish","type":"post","link":"https:\/\/blog.keitaro.io\/en\/tracking-script-conversions\/","title":{"rendered":"Save Website Conversions with a Tracking Script &amp; Order Form"},"content":{"rendered":"<p>In this manual, we will set up a system for sending conversions to <a href=\"https:\/\/open.keitaro.io\/?utm_source=blog&amp;utm_medium=Technical_article&amp;utm_campaign=Save_Conversions_2021&amp;utm_content=link&amp;utm_term=Keitaro\">Keitaro Tracker<\/a> from a website with an order form integrated with a tracking script.<\/p>\n<p><!--more--><\/p>\n<div class=\"fx-toc fx-toc-id-1116\"><h2 class=\"fx-toc-title\">Title<\/h2><ul class='fx-toc-list level-1'>\n\t<li>\n\t\t<a href=\"https:\/\/blog.keitaro.io\/en\/tracking-script-conversions\/#integrating-a-tracking-script\">Integrating a Tracking Script<\/a>\n\t<\/li>\n\t<li>\n\t\t<a href=\"https:\/\/blog.keitaro.io\/en\/tracking-script-conversions\/#setting-up-the-conversions-sending\">Setting up the Conversions Sending<\/a>\n\t<\/li>\n\t<li>\n\t\t<a href=\"https:\/\/blog.keitaro.io\/en\/tracking-script-conversions\/#setting-up-subid-optional\">Setting up subid (Optional)<\/a>\n\t<\/li>\n\t<li>\n\t\t<a href=\"https:\/\/blog.keitaro.io\/en\/tracking-script-conversions\/#if-you-have-additional-questions\">If You Have Additional Questions<\/a>\n\t<\/li>\n<\/ul>\n<\/ul>\n<\/div>\n\n<h2><span id=\"integrating-a-tracking-script\"><strong>Integrating a Tracking Script<\/strong><\/span><\/h2>\n<ol>\n<li><span style=\"font-weight: 400;\">Create a campaign in Keitaro Tracker.<\/span><\/li>\n<li>Next, go to the <strong style=\"font-size: revert;\">Integrations<\/strong><span style=\"font-size: revert;\"> tab and select the Tracking script:<\/span><\/li>\n<\/ol>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-1118 aligncenter\" src=\"https:\/\/blog.keitaro.io\/en\/wp-content\/uploads\/2021\/05\/Screenshot_1-1.jpg\" alt=\"\" width=\"1919\" height=\"973\" \/><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0 \u00a0 \u00a0 \u00a0 \u00a03. Insert the code from Keitaro Tracker to a <strong><em>&lt;head&gt;<\/em><\/strong> tag on your landing page.<\/span><\/p>\n<p><img decoding=\"async\" class=\"aligncenter\" src=\"https:\/\/blog.keitaro.io\/ru\/wp-content\/uploads\/2018\/04\/%D0%B3%D0%B0%D0%B9%D0%B4-%D1%87%D0%B5%D1%82%D0%B5%D1%80%D0%B3-2.jpg\" \/><\/p>\n<p><span style=\"font-weight: 400;\">Now we need the code for sending conversions.<\/span><\/p>\n<h2><span id=\"setting-up-the-conversions-sending\"><strong>Setting up the Conversions Sending<\/strong><\/span><\/h2>\n<ol>\n<li><span style=\"font-weight: 400;\">Copy <\/span><a href=\"https:\/\/docs.keitaro.io\/en\/campaign-integrations\/ktracking.html#sending-a-postback-with-sending-a-form\"><span style=\"font-weight: 400;\">the following code<\/span><\/a><span style=\"font-weight: 400;\">:<\/span><\/li>\n<\/ol>\n<pre class=\"lang:default decode:true \">&lt;script type='application\/javascript'&gt;\nfunction reportConversion(el, status, params) {\n    var form = (el &amp;&amp; el.form) ? el.form : el;\n    var params = {};\n    [].map.call(form.elements, function(el) {\n      if (el.name != '') {\n          params[el.name] = el.value;  \n      }\n    });\n    KTracking.reportConversion(0);\n    return true;\n};\n&lt;\/script&gt;\n<\/pre>\n<p><span style=\"font-weight: 400;\">\u00a0 \u00a0 \u00a0 \u00a0 \u00a02. Insert the code to the <em><strong>&lt;head&gt;<\/strong><\/em> tag below the previously inserted code:<\/span><\/p>\n<p><img decoding=\"async\" class=\"aligncenter\" src=\"https:\/\/blog.keitaro.io\/ru\/wp-content\/uploads\/2018\/04\/%D0%BD%D0%BE%D0%B2%D1%8B%D0%B9-%D1%81%D0%BA%D1%80%D0%B8%D0%BF%D1%82432.jpg\" \/><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0 \u00a0 \u00a0 \u00a0 \u00a03. Now we need to add sending the conversions code under the button of sending the order.<\/span><\/p>\n<p><strong>This is the code:<\/strong><\/p>\n<pre class=\"lang:default decode:true \">onclick=\"reportConversion(event.target, status, params)\"\n<\/pre>\n<p><strong>You can add the status and the payout sum, e.g.:<\/strong><\/p>\n<pre class=\"lang:default decode:true \">&lt;button onclick=\"reportConversion(event.target, 'lead', {payout: 10})\"&gt;Order now&lt;\/button&gt;<\/pre>\n<p><span style=\"font-weight: 400;\">Insert this code under each of the buttons if there are more than one button on a landing page:<\/span><\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-1120\" src=\"https:\/\/blog.keitaro.io\/en\/wp-content\/uploads\/2021\/05\/\u043d\u043e\u0432\u044b\u0439-\u043a\u043e\u0434-1047.png\" alt=\"\" width=\"1179\" height=\"259\" \/><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0 \u00a0 \u00a0 \u00a0 \u00a04. Save the<strong> index.html<\/strong> file and upload it to the hosting. You can check the conversions log at <strong>Maintenance &gt; Logs &gt; Received postbacks<\/strong> in Keitaro Tracker.<\/span><\/p>\n<h2><span id=\"setting-up-subid-optional\"><strong>Setting up subid (Optional)<\/strong><\/span><\/h2>\n<p><span style=\"font-weight: 400;\">Suppose the traffic goes to the website through the Keitaro Tracker campaign link, not to the website link directly. <\/span><\/p>\n<p><span style=\"font-weight: 400;\">In that case, you need to configure the transfer of the <em><strong>_subid<\/strong><\/em> parameter to exclude duplicate clicks. Just add <em><strong>&amp; _subid = {subid}<\/strong><\/em> to the offer URL:<\/span><\/p>\n<pre class=\"lang:default decode:true \">https:\/\/website.ru\/?_subid={subid}<\/pre>\n<h2><span id=\"if-you-have-additional-questions\"><strong>If You Have Additional Questions<\/strong><\/span><\/h2>\n<p><span style=\"font-weight: 400;\">Feel free to <a href=\"https:\/\/open.keitaro.io\/keitaromedia?utm_term=contact_us&amp;utm_source=blog&amp;utm_content=link&amp;utm_campaign=Save_Conversions_2021&amp;utm_source=blog&amp;target=contact\">contact our support<\/a> if there are any questions left \u2014 we will be happy to help out.<\/span><\/p>\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this manual, we will set up a system for sending conversions to Keitaro Tracker from &hellip; <\/p>\n","protected":false},"author":19,"featured_media":1117,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"_uf_show_specific_survey":0,"_uf_disable_surveys":false,"footnotes":""},"categories":[108,88,20],"tags":[],"class_list":["post-1116","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-guide","category-keitaro-tracker-2","category-usecases"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO Pro 4.9.5.2 - aioseo.com -->\n\t<meta name=\"description\" content=\"Learn how to track website conversations with Keitaro Tracker. Read our blog to get more insight on tracking and advertising.\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Marketing Team\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/blog.keitaro.io\/en\/tracking-script-conversions\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO Pro (AIOSEO) 4.9.5.2\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Keitaro Blog \u00bb Top Trends in Digital Marketing and Ad Tracking\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Save Website Conversions with a Tracking Script &amp; Order Form\" \/>\n\t\t<meta property=\"og:description\" content=\"Learn how to track website conversations with Keitaro Tracker. Read our blog to get more insight on tracking and advertising.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/blog.keitaro.io\/en\/tracking-script-conversions\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/blog.keitaro.io\/en\/wp-content\/uploads\/2021\/05\/plush-design-studio-.jpg\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/blog.keitaro.io\/en\/wp-content\/uploads\/2021\/05\/plush-design-studio-.jpg\" \/>\n\t\t<meta property=\"og:image:width\" content=\"1680\" \/>\n\t\t<meta property=\"og:image:height\" content=\"1260\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2021-05-18T12:41:27+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2024-12-09T09:15:54+00:00\" \/>\n\t\t<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/keitaro.tracker\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@keitaro_tracker\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Save Website Conversions with a Tracking Script &amp; Order Form\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Learn how to track website conversations with Keitaro Tracker. Read our blog to get more insight on tracking and advertising.\" \/>\n\t\t<meta name=\"twitter:creator\" content=\"@keitaro_tracker\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/blog.keitaro.io\/en\/wp-content\/uploads\/2024\/08\/Screenshot-2024-08-02-at-12.18.52\u202fPM.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/blog.keitaro.io\\\/en\\\/tracking-script-conversions\\\/#aioseo-article-65d3a853bb8e2\",\"name\":\"Save Website Conversions with a Tracking Script &amp; Order Form\",\"headline\":\"Save Website Conversions with a Tracking Script &amp; Order Form\",\"description\":\"In this manual, we will set up a system for sending conversions to Keitaro Tracker from a website with an order form integrated with a tracking script. Title Integrating a Tracking Script Setting up the Conversions Sending Setting up subid (Optional) If You Have Additional Questions Integrating a Tracking Script Create a campaign in Keitaro\",\"author\":{\"@type\":\"Person\",\"name\":\"Marketing Team\",\"url\":\"https:\\\/\\\/blog.keitaro.io\\\/en\\\/author\\\/marketing-team\\\/\"},\"publisher\":{\"@id\":\"https:\\\/\\\/blog.keitaro.io\\\/en\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/blog.keitaro.io\\\/en\\\/wp-content\\\/uploads\\\/2021\\\/05\\\/plush-design-studio-.jpg\",\"width\":1680,\"height\":1260,\"caption\":\"Save Website Conversions with a Tracking Script & Order Form\"},\"datePublished\":\"2021-05-18T16:41:27+02:00\",\"dateModified\":\"2024-12-09T11:15:54+02:00\",\"inLanguage\":\"en-US\",\"articleSection\":\"Guide, Keitaro Tracker, Use Cases\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/blog.keitaro.io\\\/en\\\/tracking-script-conversions\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/blog.keitaro.io\\\/en#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/blog.keitaro.io\\\/en\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/blog.keitaro.io\\\/en\\\/category\\\/usecases\\\/#listItem\",\"name\":\"Use Cases\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/blog.keitaro.io\\\/en\\\/category\\\/usecases\\\/#listItem\",\"position\":2,\"name\":\"Use Cases\",\"item\":\"https:\\\/\\\/blog.keitaro.io\\\/en\\\/category\\\/usecases\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/blog.keitaro.io\\\/en\\\/tracking-script-conversions\\\/#listItem\",\"name\":\"Save Website Conversions with a Tracking Script &amp; Order Form\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/blog.keitaro.io\\\/en#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/blog.keitaro.io\\\/en\\\/tracking-script-conversions\\\/#listItem\",\"position\":3,\"name\":\"Save Website Conversions with a Tracking Script &amp; Order Form\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/blog.keitaro.io\\\/en\\\/category\\\/usecases\\\/#listItem\",\"name\":\"Use Cases\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/blog.keitaro.io\\\/en\\\/#organization\",\"name\":\"Keitaro Tracker\",\"description\":\"Keitaro Tracker is a self-hosted ad tracker that gives you complete control over your traffic. Designed specifically for media buying, affiliate marketing, traffic arbitrage, and internet marketing, it ensures privacy, handles large volumes of clicks, and offers extensive customization options.\",\"url\":\"https:\\\/\\\/blog.keitaro.io\\\/en\\\/\",\"telephone\":\"+16562184636\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/blog.keitaro.io\\\/en\\\/wp-content\\\/uploads\\\/2024\\\/08\\\/Logo-Keitaro-green.png\",\"@id\":\"https:\\\/\\\/blog.keitaro.io\\\/en\\\/tracking-script-conversions\\\/#organizationLogo\",\"width\":1000,\"height\":442},\"image\":{\"@id\":\"https:\\\/\\\/blog.keitaro.io\\\/en\\\/tracking-script-conversions\\\/#organizationLogo\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/keitaro.tracker\",\"https:\\\/\\\/twitter.com\\\/keitaro_tracker?lang=en\",\"https:\\\/\\\/www.instagram.com\\\/keitaro_tracker\",\"https:\\\/\\\/www.tiktok.com\\\/@keitaro_tracker\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCtL1YEGv3EolfAor-vFiYaw\",\"https:\\\/\\\/www.linkedin.com\\\/showcase\\\/keitaro-tracker-apliteni\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/blog.keitaro.io\\\/en\\\/author\\\/marketing-team\\\/#author\",\"url\":\"https:\\\/\\\/blog.keitaro.io\\\/en\\\/author\\\/marketing-team\\\/\",\"name\":\"Marketing Team\",\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/cde99b1f5f99357d4f5f72c02149c9903057bdae61b102b2f71e3d631f1fa1c3?s=96&d=mm&r=g\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/blog.keitaro.io\\\/en\\\/tracking-script-conversions\\\/#webpage\",\"url\":\"https:\\\/\\\/blog.keitaro.io\\\/en\\\/tracking-script-conversions\\\/\",\"name\":\"Save Website Conversions with a Tracking Script & Order Form\",\"description\":\"Learn how to track website conversations with Keitaro Tracker. Read our blog to get more insight on tracking and advertising.\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/blog.keitaro.io\\\/en\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/blog.keitaro.io\\\/en\\\/tracking-script-conversions\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/blog.keitaro.io\\\/en\\\/author\\\/marketing-team\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/blog.keitaro.io\\\/en\\\/author\\\/marketing-team\\\/#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/blog.keitaro.io\\\/en\\\/wp-content\\\/uploads\\\/2021\\\/05\\\/plush-design-studio-.jpg\",\"@id\":\"https:\\\/\\\/blog.keitaro.io\\\/en\\\/tracking-script-conversions\\\/#mainImage\",\"width\":1680,\"height\":1260,\"caption\":\"Save Website Conversions with a Tracking Script & Order Form\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/blog.keitaro.io\\\/en\\\/tracking-script-conversions\\\/#mainImage\"},\"datePublished\":\"2021-05-18T16:41:27+02:00\",\"dateModified\":\"2024-12-09T11:15:54+02:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/blog.keitaro.io\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/blog.keitaro.io\\\/en\\\/\",\"name\":\"Keitaro Tracker Blog\",\"alternateName\":\"Keitaro Tracker Blog\",\"description\":\"Top Trends in Digital Marketing and Ad Tracking\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/blog.keitaro.io\\\/en\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO Pro -->\r\n\t\t<title>Save Website Conversions with a Tracking Script &amp; Order Form<\/title>\n\n","aioseo_head_json":{"title":"Save Website Conversions with a Tracking Script & Order Form","description":"Learn how to track website conversations with Keitaro Tracker. Read our blog to get more insight on tracking and advertising.","canonical_url":"https:\/\/blog.keitaro.io\/en\/tracking-script-conversions\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/blog.keitaro.io\/en\/tracking-script-conversions\/#aioseo-article-65d3a853bb8e2","name":"Save Website Conversions with a Tracking Script &amp; Order Form","headline":"Save Website Conversions with a Tracking Script &amp; Order Form","description":"In this manual, we will set up a system for sending conversions to Keitaro Tracker from a website with an order form integrated with a tracking script. Title Integrating a Tracking Script Setting up the Conversions Sending Setting up subid (Optional) If You Have Additional Questions Integrating a Tracking Script Create a campaign in Keitaro","author":{"@type":"Person","name":"Marketing Team","url":"https:\/\/blog.keitaro.io\/en\/author\/marketing-team\/"},"publisher":{"@id":"https:\/\/blog.keitaro.io\/en\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/blog.keitaro.io\/en\/wp-content\/uploads\/2021\/05\/plush-design-studio-.jpg","width":1680,"height":1260,"caption":"Save Website Conversions with a Tracking Script & Order Form"},"datePublished":"2021-05-18T16:41:27+02:00","dateModified":"2024-12-09T11:15:54+02:00","inLanguage":"en-US","articleSection":"Guide, Keitaro Tracker, Use Cases"},{"@type":"BreadcrumbList","@id":"https:\/\/blog.keitaro.io\/en\/tracking-script-conversions\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/blog.keitaro.io\/en#listItem","position":1,"name":"Home","item":"https:\/\/blog.keitaro.io\/en","nextItem":{"@type":"ListItem","@id":"https:\/\/blog.keitaro.io\/en\/category\/usecases\/#listItem","name":"Use Cases"}},{"@type":"ListItem","@id":"https:\/\/blog.keitaro.io\/en\/category\/usecases\/#listItem","position":2,"name":"Use Cases","item":"https:\/\/blog.keitaro.io\/en\/category\/usecases\/","nextItem":{"@type":"ListItem","@id":"https:\/\/blog.keitaro.io\/en\/tracking-script-conversions\/#listItem","name":"Save Website Conversions with a Tracking Script &amp; Order Form"},"previousItem":{"@type":"ListItem","@id":"https:\/\/blog.keitaro.io\/en#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/blog.keitaro.io\/en\/tracking-script-conversions\/#listItem","position":3,"name":"Save Website Conversions with a Tracking Script &amp; Order Form","previousItem":{"@type":"ListItem","@id":"https:\/\/blog.keitaro.io\/en\/category\/usecases\/#listItem","name":"Use Cases"}}]},{"@type":"Organization","@id":"https:\/\/blog.keitaro.io\/en\/#organization","name":"Keitaro Tracker","description":"Keitaro Tracker is a self-hosted ad tracker that gives you complete control over your traffic. Designed specifically for media buying, affiliate marketing, traffic arbitrage, and internet marketing, it ensures privacy, handles large volumes of clicks, and offers extensive customization options.","url":"https:\/\/blog.keitaro.io\/en\/","telephone":"+16562184636","logo":{"@type":"ImageObject","url":"https:\/\/blog.keitaro.io\/en\/wp-content\/uploads\/2024\/08\/Logo-Keitaro-green.png","@id":"https:\/\/blog.keitaro.io\/en\/tracking-script-conversions\/#organizationLogo","width":1000,"height":442},"image":{"@id":"https:\/\/blog.keitaro.io\/en\/tracking-script-conversions\/#organizationLogo"},"sameAs":["https:\/\/www.facebook.com\/keitaro.tracker","https:\/\/twitter.com\/keitaro_tracker?lang=en","https:\/\/www.instagram.com\/keitaro_tracker","https:\/\/www.tiktok.com\/@keitaro_tracker","https:\/\/www.youtube.com\/channel\/UCtL1YEGv3EolfAor-vFiYaw","https:\/\/www.linkedin.com\/showcase\/keitaro-tracker-apliteni"]},{"@type":"Person","@id":"https:\/\/blog.keitaro.io\/en\/author\/marketing-team\/#author","url":"https:\/\/blog.keitaro.io\/en\/author\/marketing-team\/","name":"Marketing Team","image":{"@type":"ImageObject","url":"https:\/\/secure.gravatar.com\/avatar\/cde99b1f5f99357d4f5f72c02149c9903057bdae61b102b2f71e3d631f1fa1c3?s=96&d=mm&r=g"}},{"@type":"WebPage","@id":"https:\/\/blog.keitaro.io\/en\/tracking-script-conversions\/#webpage","url":"https:\/\/blog.keitaro.io\/en\/tracking-script-conversions\/","name":"Save Website Conversions with a Tracking Script & Order Form","description":"Learn how to track website conversations with Keitaro Tracker. Read our blog to get more insight on tracking and advertising.","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/blog.keitaro.io\/en\/#website"},"breadcrumb":{"@id":"https:\/\/blog.keitaro.io\/en\/tracking-script-conversions\/#breadcrumblist"},"author":{"@id":"https:\/\/blog.keitaro.io\/en\/author\/marketing-team\/#author"},"creator":{"@id":"https:\/\/blog.keitaro.io\/en\/author\/marketing-team\/#author"},"image":{"@type":"ImageObject","url":"https:\/\/blog.keitaro.io\/en\/wp-content\/uploads\/2021\/05\/plush-design-studio-.jpg","@id":"https:\/\/blog.keitaro.io\/en\/tracking-script-conversions\/#mainImage","width":1680,"height":1260,"caption":"Save Website Conversions with a Tracking Script & Order Form"},"primaryImageOfPage":{"@id":"https:\/\/blog.keitaro.io\/en\/tracking-script-conversions\/#mainImage"},"datePublished":"2021-05-18T16:41:27+02:00","dateModified":"2024-12-09T11:15:54+02:00"},{"@type":"WebSite","@id":"https:\/\/blog.keitaro.io\/en\/#website","url":"https:\/\/blog.keitaro.io\/en\/","name":"Keitaro Tracker Blog","alternateName":"Keitaro Tracker Blog","description":"Top Trends in Digital Marketing and Ad Tracking","inLanguage":"en-US","publisher":{"@id":"https:\/\/blog.keitaro.io\/en\/#organization"}}]},"og:locale":"en_US","og:site_name":"Keitaro Blog \u00bb Top Trends in Digital Marketing and Ad Tracking","og:type":"article","og:title":"Save Website Conversions with a Tracking Script &amp; Order Form","og:description":"Learn how to track website conversations with Keitaro Tracker. Read our blog to get more insight on tracking and advertising.","og:url":"https:\/\/blog.keitaro.io\/en\/tracking-script-conversions\/","og:image":"https:\/\/blog.keitaro.io\/en\/wp-content\/uploads\/2021\/05\/plush-design-studio-.jpg","og:image:secure_url":"https:\/\/blog.keitaro.io\/en\/wp-content\/uploads\/2021\/05\/plush-design-studio-.jpg","og:image:width":1680,"og:image:height":1260,"article:published_time":"2021-05-18T12:41:27+00:00","article:modified_time":"2024-12-09T09:15:54+00:00","article:publisher":"https:\/\/www.facebook.com\/keitaro.tracker","twitter:card":"summary","twitter:site":"@keitaro_tracker","twitter:title":"Save Website Conversions with a Tracking Script &amp; Order Form","twitter:description":"Learn how to track website conversations with Keitaro Tracker. Read our blog to get more insight on tracking and advertising.","twitter:creator":"@keitaro_tracker","twitter:image":"https:\/\/blog.keitaro.io\/en\/wp-content\/uploads\/2024\/08\/Screenshot-2024-08-02-at-12.18.52\u202fPM.png"},"aioseo_meta_data":{"post_id":"1116","title":null,"description":"Learn how to track website conversations with Keitaro Tracker. Read our blog to get more insight on tracking and advertising.","keywords":null,"keyphrases":{"focus":{"keyphrase":"conversions","score":74,"analysis":{"keyphraseInTitle":{"score":9,"maxScore":9,"error":0},"keyphraseInDescription":{"score":3,"maxScore":9,"error":1},"keyphraseLength":{"score":9,"maxScore":9,"error":0,"length":1},"keyphraseInURL":{"score":5,"maxScore":5,"error":0},"keyphraseInIntroduction":{"score":9,"maxScore":9,"error":0},"keyphraseInSubHeadings":{"score":3,"maxScore":9,"error":1},"keyphraseInImageAlt":{"score":3,"maxScore":9,"error":1},"keywordDensity":{"type":"best","score":9,"maxScore":9,"error":0}}},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"custom_image","og_image_url":"https:\/\/blog.keitaro.io\/en\/wp-content\/uploads\/2021\/05\/plush-design-studio-.jpg","og_image_width":"1680","og_image_height":"1260","og_image_custom_url":"https:\/\/blog.keitaro.io\/en\/wp-content\/uploads\/2021\/05\/plush-design-studio-.jpg","og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":{"id":"#aioseo-article-65d3a853bb8e2","slug":"article","graphName":"Article","label":"Article","properties":{"type":"BlogPosting","name":"#post_title","headline":"#post_title","description":"#post_excerpt","image":"","keywords":"","author":{"name":"#author_name","url":"#author_url"},"dates":{"include":true,"datePublished":"","dateModified":""}}},"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"BlogPosting","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":"{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"}}","pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"seo_analyzer_scan_date":null,"breadcrumb_settings":null,"limit_modified_date":false,"reviewed_by":null,"open_ai":"{\"title\":{\"suggestions\":[],\"usage\":0},\"description\":{\"suggestions\":[],\"usage\":0}}","ai":null,"created":"2021-07-01 08:50:09","updated":"2025-05-30 00:27:20"},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/blog.keitaro.io\/en\" title=\"Home\">Home<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">&ndash;<\/span><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/blog.keitaro.io\/en\/category\/usecases\/\" title=\"Use Cases\">Use Cases<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">&ndash;<\/span><span class=\"aioseo-breadcrumb\">\n\tSave Website Conversions with a Tracking Script &amp; Order Form\n<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/blog.keitaro.io\/en"},{"label":"Use Cases","link":"https:\/\/blog.keitaro.io\/en\/category\/usecases\/"},{"label":"Save Website Conversions with a Tracking Script &amp; Order Form","link":"https:\/\/blog.keitaro.io\/en\/tracking-script-conversions\/"}],"_links":{"self":[{"href":"https:\/\/blog.keitaro.io\/en\/wp-json\/wp\/v2\/posts\/1116","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/blog.keitaro.io\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blog.keitaro.io\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blog.keitaro.io\/en\/wp-json\/wp\/v2\/users\/19"}],"replies":[{"embeddable":true,"href":"https:\/\/blog.keitaro.io\/en\/wp-json\/wp\/v2\/comments?post=1116"}],"version-history":[{"count":4,"href":"https:\/\/blog.keitaro.io\/en\/wp-json\/wp\/v2\/posts\/1116\/revisions"}],"predecessor-version":[{"id":5291,"href":"https:\/\/blog.keitaro.io\/en\/wp-json\/wp\/v2\/posts\/1116\/revisions\/5291"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/blog.keitaro.io\/en\/wp-json\/wp\/v2\/media\/1117"}],"wp:attachment":[{"href":"https:\/\/blog.keitaro.io\/en\/wp-json\/wp\/v2\/media?parent=1116"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blog.keitaro.io\/en\/wp-json\/wp\/v2\/categories?post=1116"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blog.keitaro.io\/en\/wp-json\/wp\/v2\/tags?post=1116"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}