{"id":8037,"date":"2020-01-04T00:00:00","date_gmt":"2020-01-04T00:00:00","guid":{"rendered":"https:\/\/xpon.ai\/?p=8037"},"modified":"2023-08-09T04:59:15","modified_gmt":"2023-08-09T04:59:15","slug":"google-analytics-include-filter-limitations-workaround","status":"publish","type":"post","link":"https:\/\/xpon.ai\/gb\/resources\/google-analytics-include-filter-limitations-workaround\/","title":{"rendered":"Google Analytics &#8211; &#8216;Include Filter&#8217; Limitations &#038; Workaround Using Custom Fields"},"content":{"rendered":"<p>The Google Analytics Include filter is a powerful tool that allows you to limit data in your Google Analytics View based on the subdirectory, hostname, source IP address or any other required logic. However, there is one caveat for using multiple Google Analytics Include filters: When you use two or more Include type filters in your Google Analytics View, each filter works independently and only allows traffic which satisfies the filter condition. For example, if you were to filter traffic by two Include filters using \/sales\/ and \/checkout\/ subdirectories of the website, the first filter will only include hits to the page containing \/sales\/ (excluding \/checkout\/ pages) in its URL and a second one only pages with \/checkout\/ (excluding \/sales\/ pages). So unless there are pages containing both sales and checkout patterns in its address &#8211; nothing will be included in the View. The solution here is to use just one filter matching both patterns (regex expression: (\/sales\/)|(\/checkout\/)).<\/p>\n<p>You don&#8217;t normally see more than one Include type filter in the View for exactly this reason.<\/p>\n<p>As I wrote in <a href=\"https:\/\/xpon.ai\/resources\/google-analytics-4-limits-and-quotas\/\">Google Analytics Limits and Quotas<\/a> each filter can only accommodate 256 characters in the text field. This is enough for most websites, but not for your average enterprise. At Internetrix we are noticing this limitation kicking in every couple of months when implementing Google Analytics structure for our enterprise clients. Furthermore, you can&#8217;t use different dimensions in the same filter.<\/p>\n<p>An example could be a requirement to include hits from one hostname and hits from another hostname where Page Title contains specific phrase (for ex. &#8220;On Sale&#8221;).<\/p>\n<h4><strong>Integrating multiple Include filters with OR logic<\/strong><\/h4>\n<p>A little workaround that I have found to the previously mentioned limitations is to match against conditions one by one using an Advanced type filter. Then you can use only one Include filter at the end <a href=\"https:\/\/support.google.com\/analytics\/answer\/10227574?hl=en\">(since Google Analytics guarantees that filter will be executed in the specified order).<\/a> In other words, every filter &#8220;remembers&#8221; in a separate field that we need to include the current hit rather than simply filtering traffic. Later, the Include type filter checks if the field is set to any value, and if it is, allows this hit to be included.<\/p>\n<p>Let&#8217;s say we are tasked with collection of all hits to the website <em>www.example1.com.au<\/em> and hits to hostname <em>example2.com.au<\/em> where Custom Dimension with index 31 is set to <em>Yes<\/em>. We are going to create three filters which need to be applied to the View in the following order;<\/p>\n<ol>\n<li><strong>Filter #1: <em>Hostname example1.com.au to Custom Field 1 &#8211; Advanced<\/em><\/strong><br \/>\nThis filter will check if hostname matches <em>example1.com.au<\/em> and set <em>Custom Field 1<\/em> to it&#8217;s value<br \/>\n<img decoding=\"async\" class=\"leftAlone aligncenter\" title=\"\" src=\"https:\/\/xpon.ai\/wp-content\/uploads\/2023\/02\/Testing-View-Web-Analytics-360-Google-Chrome-2018-08-13-16-57-22.png\" alt=\"Google_Analytics_-_'Include_Filter'_Limitations_&amp;_Workaround_Using_Custom_Fields_image_1\" width=\"465\" height=\"705\" \/><br \/>\nOn the screenshot, Advanced type filter tries to match (using <a title=\"Google Analytics regex\" href=\"https:\/\/en.wikipedia.org\/wiki\/Regular_expression\" target=\"_blank\" rel=\"nofollow noopener\">RegEx<\/a> syntax) hostname <em>example.1.com.au.<\/em> If regex engine captures anything matching the pattern (<em>example1.com.au<\/em>), it will save it to the temporary variable named $A1. In the <em>Output To -&gt; Constructor<\/em> filter field we write the captured value (or nothing) to the <strong>Custom Field 1<\/strong>.<br \/>\nThere are two fields in Google Analytics which exist only during filter processing phase: <em>Custom Field 1<\/em> and <em>Custom Field 2<\/em>. You can&#8217;t report on them, nor should you try. Their only purpose is to save and pass information across different filters.<br \/>\nOur last filter will only include hits where <em>Custom Field 1<\/em> is set to any value. Which means that no matter what will happen in the filters executing next, hits will be included in the View if they have the hostname <em>example1.com.au<\/em> or <em>www.example1.com.au<\/em> or <em>test.example1.com.au<\/em>.<\/li>\n<li>Filter #2: <em><strong>Concatenate Hostname and Custom Dimension 31 to Custom Field 2 &#8211; Advanced<\/strong><\/em><br \/>\nAs per the requirements, we only have to allow hits to a specific hostname where Custom Dimension with Index 31 is set to the &#8216;Yes&#8217; value. To achieve this, I concatenate hostname and the Custom Dimension value and write the result to the Custom Field 2 field.<br \/>\n<img decoding=\"async\" class=\"leftAlone aligncenter\" title=\"\" src=\"https:\/\/xpon.ai\/wp-content\/uploads\/2023\/02\/test-Analytics-360-Google-Chrome-2018-08-23-16-36-40.png\" alt=\"Google_Analytics_-_'Include_Filter'_Limitations_&amp;_Workaround_Using_Custom_Fields_image_2\" width=\"588\" height=\"700\" \/><br \/>\n<strong>What happens here?<\/strong> &#8211; Firstly, the Google Analytics filter execution engine executes a regex engine on the hostname dimension against the <em>.*<\/em> pattern (capture everything). Basically, the filter captures hostname and writes it to the $A1 temporary variable. Next, the filter executes the regular expression with syntax <em>(.*)<\/em> against value stored in the Custom Dimension with Index 31 for the current hit. This means the whole string is captured into the temporary variable $B1. After that, concatenate $A1 and $B1 with a hyphen symbol between them.<\/li>\n<li>Filter #3: <strong><em>Check if Hostname and CD31 confront to Business Logic to Custom Field 1 &#8211; Advanced<\/em><br \/>\n<\/strong>At this stage, inside the <em>Custom Field 1<\/em> we have a combination of a hostname and a Custom Dimension #31 value for the current hit. What&#8217;s left to do is to check if it matches our requirement. It should be: <em>example2.com.au-Yes<\/em><strong><br \/>\n<img decoding=\"async\" class=\"leftAlone aligncenter\" title=\"\" src=\"https:\/\/xpon.ai\/wp-content\/uploads\/2023\/02\/test-Analytics-360-Google-Chrome-2018-08-23-16-35-09.png\" alt=\"Google_Analytics_-_'Include_Filter'_Limitations_&amp;_Workaround_Using_Custom_Fields_image_3\" width=\"482\" height=\"694\" \/><br \/>\n<\/strong>This is similar to the Filter #1 (<em>Hostname example1.com.au to Custom Field 1 &#8211; Advanced<\/em>) since it will only write to the Custom Field 1 if Custom Field 2 value contains the <em>example2.com.au-Yes<\/em> string. If the hostname is different or the Custom Dimension value is <em>No<\/em> (or anything else, really), nothing will be written to the Custom Field 1.<strong><br \/>\n<\/strong><\/li>\n<li>Filter #4: <em><strong>Include if Custom Field 1 is set &#8211; Include<\/strong><\/em><br \/>\nThis Include type filter will ONLY include hits into the view where the value of Custom Field 1 is set as a result of previously executed filters.<br \/>\n<img decoding=\"async\" class=\"leftAlone aligncenter\" title=\"\" src=\"https:\/\/xpon.ai\/wp-content\/uploads\/2023\/02\/test-Analytics-360-Google-Chrome-2018-08-23-16-42-10.png\" alt=\"Google_Analytics_-_'Include_Filter'_Limitations_&amp;_Workaround_Using_Custom_Fields_image_4\" width=\"358\" height=\"370\" \/>This is fairly simple, the <em>.+<\/em> RegEx pattern matches anything which has one or more characters. Basically, if there is a value then an action is performed.<\/li>\n<\/ol>\n<p>As you can see from the above, the filter order is super-critical and should they be executed in an incorrect order &#8211; nothing will work.<\/p>\n<p><img decoding=\"async\" class=\"leftAlone aligncenter\" title=\"\" src=\"https:\/\/xpon.ai\/wp-content\/uploads\/2023\/02\/ResizedImage600209-test-Analytics-360-Google-Chrome-2018-08-23-16-45-29.png\" alt=\"Google_Analytics_-_'Include_Filter'_Limitations_&amp;_Workaround_Using_Custom_Fields_image_5\" width=\"600\" height=\"209\" \/><\/p>\n<p>What could possibly go wrong?<\/p>\n<p>While things should be up and running now, we have used a bit of a non-standard approach. I am a big fan of simple and self-documenting things. This one is obviously not and therefore I only recommend doing this as a &#8220;last resort&#8221;.<\/p>\n<p>By simply changing the order in which filters execute we can easily get incorrect results. More importantly, if anyone accesses the View setup they will find it very hard to understand.<\/p>\n<p><em><strong>To use this setup effectively, my hot tips are:<\/strong><\/em><\/p>\n<ul>\n<li>Always use Test Views. Use multiple Testing View to test different filters at the same time.<\/li>\n<li>Consider using numbers in the filter names to hint that they must be in this specific order.<\/li>\n<li>Keep filters setup AS SIMPLE AS POSSIBLE .<\/li>\n<li>If you believe it is important to document the setup (it&#8217;s not self-explanatory) you may consider creating a &#8220;do nothing&#8221; filter whose name hints people that they should read the setup documentation first. From my experience that works very well<\/li>\n<li>When you are happy with the way filters works and are applying them to View(s) used for analysis, do not forget to add Annotations.<\/li>\n<\/ul>\n<p><img decoding=\"async\" class=\"leftAlone aligncenter\" title=\"\" src=\"https:\/\/xpon.ai\/wp-content\/uploads\/2023\/02\/ResizedImage690262-test-Analytics-360-Google-Chrome-2018-08-23-16-57-31.png\" alt=\"Google_Analytics_-_'Include_Filter'_Limitations_&amp;_Workaround_Using_Custom_Fields_image_6\" width=\"690\" height=\"262\" \/><\/p>\n<p>Hopefully, by now you have a much better understanding of how to apply my little Include Filter workaround.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>The Google Analytics Include filter is a powerful tool that allows you to limit data in your Google Analytics View based on the subdirectory, hostname, source IP address or any other required logic. However, there is one caveat for using multiple Google Analytics Include filters: When you use two or more Include type filters in [&hellip;]<\/p>\n","protected":false},"author":12,"featured_media":6090,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_yoast_wpseo_focuskw":"Include Filter","_yoast_wpseo_title":"Include Fiulter - Limits and Workarounds %%sep%% %%sitename%%","_yoast_wpseo_metadesc":"The Google Analytics Include filter is a powerful tool that allows you to limit data in your Google Analytics View based on the subdirectory.","_yoast_wpseo_meta-robots-noindex":"","_yoast_wpseo_meta-robots-nofollow":"","_yoast_wpseo_canonical":"","_et_pb_use_builder":"","_et_pb_old_content":"","_et_gb_content_width":"","footnotes":""},"categories":[395],"tags":[436,453],"class_list":["post-8037","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog-gb","tag-analytics-measurement-gb","tag-marketing-technology-gb"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v21.2 (Yoast SEO v21.4) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Include Fiulter - Limits and Workarounds | XPON Technologies | XPON UK<\/title>\n<meta name=\"description\" content=\"The Google Analytics Include filter is a powerful tool that allows you to limit data in your Google Analytics View based on the subdirectory. | XPON UK\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/xpon.ai\/gb\/wp-json\/wp\/v2\/posts\/8037\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Google Analytics - &#039;Include Filter&#039; Limitations &amp; Workaround Using Custom Fields | XPON UK\" \/>\n<meta property=\"og:description\" content=\"The Google Analytics Include filter is a powerful tool that allows you to limit data in your Google Analytics View based on the subdirectory. | XPON UK\" \/>\n<meta property=\"og:url\" content=\"https:\/\/xpon.ai\/gb\/resources\/google-analytics-include-filter-limitations-workaround\/\" \/>\n<meta property=\"og:site_name\" content=\"XPON Technologies\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/xpongroup\/\" \/>\n<meta property=\"article:published_time\" content=\"2020-01-04T00:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-08-09T04:59:15+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/xpon.ai\/wp-content\/uploads\/2023\/02\/image-11.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1020\" \/>\n\t<meta property=\"og:image:height\" content=\"553\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"XPON Technologies Group\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@xpontech\" \/>\n<meta name=\"twitter:site\" content=\"@xpontech\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"XPON Technologies Group\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/xpon.ai\/gb\/resources\/google-analytics-include-filter-limitations-workaround\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/xpon.ai\/gb\/resources\/google-analytics-include-filter-limitations-workaround\/\"},\"author\":{\"name\":\"XPON Technologies Group\",\"@id\":\"https:\/\/xpon.ai\/gb\/#\/schema\/person\/aa8c496cc9248f72a86ab557e0bed6e1\"},\"headline\":\"Google Analytics &#8211; &#8216;Include Filter&#8217; Limitations &#038; Workaround Using Custom Fields\",\"datePublished\":\"2020-01-04T00:00:00+00:00\",\"dateModified\":\"2023-08-09T04:59:15+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/xpon.ai\/gb\/resources\/google-analytics-include-filter-limitations-workaround\/\"},\"wordCount\":1165,\"publisher\":{\"@id\":\"https:\/\/xpon.ai\/gb\/#organization\"},\"keywords\":[\"Analytics &amp; Measurement\",\"Marketing Technology\"],\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-GB\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/xpon.ai\/gb\/resources\/google-analytics-include-filter-limitations-workaround\/\",\"url\":\"https:\/\/xpon.ai\/gb\/resources\/google-analytics-include-filter-limitations-workaround\/\",\"name\":\"Include Fiulter - Limits and Workarounds | XPON Technologies\",\"isPartOf\":{\"@id\":\"https:\/\/xpon.ai\/gb\/#website\"},\"datePublished\":\"2020-01-04T00:00:00+00:00\",\"dateModified\":\"2023-08-09T04:59:15+00:00\",\"description\":\"The Google Analytics Include filter is a powerful tool that allows you to limit data in your Google Analytics View based on the subdirectory.\",\"breadcrumb\":{\"@id\":\"https:\/\/xpon.ai\/gb\/resources\/google-analytics-include-filter-limitations-workaround\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/xpon.ai\/gb\/resources\/google-analytics-include-filter-limitations-workaround\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/xpon.ai\/gb\/resources\/google-analytics-include-filter-limitations-workaround\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/xpon.ai\/gb\/?page_id=4049\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Google Analytics &#8211; &#8216;Include Filter&#8217; Limitations &#038; Workaround Using Custom Fields\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/xpon.ai\/gb\/#website\",\"url\":\"https:\/\/xpon.ai\/gb\/\",\"name\":\"XPON Technologies\",\"description\":\"Technology &amp; cloud solutions to modernise marketing operations\",\"publisher\":{\"@id\":\"https:\/\/xpon.ai\/gb\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/xpon.ai\/gb\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/xpon.ai\/gb\/#organization\",\"name\":\"XPON Technologies\",\"alternateName\":\"XPON\",\"url\":\"https:\/\/xpon.ai\/gb\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/xpon.ai\/gb\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/xpon.ai\/wp-content\/uploads\/2026\/03\/XPON_logomark_RGB_medium.png\",\"contentUrl\":\"https:\/\/xpon.ai\/wp-content\/uploads\/2026\/03\/XPON_logomark_RGB_medium.png\",\"width\":212,\"height\":212,\"caption\":\"XPON Technologies\"},\"image\":{\"@id\":\"https:\/\/xpon.ai\/gb\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/xpongroup\/\",\"https:\/\/twitter.com\/xpontech\",\"https:\/\/www.youtube.com\/@xpon\/videos\",\"https:\/\/au.linkedin.com\/company\/xpon-technologies\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/xpon.ai\/gb\/#\/schema\/person\/aa8c496cc9248f72a86ab557e0bed6e1\",\"name\":\"XPON Technologies Group\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/xpon.ai\/gb\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/038bb62ee334e679305b3c014dd2e35151d0bb7f0c8350fe0f981035fdc10195?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/038bb62ee334e679305b3c014dd2e35151d0bb7f0c8350fe0f981035fdc10195?s=96&d=mm&r=g\",\"caption\":\"XPON Technologies Group\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Include Fiulter - Limits and Workarounds | XPON Technologies | XPON UK","description":"The Google Analytics Include filter is a powerful tool that allows you to limit data in your Google Analytics View based on the subdirectory. | XPON UK","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/xpon.ai\/gb\/wp-json\/wp\/v2\/posts\/8037","og_locale":"en_GB","og_type":"article","og_title":"Google Analytics - 'Include Filter' Limitations & Workaround Using Custom Fields | XPON UK","og_description":"The Google Analytics Include filter is a powerful tool that allows you to limit data in your Google Analytics View based on the subdirectory. | XPON UK","og_url":"https:\/\/xpon.ai\/gb\/resources\/google-analytics-include-filter-limitations-workaround\/","og_site_name":"XPON Technologies","article_publisher":"https:\/\/www.facebook.com\/xpongroup\/","article_published_time":"2020-01-04T00:00:00+00:00","article_modified_time":"2023-08-09T04:59:15+00:00","og_image":[{"width":1020,"height":553,"url":"https:\/\/xpon.ai\/wp-content\/uploads\/2023\/02\/image-11.jpg","type":"image\/jpeg"}],"author":"XPON Technologies Group","twitter_card":"summary_large_image","twitter_creator":"@xpontech","twitter_site":"@xpontech","twitter_misc":{"Written by":"XPON Technologies Group","Estimated reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/xpon.ai\/gb\/resources\/google-analytics-include-filter-limitations-workaround\/#article","isPartOf":{"@id":"https:\/\/xpon.ai\/gb\/resources\/google-analytics-include-filter-limitations-workaround\/"},"author":{"name":"XPON Technologies Group","@id":"https:\/\/xpon.ai\/gb\/#\/schema\/person\/aa8c496cc9248f72a86ab557e0bed6e1"},"headline":"Google Analytics &#8211; &#8216;Include Filter&#8217; Limitations &#038; Workaround Using Custom Fields","datePublished":"2020-01-04T00:00:00+00:00","dateModified":"2023-08-09T04:59:15+00:00","mainEntityOfPage":{"@id":"https:\/\/xpon.ai\/gb\/resources\/google-analytics-include-filter-limitations-workaround\/"},"wordCount":1165,"publisher":{"@id":"https:\/\/xpon.ai\/gb\/#organization"},"keywords":["Analytics &amp; Measurement","Marketing Technology"],"articleSection":["Blog"],"inLanguage":"en-GB"},{"@type":"WebPage","@id":"https:\/\/xpon.ai\/gb\/resources\/google-analytics-include-filter-limitations-workaround\/","url":"https:\/\/xpon.ai\/gb\/resources\/google-analytics-include-filter-limitations-workaround\/","name":"Include Fiulter - Limits and Workarounds | XPON Technologies","isPartOf":{"@id":"https:\/\/xpon.ai\/gb\/#website"},"datePublished":"2020-01-04T00:00:00+00:00","dateModified":"2023-08-09T04:59:15+00:00","description":"The Google Analytics Include filter is a powerful tool that allows you to limit data in your Google Analytics View based on the subdirectory.","breadcrumb":{"@id":"https:\/\/xpon.ai\/gb\/resources\/google-analytics-include-filter-limitations-workaround\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/xpon.ai\/gb\/resources\/google-analytics-include-filter-limitations-workaround\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/xpon.ai\/gb\/resources\/google-analytics-include-filter-limitations-workaround\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/xpon.ai\/gb\/?page_id=4049"},{"@type":"ListItem","position":2,"name":"Google Analytics &#8211; &#8216;Include Filter&#8217; Limitations &#038; Workaround Using Custom Fields"}]},{"@type":"WebSite","@id":"https:\/\/xpon.ai\/gb\/#website","url":"https:\/\/xpon.ai\/gb\/","name":"XPON Technologies","description":"Technology &amp; cloud solutions to modernise marketing operations","publisher":{"@id":"https:\/\/xpon.ai\/gb\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/xpon.ai\/gb\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-GB"},{"@type":"Organization","@id":"https:\/\/xpon.ai\/gb\/#organization","name":"XPON Technologies","alternateName":"XPON","url":"https:\/\/xpon.ai\/gb\/","logo":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/xpon.ai\/gb\/#\/schema\/logo\/image\/","url":"https:\/\/xpon.ai\/wp-content\/uploads\/2026\/03\/XPON_logomark_RGB_medium.png","contentUrl":"https:\/\/xpon.ai\/wp-content\/uploads\/2026\/03\/XPON_logomark_RGB_medium.png","width":212,"height":212,"caption":"XPON Technologies"},"image":{"@id":"https:\/\/xpon.ai\/gb\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/xpongroup\/","https:\/\/twitter.com\/xpontech","https:\/\/www.youtube.com\/@xpon\/videos","https:\/\/au.linkedin.com\/company\/xpon-technologies"]},{"@type":"Person","@id":"https:\/\/xpon.ai\/gb\/#\/schema\/person\/aa8c496cc9248f72a86ab557e0bed6e1","name":"XPON Technologies Group","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/xpon.ai\/gb\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/038bb62ee334e679305b3c014dd2e35151d0bb7f0c8350fe0f981035fdc10195?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/038bb62ee334e679305b3c014dd2e35151d0bb7f0c8350fe0f981035fdc10195?s=96&d=mm&r=g","caption":"XPON Technologies Group"}}]}},"_links":{"self":[{"href":"https:\/\/xpon.ai\/gb\/wp-json\/wp\/v2\/posts\/8037","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/xpon.ai\/gb\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/xpon.ai\/gb\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/xpon.ai\/gb\/wp-json\/wp\/v2\/users\/12"}],"replies":[{"embeddable":true,"href":"https:\/\/xpon.ai\/gb\/wp-json\/wp\/v2\/comments?post=8037"}],"version-history":[{"count":0,"href":"https:\/\/xpon.ai\/gb\/wp-json\/wp\/v2\/posts\/8037\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/xpon.ai\/gb\/wp-json\/wp\/v2\/media\/6090"}],"wp:attachment":[{"href":"https:\/\/xpon.ai\/gb\/wp-json\/wp\/v2\/media?parent=8037"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/xpon.ai\/gb\/wp-json\/wp\/v2\/categories?post=8037"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/xpon.ai\/gb\/wp-json\/wp\/v2\/tags?post=8037"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}