{"id":384969,"date":"2023-06-02T04:18:34","date_gmt":"2023-06-02T04:18:34","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=384969"},"modified":"2024-04-03T04:08:38","modified_gmt":"2024-04-03T04:08:38","slug":"add-custom-column-in-order-grid-filter","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/add-custom-column-in-order-grid-filter\/","title":{"rendered":"Add a custom column to the order grid&#8217;s filter option that is fulltext searchable."},"content":{"rendered":"\n<p>In this blog, we will learn how to add a custom column to the order grid&#8217;s filter option that is fulltext searchable in Magento 2.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What is fulltext search<\/h2>\n\n\n\n<p>The &#8216;Fulltext&#8217; search option in Magento 2 means that results are fetched based on the entire text of each attribute and rank each by relevancy, which is substantially more beneficial for the customers. In other words, a relevance-based search in which each search query is evaluated based on a score determined by the MATCH() AGAINST() query in MySQL.<\/p>\n\n\n\n<p><strong>Step 1: Create db_schema.xml in the app\/code\/Vendor\/Module\/etc\/ directory. We will add custom columns to the three tables sales_order, sales_order_grid, and quote in the db_schema.xml file. We must specify indexType as fulltext for a certain column in order to enable fulltext search on that column.<\/strong><\/p>\n\n\n\n<p>Among the order grid columns that are by default fulltext searchable in Magento 2 are increment_id, billing_name, shipping_name, billing_address, shipping_address, customer_name, and customer_email.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?xml version=&quot;1.0&quot;?&gt;\n&lt;schema xmlns:xsi=&quot;http:\/\/www.w3.org\/2001\/XMLSchema-instance&quot;\n        xsi:noNamespaceSchemaLocation=&quot;urn:magento:framework:Setup\/Declaration\/Schema\/etc\/schema.xsd&quot;&gt;\n    &lt;table name=&quot;sales_order_grid&quot; resource=&quot;sales&quot;&gt;\n        &lt;column xsi:type=&quot;text&quot; name=&quot;custom_field&quot; nullable=&quot;true&quot; comment=&quot;Custom Attribute&quot;\/&gt;\n        &lt;index referenceId=&quot;SALES_ORDER_GRID_CUSTOM_FIELD&quot; indexType=&quot;fulltext&quot;&gt;\n            &lt;column name=&quot;custom_field&quot;\/&gt;\n        &lt;\/index&gt;\n    &lt;\/table&gt;\n    &lt;table name=&quot;sales_order&quot; resource=&quot;sales&quot;&gt;\n        &lt;column xsi:type=&quot;text&quot; name=&quot;custom_field&quot; nullable=&quot;true&quot; comment=&quot;Custom Attribute&quot;\/&gt;\n    &lt;\/table&gt;\n    &lt;table name=&quot;quote&quot; resource=&quot;default&quot;&gt;\n        &lt;column xsi:type=&quot;text&quot; name=&quot;custom_field&quot; nullable=&quot;true&quot; comment=&quot;Custom Attribute&quot;\/&gt;\n    &lt;\/table&gt;\n&lt;\/schema&gt;<\/pre>\n\n\n\n<p><strong>Step 2: We need to declare the custom column to the UI order listing grid. For that, we will create a sales_order_grid.xml file in the app\/code\/Vendor\/Module\/view\/adminhtml\/ui_component\/ directory.<\/strong><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;\n&lt;listing xmlns:xsi=&quot;http:\/\/www.w3.org\/2001\/XMLSchema-instance&quot;\n         xsi:noNamespaceSchemaLocation=&quot;urn:magento:module:Magento_Ui:etc\/ui_configuration.xsd&quot;&gt;\n    &lt;columns name=&quot;sales_order_columns&quot;&gt;\n        &lt;column name=&quot;custom_field&quot;&gt;\n            &lt;argument name=&quot;data&quot; xsi:type=&quot;array&quot;&gt;\n                &lt;item name=&quot;config&quot; xsi:type=&quot;array&quot;&gt;\n                    &lt;item name=&quot;filter&quot; xsi:type=&quot;string&quot;&gt;text&lt;\/item&gt;\n                    &lt;item name=&quot;label&quot; xsi:type=&quot;string&quot; translate=&quot;true&quot;&gt;Custom Field&lt;\/item&gt;\n                &lt;\/item&gt;\n            &lt;\/argument&gt;\n        &lt;\/column&gt;\n    &lt;\/columns&gt;\n&lt;\/listing&gt;<\/pre>\n\n\n\n<p><strong>Step 3: We will construct a virtualType of the already-existing class Magento\\Sales\\Model\\ResourceModel\\Grid. After that, we&#8217;ll give that virtual type the column as an argument.<\/strong> <strong>This will enable the custom column to appear in the order grid filter.<\/strong><br><strong>To accomplish this, we will create a di.xml file in the directory app\/code\/Vendor\/Module\/etc.<\/strong><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;config xmlns:xsi=&quot;http:\/\/www.w3.org\/2001\/XMLSchema-instance&quot; xsi:noNamespaceSchemaLocation=&quot;urn:magento:framework:ObjectManager\/etc\/config.xsd&quot;&gt;\n&lt;virtualType name=&quot;Magento\\Sales\\Model\\ResourceModel\\Order\\Grid&quot; type=&quot;Magento\\Sales\\Model\\ResourceModel\\Grid&quot;&gt;\n&lt;arguments&gt;\n&lt;argument name=&quot;columns&quot; xsi:type=&quot;array&quot;&gt;\n&lt;item name=&quot;custom_field&quot; xsi:type=&quot;string&quot;&gt;sales_order.custom_field&lt;\/item&gt;\n&lt;\/argument&gt;\n&lt;\/arguments&gt;\n&lt;\/virtualType&gt;\n&lt;\/config&gt;<\/pre>\n\n\n\n<p><strong>Result:<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image size-full is-resized\"><img decoding=\"async\" width=\"1201\" height=\"640\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/06\/Screenshot-from-2023-05-30-16-53-47.png\" alt=\"Screenshot-from-2023-05-30-16-53-47\" class=\"wp-image-384980\" style=\"width:819px;height:435px\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/06\/Screenshot-from-2023-05-30-16-53-47.png 1201w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/06\/Screenshot-from-2023-05-30-16-53-47-300x160.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/06\/Screenshot-from-2023-05-30-16-53-47-250x133.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/06\/Screenshot-from-2023-05-30-16-53-47-768x409.png 768w\" sizes=\"(max-width: 1201px) 100vw, 1201px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<figure class=\"wp-block-image size-large is-resized\"><img decoding=\"async\" width=\"1200\" height=\"600\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/06\/Screenshot-from-2023-05-30-16-54-11-1200x600.png\" alt=\"Screenshot-from-2023-05-30-16-54-11\" class=\"wp-image-384981\" style=\"width:815px;height:408px\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/06\/Screenshot-from-2023-05-30-16-54-11-1200x600.png 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/06\/Screenshot-from-2023-05-30-16-54-11-300x150.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/06\/Screenshot-from-2023-05-30-16-54-11-250x125.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/06\/Screenshot-from-2023-05-30-16-54-11-768x384.png 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/06\/Screenshot-from-2023-05-30-16-54-11.png 1275w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>That&#8217;s all you need to do. I hope this helps.<\/p>\n\n\n\n<p>Reference: <a href=\"https:\/\/github.com\/magento\/magento2\/blob\/2.4-develop\/app\/code\/Magento\/Sales\/etc\/db_schema.xml#L377\">https:\/\/github.com\/magento\/magento2\/blob\/2.4-develop\/app\/code\/Magento\/Sales\/etc\/db_schema.xml<\/a><\/p>\n\n\n\n<p>You can also check our other related blogs: <\/p>\n\n\n\n<p><a href=\"https:\/\/webkul.com\/blog\/add-custom-column-filter-in-order-grid-collection-in-magento-2\/\">Magento 2 custom column filter in order grid collection<\/a><\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this blog, we will learn how to add a custom column to the order grid&#8217;s filter option that is fulltext searchable in Magento 2. What is fulltext search The &#8216;Fulltext&#8217; search option in Magento 2 means that results are fetched based on the entire text of each attribute and rank each by relevancy, which <a href=\"https:\/\/webkul.com\/blog\/add-custom-column-in-order-grid-filter\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":369,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-384969","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Add a custom column to the order grid&#039;s filter option<\/title>\n<meta name=\"description\" content=\"In this article, we will learn how to add a custom column to the order grid&#039;s filter option that is fulltext searchable in Magento\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webkul.com\/blog\/add-custom-column-in-order-grid-filter\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Add a custom column to the order grid&#039;s filter option\" \/>\n<meta property=\"og:description\" content=\"In this article, we will learn how to add a custom column to the order grid&#039;s filter option that is fulltext searchable in Magento\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/add-custom-column-in-order-grid-filter\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-06-02T04:18:34+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-04-03T04:08:38+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/06\/Screenshot-from-2023-05-30-16-53-47.png\" \/>\n<meta name=\"author\" content=\"Kukil Bora\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kukil Bora\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/add-custom-column-in-order-grid-filter\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/add-custom-column-in-order-grid-filter\/\"},\"author\":{\"name\":\"Kukil Bora\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/53875450d11bfd196e7580c778cbf085\"},\"headline\":\"Add a custom column to the order grid&#8217;s filter option that is fulltext searchable.\",\"datePublished\":\"2023-06-02T04:18:34+00:00\",\"dateModified\":\"2024-04-03T04:08:38+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/add-custom-column-in-order-grid-filter\/\"},\"wordCount\":319,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/add-custom-column-in-order-grid-filter\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/06\/Screenshot-from-2023-05-30-16-53-47.png\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/add-custom-column-in-order-grid-filter\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/add-custom-column-in-order-grid-filter\/\",\"url\":\"https:\/\/webkul.com\/blog\/add-custom-column-in-order-grid-filter\/\",\"name\":\"Add a custom column to the order grid's filter option\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/add-custom-column-in-order-grid-filter\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/add-custom-column-in-order-grid-filter\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/06\/Screenshot-from-2023-05-30-16-53-47.png\",\"datePublished\":\"2023-06-02T04:18:34+00:00\",\"dateModified\":\"2024-04-03T04:08:38+00:00\",\"description\":\"In this article, we will learn how to add a custom column to the order grid's filter option that is fulltext searchable in Magento\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/add-custom-column-in-order-grid-filter\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/add-custom-column-in-order-grid-filter\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/add-custom-column-in-order-grid-filter\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/06\/Screenshot-from-2023-05-30-16-53-47.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/06\/Screenshot-from-2023-05-30-16-53-47.png\",\"width\":1201,\"height\":640,\"caption\":\"Screenshot-from-2023-05-30-16-53-47\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/add-custom-column-in-order-grid-filter\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Add a custom column to the order grid&#8217;s filter option that is fulltext searchable.\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/53875450d11bfd196e7580c778cbf085\",\"name\":\"Kukil Bora\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/f05508107cdd6c99d6bd22854ecbf3b4dcbdd56b789499f899de21e5b3c59e26?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/f05508107cdd6c99d6bd22854ecbf3b4dcbdd56b789499f899de21e5b3c59e26?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Kukil Bora\"},\"description\":\"Kukil, a Magento master, excels in integrating marketplaces and shipping services. His PHP prowess ensures seamless eCommerce experiences. With a focus on customization, Kukil tailors Magento to unique business needs, providing exceptional solutions. Adobe's acquisition of Magento further highlights his expertise, offering cutting-edge digital commerce strategies.\",\"url\":\"https:\/\/webkul.com\/blog\/author\/kukil-bora441\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Add a custom column to the order grid's filter option","description":"In this article, we will learn how to add a custom column to the order grid's filter option that is fulltext searchable in Magento","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:\/\/webkul.com\/blog\/add-custom-column-in-order-grid-filter\/","og_locale":"en_US","og_type":"article","og_title":"Add a custom column to the order grid's filter option","og_description":"In this article, we will learn how to add a custom column to the order grid's filter option that is fulltext searchable in Magento","og_url":"https:\/\/webkul.com\/blog\/add-custom-column-in-order-grid-filter\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2023-06-02T04:18:34+00:00","article_modified_time":"2024-04-03T04:08:38+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/06\/Screenshot-from-2023-05-30-16-53-47.png","type":"","width":"","height":""}],"author":"Kukil Bora","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Kukil Bora","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/add-custom-column-in-order-grid-filter\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/add-custom-column-in-order-grid-filter\/"},"author":{"name":"Kukil Bora","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/53875450d11bfd196e7580c778cbf085"},"headline":"Add a custom column to the order grid&#8217;s filter option that is fulltext searchable.","datePublished":"2023-06-02T04:18:34+00:00","dateModified":"2024-04-03T04:08:38+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/add-custom-column-in-order-grid-filter\/"},"wordCount":319,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/add-custom-column-in-order-grid-filter\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/06\/Screenshot-from-2023-05-30-16-53-47.png","inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/add-custom-column-in-order-grid-filter\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/add-custom-column-in-order-grid-filter\/","url":"https:\/\/webkul.com\/blog\/add-custom-column-in-order-grid-filter\/","name":"Add a custom column to the order grid's filter option","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/add-custom-column-in-order-grid-filter\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/add-custom-column-in-order-grid-filter\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/06\/Screenshot-from-2023-05-30-16-53-47.png","datePublished":"2023-06-02T04:18:34+00:00","dateModified":"2024-04-03T04:08:38+00:00","description":"In this article, we will learn how to add a custom column to the order grid's filter option that is fulltext searchable in Magento","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/add-custom-column-in-order-grid-filter\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/add-custom-column-in-order-grid-filter\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/add-custom-column-in-order-grid-filter\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/06\/Screenshot-from-2023-05-30-16-53-47.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/06\/Screenshot-from-2023-05-30-16-53-47.png","width":1201,"height":640,"caption":"Screenshot-from-2023-05-30-16-53-47"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/add-custom-column-in-order-grid-filter\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Add a custom column to the order grid&#8217;s filter option that is fulltext searchable."}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/53875450d11bfd196e7580c778cbf085","name":"Kukil Bora","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/f05508107cdd6c99d6bd22854ecbf3b4dcbdd56b789499f899de21e5b3c59e26?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f05508107cdd6c99d6bd22854ecbf3b4dcbdd56b789499f899de21e5b3c59e26?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Kukil Bora"},"description":"Kukil, a Magento master, excels in integrating marketplaces and shipping services. His PHP prowess ensures seamless eCommerce experiences. With a focus on customization, Kukil tailors Magento to unique business needs, providing exceptional solutions. Adobe's acquisition of Magento further highlights his expertise, offering cutting-edge digital commerce strategies.","url":"https:\/\/webkul.com\/blog\/author\/kukil-bora441\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/384969","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/369"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=384969"}],"version-history":[{"count":8,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/384969\/revisions"}],"predecessor-version":[{"id":413183,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/384969\/revisions\/413183"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=384969"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=384969"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=384969"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}