{"id":414154,"date":"2023-12-11T14:30:54","date_gmt":"2023-12-11T14:30:54","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=414154"},"modified":"2023-12-11T14:31:02","modified_gmt":"2023-12-11T14:31:02","slug":"how-to-add-a-new-field-in-the-product-pricing-tab-for-the-new-product-page-v2-in-prestashop-8-1","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/how-to-add-a-new-field-in-the-product-pricing-tab-for-the-new-product-page-v2-in-prestashop-8-1\/","title":{"rendered":"How to add a new field in the product pricing tab 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 a new field in the product pricing tab for the product V2 page in PrestaShop.<\/p>\n\n\n\n<p>We will add a new field <strong>MSRP (tax inc.)<\/strong> as you can see in the below image.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1200\" height=\"489\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/12\/new_field_in_price_tab_v2_page-1200x489.png\" alt=\"new_field_in_price_tab_v2_page\" class=\"wp-image-414272\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/12\/new_field_in_price_tab_v2_page-1200x489.png 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/12\/new_field_in_price_tab_v2_page-300x122.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/12\/new_field_in_price_tab_v2_page-250x102.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/12\/new_field_in_price_tab_v2_page-768x313.png 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/12\/new_field_in_price_tab_v2_page.png 1510w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\" \/><\/figure>\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 new fields in the pricing tab so the admin can enter and save the field data.<\/p>\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 new fields in the form!<\/p>\n\n\n\n<p>We will register the \u2018<strong>actionProductFormBuilderModifier<\/strong>\u2018 hook in our module using the below code.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">$this-&gt;registerHook(\n    array(\n        &#039;actionProductFormBuilderModifier&#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<pre class=\"EnlighterJSRAW\">public function hookActionProductFormBuilderModifier(array $params)\n    {\n        $msrp = &#039;your field value from DB&#039;;\n        $form_builder_modifier = new FormBuilderModifier();\n        $form_builder = $params&#091;&#039;form_builder&#039;];\n        $pricingTabFormBuilder = $form_builder-&gt;get(&#039;pricing&#039;);\n        $contextLocale = Tools::getContextLocale($this-&gt;context);\n        $form_builder_modifier-&gt;addAfter(\n            $pricingTabFormBuilder, \/\/ the pricing tab\n            &#039;retail_price&#039;, \/\/ the input\/form from which to insert after\/before\n            &#039;msrp_price&#039;, \/\/ your field name\n            MoneyType::class, \/\/ your field type\n            &#091;\n                &#039;required&#039; =&gt; false,\n                &#039;attr&#039; =&gt; &#091;\n                    &#039;placeholder&#039; =&gt; &#039;MSRP (tax inc.)&#039;,\n                    &#039;data-display-price-precision&#039; =&gt; CommonAbstractType::PRESTASHOP_DECIMALS,\n                    &#039;data-price-specification&#039; =&gt; json_encode($contextLocale-&gt;getPriceSpecification($this-&gt;context-&gt;currency-&gt;iso_code)-&gt;toArray()),\n                ],\n                &#039;row_attr&#039; =&gt; &#091;\n                    &#039;class&#039; =&gt; &#039;retail-price-tax-excluded&#039;,\n                ],\n                &#039;currency&#039; =&gt; $this-&gt;context-&gt;currency-&gt;iso_code,\n                &#039;constraints&#039; =&gt; &#091;\n                    new NotBlank(),\n                    new Type(&#091;&#039;type&#039; =&gt; &#039;float&#039;]),\n                    new PositiveOrZero(),\n                ],\n                &#039;default_empty_data&#039; =&gt; 0.0,\n                &#039;modify_all_shops&#039; =&gt; true,\n                &#039;label&#039; =&gt; &#039;MSRP (tax inc.)&#039;, \/\/ you can remove the label if you dont need it by passing &#039;label&#039; =&gt; false\n                \/\/ &#039;label_attr&#039; =&gt; &#091; \/\/ customize label with any HTML attribute\n                \/\/     &#039;title&#039; =&gt; &#039;h2&#039;,\n                \/\/     &#039;class&#039; =&gt; &#039;text-info&#039;,\n                \/\/ ],\n                \/\/ this is just an example, but in real case scenario, you could have some data provider class to handle more complex cases\n                &#039;data&#039; =&gt; $msrp,\n                &#039;empty_data&#039; =&gt; &#039;&#039;,\n                &#039;form_theme&#039; =&gt; &#039;@PrestaShop\/Admin\/TwigTemplateForm\/prestashop_ui_kit_base.html.twig&#039;,\n            ]\n        );\n    }<\/pre>\n\n\n\n<p>In the above code, we have used the FormBuilderModifier class to add a new column in the pricing tab form builder.<\/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\u00a0<a href=\"https:\/\/webkul.com\/prestashop-development\/\">PrestaShop Development Services<\/a>\u00a0&amp; a large range of quality\u00a0<a href=\"https:\/\/store.webkul.com\/PrestaShop-Extensions.html\">PrestaShop Modules<\/a>.<\/p>\n\n\n\n<p>For any doubt contact us at\u00a0<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 a new field in the product pricing tab for the product V2 page in PrestaShop. We will add a new field MSRP (tax inc.) as you can see in the below image. So let\u2019s see together how to do that with PrestaShop. Sometimes, we <a href=\"https:\/\/webkul.com\/blog\/how-to-add-a-new-field-in-the-product-pricing-tab-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":[15207],"class_list":["post-414154","post","type-post","status-publish","format-standard","hentry","category-prestashop","category-uncategorized","tag-add-a-new-field-in-the-product-pricing-tab-for-the-new-product-page-v2"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Add a new field in the product pricing tab for the new product page<\/title>\n<meta name=\"description\" content=\"In this blog, we are going to learn how to add a new field in the product pricing tab for the product V2 page in PrestaShop.\" \/>\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-new-field-in-the-product-pricing-tab-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=\"Add a new field in the product pricing tab for the new product page\" \/>\n<meta property=\"og:description\" content=\"In this blog, we are going to learn how to add a new field in the product pricing tab for the product V2 page in PrestaShop.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/how-to-add-a-new-field-in-the-product-pricing-tab-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=\"2023-12-11T14:30:54+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-11T14:31:02+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/12\/new_field_in_price_tab_v2_page-1200x489.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-new-field-in-the-product-pricing-tab-for-the-new-product-page-v2-in-prestashop-8-1\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-a-new-field-in-the-product-pricing-tab-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 new field in the product pricing tab for the new product page V2 in PrestaShop 8.1\",\"datePublished\":\"2023-12-11T14:30:54+00:00\",\"dateModified\":\"2023-12-11T14:31:02+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-a-new-field-in-the-product-pricing-tab-for-the-new-product-page-v2-in-prestashop-8-1\/\"},\"wordCount\":232,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-a-new-field-in-the-product-pricing-tab-for-the-new-product-page-v2-in-prestashop-8-1\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/12\/new_field_in_price_tab_v2_page-1200x489.png\",\"keywords\":[\"add a new field in the product pricing tab for the new product page V2\"],\"articleSection\":[\"prestashop\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-add-a-new-field-in-the-product-pricing-tab-for-the-new-product-page-v2-in-prestashop-8-1\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-a-new-field-in-the-product-pricing-tab-for-the-new-product-page-v2-in-prestashop-8-1\/\",\"url\":\"https:\/\/webkul.com\/blog\/how-to-add-a-new-field-in-the-product-pricing-tab-for-the-new-product-page-v2-in-prestashop-8-1\/\",\"name\":\"Add a new field in the product pricing tab for the new product page\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-a-new-field-in-the-product-pricing-tab-for-the-new-product-page-v2-in-prestashop-8-1\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-a-new-field-in-the-product-pricing-tab-for-the-new-product-page-v2-in-prestashop-8-1\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/12\/new_field_in_price_tab_v2_page-1200x489.png\",\"datePublished\":\"2023-12-11T14:30:54+00:00\",\"dateModified\":\"2023-12-11T14:31:02+00:00\",\"description\":\"In this blog, we are going to learn how to add a new field in the product pricing tab for the product V2 page in PrestaShop.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-a-new-field-in-the-product-pricing-tab-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-new-field-in-the-product-pricing-tab-for-the-new-product-page-v2-in-prestashop-8-1\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-a-new-field-in-the-product-pricing-tab-for-the-new-product-page-v2-in-prestashop-8-1\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/12\/new_field_in_price_tab_v2_page.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/12\/new_field_in_price_tab_v2_page.png\",\"width\":1510,\"height\":615,\"caption\":\"new_field_in_price_tab_v2_page\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-a-new-field-in-the-product-pricing-tab-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 new field in the product pricing tab 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":"Add a new field in the product pricing tab for the new product page","description":"In this blog, we are going to learn how to add a new field in the product pricing tab for the product V2 page in PrestaShop.","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-new-field-in-the-product-pricing-tab-for-the-new-product-page-v2-in-prestashop-8-1\/","og_locale":"en_US","og_type":"article","og_title":"Add a new field in the product pricing tab for the new product page","og_description":"In this blog, we are going to learn how to add a new field in the product pricing tab for the product V2 page in PrestaShop.","og_url":"https:\/\/webkul.com\/blog\/how-to-add-a-new-field-in-the-product-pricing-tab-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":"2023-12-11T14:30:54+00:00","article_modified_time":"2023-12-11T14:31:02+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/12\/new_field_in_price_tab_v2_page-1200x489.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-new-field-in-the-product-pricing-tab-for-the-new-product-page-v2-in-prestashop-8-1\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-a-new-field-in-the-product-pricing-tab-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 new field in the product pricing tab for the new product page V2 in PrestaShop 8.1","datePublished":"2023-12-11T14:30:54+00:00","dateModified":"2023-12-11T14:31:02+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-a-new-field-in-the-product-pricing-tab-for-the-new-product-page-v2-in-prestashop-8-1\/"},"wordCount":232,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-a-new-field-in-the-product-pricing-tab-for-the-new-product-page-v2-in-prestashop-8-1\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/12\/new_field_in_price_tab_v2_page-1200x489.png","keywords":["add a new field in the product pricing tab for the new product page V2"],"articleSection":["prestashop"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/how-to-add-a-new-field-in-the-product-pricing-tab-for-the-new-product-page-v2-in-prestashop-8-1\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/how-to-add-a-new-field-in-the-product-pricing-tab-for-the-new-product-page-v2-in-prestashop-8-1\/","url":"https:\/\/webkul.com\/blog\/how-to-add-a-new-field-in-the-product-pricing-tab-for-the-new-product-page-v2-in-prestashop-8-1\/","name":"Add a new field in the product pricing tab for the new product page","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-a-new-field-in-the-product-pricing-tab-for-the-new-product-page-v2-in-prestashop-8-1\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-a-new-field-in-the-product-pricing-tab-for-the-new-product-page-v2-in-prestashop-8-1\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/12\/new_field_in_price_tab_v2_page-1200x489.png","datePublished":"2023-12-11T14:30:54+00:00","dateModified":"2023-12-11T14:31:02+00:00","description":"In this blog, we are going to learn how to add a new field in the product pricing tab for the product V2 page in PrestaShop.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-a-new-field-in-the-product-pricing-tab-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-new-field-in-the-product-pricing-tab-for-the-new-product-page-v2-in-prestashop-8-1\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/how-to-add-a-new-field-in-the-product-pricing-tab-for-the-new-product-page-v2-in-prestashop-8-1\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/12\/new_field_in_price_tab_v2_page.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/12\/new_field_in_price_tab_v2_page.png","width":1510,"height":615,"caption":"new_field_in_price_tab_v2_page"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/how-to-add-a-new-field-in-the-product-pricing-tab-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 new field in the product pricing tab 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\/414154","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=414154"}],"version-history":[{"count":12,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/414154\/revisions"}],"predecessor-version":[{"id":459557,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/414154\/revisions\/459557"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=414154"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=414154"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=414154"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}