{"id":425128,"date":"2024-02-28T14:33:15","date_gmt":"2024-02-28T14:33:15","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=425128"},"modified":"2024-05-22T14:09:32","modified_gmt":"2024-05-22T14:09:32","slug":"how-to-add-a-column-in-the-render-list-on-the-product-controller-for-the-new-product-page-v2-in-prestashop-8-1","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/how-to-add-a-column-in-the-render-list-on-the-product-controller-for-the-new-product-page-v2-in-prestashop-8-1\/","title":{"rendered":"How to add a column in the render list on the product controller for the new product page V2 in PrestaShop 8.1"},"content":{"rendered":"\n<p>In this blog, we are going to learn how to add columns and filters from the BO <a href=\"https:\/\/webkul.com\/blog\/adding-a-custom-grid-column-type-in-prestashop-admin-symfony-controller-with-module\/\">product page grid<\/a>.<\/p>\n\n\n\n<p>So let\u2019s see together how to do that with PrestaShop.<\/p>\n\n\n\n<p>Sometimes, we need to add columns that come from a custom module table.<\/p>\n\n\n\n<p>Now, We are going to add the \u2018<strong>Type<\/strong>\u2018 column to the product list page.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1200\" height=\"499\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/02\/demo-1200x499.png\" alt=\"demo\" class=\"wp-image-425146\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/02\/demo-1200x499.png 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/02\/demo-300x125.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/02\/demo-250x104.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/02\/demo-768x319.png 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/02\/demo.png 1272w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>We will get it only by changing in module main file.<\/p>\n\n\n\n<p>Thanks to the available hooks, it\u2019s super easy to add columns in a grid!<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">$this-&gt;registerHook(\n    &#091;\n        &#039;actionProductGridDefinitionModifier&#039;,\n        &#039;actionProductGridQueryBuilderModifier&#039;,\n    ]\n);<\/pre>\n\n\n\n<p>After registering, We will do the below code in our module main file. <\/p>\n\n\n\n<p>Use the required namespaces in the top of file.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">use PrestaShop\\PrestaShop\\Core\\Grid\\Column\\Type\\DataColumn;<\/pre>\n\n\n\n<p>Now define the definition of both register hooks. <\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">public function hookActionProductGridDefinitionModifier($params)\n    {\n        \/\/ \/** @var GridDefinitionInterface $definition *\/\n        $definition = $params&#091;&#039;definition&#039;];\n        $definition\n            -&gt;getColumns()\n            -&gt;addAfter(\n                &#039;price_tax_included&#039;,\n                (new DataColumn(&#039;demo_type&#039;))\n                    -&gt;setName($this-&gt;l(&#039;Type&#039;))\n                    -&gt;setOptions(\n                        &#091;\n                            &#039;field&#039; =&gt; &#039;demo_type&#039;,\n                        ]\n                    )\n            );\n    }<\/pre>\n\n\n\n<p>The above code is used to add the header to the grid.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">public function hookActionProductGridQueryBuilderModifier($params)\n    {\n        \/** @var QueryBuilder $searchQueryBuilder *\/\n        $searchQueryBuilder = $params&#091;&#039;search_query_builder&#039;];\n\n        \/** @var CustomerFilters $searchCriteria *\/\n        $searchCriteria = $params&#091;&#039;search_criteria&#039;];\n        $demo = $this-&gt;l(&#039;Demo&#039;);\n        $dot = &#039;--&#039;;\n        $searchQueryBuilder-&gt;addSelect(\n            &#039;IF(ad.`demo_type` IS NULL, \\&#039;&#039; . pSQL($dot) . &#039;\\&#039;,IF(ad.`demo_type` != 2, \\&#039;&#039; . pSQL($demo) . &#039;\\&#039;, \\&#039;&#039; . pSQL($demo) . &#039;\\&#039;)) AS `demo_type`&#039;\n        );\n\n        $searchQueryBuilder-&gt;leftJoin(\n            &#039;p&#039;,\n            &#039;`&#039; . pSQL(_DB_PREFIX_) . &#039;wk_demo`&#039;,\n            &#039;ad&#039;,\n            &#039;ad.`id_product` = p.`id_product` AND ad.`id_shop` = pl.`id_shop`&#039;\n        );\n\n        foreach ($searchCriteria-&gt;getFilters() as $filterName =&gt; $filterValue) {\n            if (&#039;demo_type&#039; === $filterName) {\n                $searchQueryBuilder-&gt;andWhere(&#039;ad.`demo_type` = :demo_type&#039;);\n                $searchQueryBuilder-&gt;setParameter(&#039;demo_type&#039;, $filterValue);\n\n                if (!$filterValue) {\n                    $searchQueryBuilder-&gt;orWhere(&#039;ad.`demo_type` IS NULL&#039;);\n                }\n            }\n        }\n    }<\/pre>\n\n\n\n<p>The above code is used to fetch the data from the custom <strong>wk_demo<\/strong> table and show the <strong>Demo<\/strong> text in the grid.<\/p>\n\n\n\n<p>We have also managed the filters to show data by type sorting.<\/p>\n\n\n\n<p>That\u2019s all about this blog. Hope it will help you.<\/p>\n\n\n\n<p>If you are facing any issues or doubts in the above process, please feel free to contact us through the comment section.<\/p>\n\n\n\n<p>We would be happy to help.<\/p>\n\n\n\n<p>Also, you can explore our&nbsp;<a href=\"https:\/\/webkul.com\/prestashop-development\/\">PrestaShop Development Services<\/a>&nbsp;&amp; a large range of quality&nbsp;<a href=\"https:\/\/store.webkul.com\/PrestaShop-Extensions.html\">PrestaShop Modules<\/a>.<\/p>\n\n\n\n<p>For any doubt contact us at&nbsp;<a href=\"mailto:support@webkul.com\">support@webkul.com<\/a>.<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this blog, we are going to learn how to add columns and filters from the BO product page grid. So let\u2019s see together how to do that with PrestaShop. Sometimes, we need to add columns that come from a custom module table. Now, We are going to add the \u2018Type\u2018 column to the product <a href=\"https:\/\/webkul.com\/blog\/how-to-add-a-column-in-the-render-list-on-the-product-controller-for-the-new-product-page-v2-in-prestashop-8-1\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":416,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[209,1],"tags":[15335,15337,2065,15336],"class_list":["post-425128","post","type-post","status-publish","format-standard","hentry","category-prestashop","category-uncategorized","tag-add-a-column","tag-page-v2","tag-prestashop","tag-product-controller"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to add a column in the render list on the product controller for the new product page V2 in PrestaShop 8.1<\/title>\n<meta name=\"description\" content=\"add a column in the render list on the product controller for the new product page V2 in PrestaShop 8.1\" \/>\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\/how-to-add-a-column-in-the-render-list-on-the-product-controller-for-the-new-product-page-v2-in-prestashop-8-1\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to add a column in the render list on the product controller for the new product page V2 in PrestaShop 8.1\" \/>\n<meta property=\"og:description\" content=\"add a column in the render list on the product controller for the new product page V2 in PrestaShop 8.1\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/how-to-add-a-column-in-the-render-list-on-the-product-controller-for-the-new-product-page-v2-in-prestashop-8-1\/\" \/>\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=\"2024-02-28T14:33:15+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-05-22T14:09:32+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/02\/demo-1200x499.png\" \/>\n<meta name=\"author\" content=\"Gajendra Singh\" \/>\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=\"Gajendra Singh\" \/>\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\/how-to-add-a-column-in-the-render-list-on-the-product-controller-for-the-new-product-page-v2-in-prestashop-8-1\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-a-column-in-the-render-list-on-the-product-controller-for-the-new-product-page-v2-in-prestashop-8-1\/\"},\"author\":{\"name\":\"Gajendra Singh\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/ba72ea261f883808a566a3ab8b63dede\"},\"headline\":\"How to add a column in the render list on the product controller for the new product page V2 in PrestaShop 8.1\",\"datePublished\":\"2024-02-28T14:33:15+00:00\",\"dateModified\":\"2024-05-22T14:09:32+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-a-column-in-the-render-list-on-the-product-controller-for-the-new-product-page-v2-in-prestashop-8-1\/\"},\"wordCount\":250,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-a-column-in-the-render-list-on-the-product-controller-for-the-new-product-page-v2-in-prestashop-8-1\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/02\/demo-1200x499.png\",\"keywords\":[\"add a column\",\"page V2\",\"prestashop\",\"product controller\"],\"articleSection\":[\"prestashop\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-add-a-column-in-the-render-list-on-the-product-controller-for-the-new-product-page-v2-in-prestashop-8-1\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-a-column-in-the-render-list-on-the-product-controller-for-the-new-product-page-v2-in-prestashop-8-1\/\",\"url\":\"https:\/\/webkul.com\/blog\/how-to-add-a-column-in-the-render-list-on-the-product-controller-for-the-new-product-page-v2-in-prestashop-8-1\/\",\"name\":\"How to add a column in the render list on the product controller for the new product page V2 in PrestaShop 8.1\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-a-column-in-the-render-list-on-the-product-controller-for-the-new-product-page-v2-in-prestashop-8-1\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-a-column-in-the-render-list-on-the-product-controller-for-the-new-product-page-v2-in-prestashop-8-1\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/02\/demo-1200x499.png\",\"datePublished\":\"2024-02-28T14:33:15+00:00\",\"dateModified\":\"2024-05-22T14:09:32+00:00\",\"description\":\"add a column in the render list on the product controller for the new product page V2 in PrestaShop 8.1\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-a-column-in-the-render-list-on-the-product-controller-for-the-new-product-page-v2-in-prestashop-8-1\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-add-a-column-in-the-render-list-on-the-product-controller-for-the-new-product-page-v2-in-prestashop-8-1\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-a-column-in-the-render-list-on-the-product-controller-for-the-new-product-page-v2-in-prestashop-8-1\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/02\/demo.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/02\/demo.png\",\"width\":1272,\"height\":529,\"caption\":\"demo\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-a-column-in-the-render-list-on-the-product-controller-for-the-new-product-page-v2-in-prestashop-8-1\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to add a column in the render list on the product controller for the new product page V2 in PrestaShop 8.1\"}]},{\"@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\/ba72ea261f883808a566a3ab8b63dede\",\"name\":\"Gajendra Singh\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/9d864b4124944a25bce60168e4d9520c03a18cdca40483dfbf0d9e46d2f0d32c?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\/9d864b4124944a25bce60168e4d9520c03a18cdca40483dfbf0d9e46d2f0d32c?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Gajendra Singh\"},\"description\":\"Gajendra Singh, a PrestaShop Software Engineer, excels in Mobile App and Custom Extension Development. A tech-savvy expert in Docker and POS, he creates innovative solutions. Gajendra's skills ensure a seamless PrestaShop experience, catering to diverse needs.\",\"url\":\"https:\/\/webkul.com\/blog\/author\/gajendra-singh681\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to add a column in the render list on the product controller for the new product page V2 in PrestaShop 8.1","description":"add a column in the render list on the product controller for the new product page V2 in PrestaShop 8.1","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\/how-to-add-a-column-in-the-render-list-on-the-product-controller-for-the-new-product-page-v2-in-prestashop-8-1\/","og_locale":"en_US","og_type":"article","og_title":"How to add a column in the render list on the product controller for the new product page V2 in PrestaShop 8.1","og_description":"add a column in the render list on the product controller for the new product page V2 in PrestaShop 8.1","og_url":"https:\/\/webkul.com\/blog\/how-to-add-a-column-in-the-render-list-on-the-product-controller-for-the-new-product-page-v2-in-prestashop-8-1\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2024-02-28T14:33:15+00:00","article_modified_time":"2024-05-22T14:09:32+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/02\/demo-1200x499.png","type":"","width":"","height":""}],"author":"Gajendra Singh","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Gajendra Singh","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/how-to-add-a-column-in-the-render-list-on-the-product-controller-for-the-new-product-page-v2-in-prestashop-8-1\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-a-column-in-the-render-list-on-the-product-controller-for-the-new-product-page-v2-in-prestashop-8-1\/"},"author":{"name":"Gajendra Singh","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/ba72ea261f883808a566a3ab8b63dede"},"headline":"How to add a column in the render list on the product controller for the new product page V2 in PrestaShop 8.1","datePublished":"2024-02-28T14:33:15+00:00","dateModified":"2024-05-22T14:09:32+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-a-column-in-the-render-list-on-the-product-controller-for-the-new-product-page-v2-in-prestashop-8-1\/"},"wordCount":250,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-a-column-in-the-render-list-on-the-product-controller-for-the-new-product-page-v2-in-prestashop-8-1\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/02\/demo-1200x499.png","keywords":["add a column","page V2","prestashop","product controller"],"articleSection":["prestashop"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/how-to-add-a-column-in-the-render-list-on-the-product-controller-for-the-new-product-page-v2-in-prestashop-8-1\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/how-to-add-a-column-in-the-render-list-on-the-product-controller-for-the-new-product-page-v2-in-prestashop-8-1\/","url":"https:\/\/webkul.com\/blog\/how-to-add-a-column-in-the-render-list-on-the-product-controller-for-the-new-product-page-v2-in-prestashop-8-1\/","name":"How to add a column in the render list on the product controller for the new product page V2 in PrestaShop 8.1","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-a-column-in-the-render-list-on-the-product-controller-for-the-new-product-page-v2-in-prestashop-8-1\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-a-column-in-the-render-list-on-the-product-controller-for-the-new-product-page-v2-in-prestashop-8-1\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/02\/demo-1200x499.png","datePublished":"2024-02-28T14:33:15+00:00","dateModified":"2024-05-22T14:09:32+00:00","description":"add a column in the render list on the product controller for the new product page V2 in PrestaShop 8.1","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-a-column-in-the-render-list-on-the-product-controller-for-the-new-product-page-v2-in-prestashop-8-1\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/how-to-add-a-column-in-the-render-list-on-the-product-controller-for-the-new-product-page-v2-in-prestashop-8-1\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/how-to-add-a-column-in-the-render-list-on-the-product-controller-for-the-new-product-page-v2-in-prestashop-8-1\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/02\/demo.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/02\/demo.png","width":1272,"height":529,"caption":"demo"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/how-to-add-a-column-in-the-render-list-on-the-product-controller-for-the-new-product-page-v2-in-prestashop-8-1\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to add a column in the render list on the product controller for the new product page V2 in PrestaShop 8.1"}]},{"@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\/ba72ea261f883808a566a3ab8b63dede","name":"Gajendra Singh","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/9d864b4124944a25bce60168e4d9520c03a18cdca40483dfbf0d9e46d2f0d32c?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\/9d864b4124944a25bce60168e4d9520c03a18cdca40483dfbf0d9e46d2f0d32c?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Gajendra Singh"},"description":"Gajendra Singh, a PrestaShop Software Engineer, excels in Mobile App and Custom Extension Development. A tech-savvy expert in Docker and POS, he creates innovative solutions. Gajendra's skills ensure a seamless PrestaShop experience, catering to diverse needs.","url":"https:\/\/webkul.com\/blog\/author\/gajendra-singh681\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/425128","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\/416"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=425128"}],"version-history":[{"count":21,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/425128\/revisions"}],"predecessor-version":[{"id":442858,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/425128\/revisions\/442858"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=425128"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=425128"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=425128"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}