{"id":460050,"date":"2024-09-06T14:42:51","date_gmt":"2024-09-06T14:42:51","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=460050"},"modified":"2024-09-06T14:42:52","modified_gmt":"2024-09-06T14:42:52","slug":"how-to-display-content-on-the-prestashop-contact-page","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/how-to-display-content-on-the-prestashop-contact-page\/","title":{"rendered":"How to Display Content on the PrestaShop Contact Page"},"content":{"rendered":"\n<p>In this blog, we are about to learn, how to Display Content on the PrestaShop Contact Page. So, we will define some of PrestaShop&#8217;s native hooks.<\/p>\n\n\n\n<p>Personalizing the contact page in PrestaShop can be essential for making progress in client inclusion and giving productive information to your clients.<\/p>\n\n\n\n<p>This blog will show up you how to appear custom substance on both the cleared-out and right columns of the PrestaShop contact page utilizing a custom module.<\/p>\n\n\n\n<p>Let&#8217;s start:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">1- Understanding Hooks in PrestaShop<\/h3>\n\n\n\n<p>We will use hooks like <strong>displayContactLeftColumn<\/strong> and <strong>displayContactRightColumn<\/strong> to include content within the left and right columns and <strong>displayContactContent<\/strong> to include content below contact form.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">2-  Displaying Content Using a Custom Module<\/h3>\n\n\n\n<p>In this example, we&#8217;ll create a custom module to display content in the left, right, and center columns of the contact page.<\/p>\n\n\n\n<p><strong>Step 1: Create the Custom Module<\/strong><\/p>\n\n\n\n<p>Create a new folder in the <code>\/modules\/<\/code>directory, for example, <code>\/modules\/wktestmodule\/<\/code>. Inside this folder, create a PHP file named <code>wktestmodule.php<\/code>.<\/p>\n\n\n\n<p>Here is the structure of the custom module:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?php\nif (!defined(&#039;_PS_VERSION_&#039;)) {\n    exit;\n}\n\nclass WkTestModule extends Module\n{\n    public function __construct()\n    {\n        $this-&gt;name = &#039;wktestmodule&#039;;\n        $this-&gt;tab = &#039;front_office_features&#039;;\n        $this-&gt;version = &#039;1.0.0&#039;;\n        $this-&gt;author = &#039;Webkul&#039;;\n        $this-&gt;need_instance = 0;\n\n        parent::__construct();\n\n        $this-&gt;displayName = $this-&gt;l(&#039;Wk Test Module&#039;);\n        $this-&gt;description = $this-&gt;l(&#039;Adds custom content to the contact page.&#039;);\n    }\n\n    public function install()\n    {\n        return parent::install()\n&amp;&amp; $this-&gt;registerHook(&#039;displayContactLeftColumn&#039;) \n&amp;&amp; $this-&gt;registerHook(&#039;displayContactRightColumn&#039;) \n&amp;&amp; $this-&gt;registerHook(&#039;displayContactContent&#039;);\n    }\n\n    public function hookDisplayContactLeftColumn($params)\n    {\n        return &#039;&lt;div class=&quot;custom-left-column-content&quot;&gt;This is custom text in the left column of the contact page.&lt;\/div&gt;&#039;;\n    }\n\n    public function hookDisplayContactRightColumn($params)\n    {\n        return &#039;&lt;div class=&quot;custom-right-column-content&quot;&gt;This is custom text in the right column of the contact page.&lt;\/div&gt;&#039;;\n    }\n\n    public function hookDisplayContactContent($params)\n    {\n        return &#039;&lt;div class=&quot;custom-center-column-content&quot;&gt;This is custom text in the center column of the contact page.&lt;\/div&gt;&#039;;\n    }\n}<\/pre>\n\n\n\n<p><strong>Step 2: Install and Enable the Module<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Zip the <code><strong>wktestmodule<\/strong><\/code> folder.<\/li>\n\n\n\n<li>Go to the PrestaShop back office, navigate to <code><strong>Modules &gt; Module Manager<\/strong><\/code>, and click on <code><strong>Upload a module<\/strong><\/code>.<\/li>\n\n\n\n<li>Upload the zipped file and install the module.<\/li>\n<\/ul>\n\n\n\n<p><strong>Step 3: Verify the Content Display<\/strong><\/p>\n\n\n\n<p>After installing and enabling the module, visit your store\u2019s contact page. You should see custom text displayed in the left, right, and center columns.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">3- Result<\/h3>\n\n\n\n<p>Here\u2019s what the contact page looks like with the custom content added:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Left Column:<\/strong> Displays the text &#8220;This is custom text in the left column of the page.&#8221;<\/li>\n\n\n\n<li><strong>Right Column:<\/strong> Displays the text &#8220;This is custom text in the right column of the page.&#8221;<\/li>\n\n\n\n<li><strong>Center Column:<\/strong> Displays the text &#8220;This is custom text in the center column of the page.&#8221;<\/li>\n<\/ul>\n\n\n\n<p>Here\u2019s an image that represents, how the custom content is displayed across the left, right, and center columns on the contact page.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"812\" height=\"446\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/09\/contactpage.webp\" alt=\"contact page\" class=\"wp-image-460094\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/09\/contactpage.webp 812w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/09\/contactpage-300x165.webp 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/09\/contactpage-250x137.webp 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/09\/contactpage-768x422.webp 768w\" sizes=\"(max-width: 812px) 100vw, 812px\" loading=\"lazy\" \/><figcaption class=\"wp-element-caption\">contact page<\/figcaption><\/figure>\n\n\n\n<p>Adding custom content to the left, right, and center columns of your PrestaShop contact page allows for a fully customized layout that can enhance the user experience.<\/p>\n\n\n\n<p>By creating a custom module and using hooks, you can easily manage and display content across different parts of the page, tailoring the information to your store&#8217;s needs.<\/p>\n\n\n\n<p><strong>Note: <\/strong>Hook<strong> displayContactLeftColumn<\/strong>, <strong>displayContactRightColumn<\/strong>, and <strong>displayContactContent<\/strong> can be used only in the PrestaShop Version starting from V8.1.0<\/p>\n\n\n\n<p>That\u2019s all about this blog.<\/p>\n\n\n\n<p>If any issues or doubts with the above step, please feel free to let us know in the comment section.<\/p>\n\n\n\n<p>We would be happy to help.<\/p>\n\n\n\n<p>You can also learn <a href=\"https:\/\/webkul.com\/blog\/how-to-add-an-email-layout-and-variables-in-a-theme-from-module\/\" target=\"_blank\" rel=\"noreferrer noopener\">How to add an email layout and variables in a theme from a module<\/a><\/p>\n\n\n\n<p>You can also explore our&nbsp;<a href=\"https:\/\/webkul.com\/prestashop-development\/\">PrestaShop Development Services<\/a>&nbsp;and 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","protected":false},"excerpt":{"rendered":"<p>In this blog, we are about to learn, how to Display Content on the PrestaShop Contact Page. So, we will define some of PrestaShop&#8217;s native hooks. Personalizing the contact page in PrestaShop can be essential for making progress in client inclusion and giving productive information to your clients. This blog will show up you how <a href=\"https:\/\/webkul.com\/blog\/how-to-display-content-on-the-prestashop-contact-page\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":434,"featured_media":460094,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[209],"tags":[987,4816,808,15221],"class_list":["post-460050","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-prestashop","tag-contact-form","tag-contact-us","tag-content","tag-v8-1"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Display Content on the PrestaShop Contact Page - Webkul Blog<\/title>\n<meta name=\"description\" content=\"Personalizing the contact page in PrestaShop can be essential for making progress in client inclusion and giving productive information to your clients. This coordinate will show up you how to appear custom substance on both the cleared-out and right columns of the PrestaShop contact page utilizing a custom module.\" \/>\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-display-content-on-the-prestashop-contact-page\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Display Content on the PrestaShop Contact Page - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"Personalizing the contact page in PrestaShop can be essential for making progress in client inclusion and giving productive information to your clients. This coordinate will show up you how to appear custom substance on both the cleared-out and right columns of the PrestaShop contact page utilizing a custom module.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/how-to-display-content-on-the-prestashop-contact-page\/\" \/>\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-09-06T14:42:51+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-09-06T14:42:52+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/09\/contactpage.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"812\" \/>\n\t<meta property=\"og:image:height\" content=\"446\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"Ravindra Gautam\" \/>\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=\"Ravindra Gautam\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 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-display-content-on-the-prestashop-contact-page\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-display-content-on-the-prestashop-contact-page\/\"},\"author\":{\"name\":\"Ravindra Gautam\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/1a45b107e54bb2991c05f20fbb1dae12\"},\"headline\":\"How to Display Content on the PrestaShop Contact Page\",\"datePublished\":\"2024-09-06T14:42:51+00:00\",\"dateModified\":\"2024-09-06T14:42:52+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-display-content-on-the-prestashop-contact-page\/\"},\"wordCount\":472,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-display-content-on-the-prestashop-contact-page\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/09\/contactpage.webp\",\"keywords\":[\"Contact Form\",\"contact us\",\"content\",\"V8.1\"],\"articleSection\":[\"prestashop\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-display-content-on-the-prestashop-contact-page\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-display-content-on-the-prestashop-contact-page\/\",\"url\":\"https:\/\/webkul.com\/blog\/how-to-display-content-on-the-prestashop-contact-page\/\",\"name\":\"How to Display Content on the PrestaShop Contact Page - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-display-content-on-the-prestashop-contact-page\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-display-content-on-the-prestashop-contact-page\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/09\/contactpage.webp\",\"datePublished\":\"2024-09-06T14:42:51+00:00\",\"dateModified\":\"2024-09-06T14:42:52+00:00\",\"description\":\"Personalizing the contact page in PrestaShop can be essential for making progress in client inclusion and giving productive information to your clients. This coordinate will show up you how to appear custom substance on both the cleared-out and right columns of the PrestaShop contact page utilizing a custom module.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-display-content-on-the-prestashop-contact-page\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-display-content-on-the-prestashop-contact-page\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-display-content-on-the-prestashop-contact-page\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/09\/contactpage.webp\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/09\/contactpage.webp\",\"width\":812,\"height\":446,\"caption\":\"contact page\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-display-content-on-the-prestashop-contact-page\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Display Content on the PrestaShop Contact Page\"}]},{\"@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\/1a45b107e54bb2991c05f20fbb1dae12\",\"name\":\"Ravindra Gautam\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/1b8439e2774cf21a264df535ff994154071e538a17da7dc76beb9f7ffa28fa19?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\/1b8439e2774cf21a264df535ff994154071e538a17da7dc76beb9f7ffa28fa19?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Ravindra Gautam\"},\"description\":\"Ravindra is a Software Engineer in PrestaShop platform with expertise in Marketplace Development services. He excels in creating and managing online stores using PrestaShop, leveraging his skills in JavaScript, jQuery, and Web Services to deliver dynamic, user-friendly e-commerce solutions that drive business success.\",\"url\":\"https:\/\/webkul.com\/blog\/author\/ravindra-gautam192\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Display Content on the PrestaShop Contact Page - Webkul Blog","description":"Personalizing the contact page in PrestaShop can be essential for making progress in client inclusion and giving productive information to your clients. This coordinate will show up you how to appear custom substance on both the cleared-out and right columns of the PrestaShop contact page utilizing a custom module.","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-display-content-on-the-prestashop-contact-page\/","og_locale":"en_US","og_type":"article","og_title":"How to Display Content on the PrestaShop Contact Page - Webkul Blog","og_description":"Personalizing the contact page in PrestaShop can be essential for making progress in client inclusion and giving productive information to your clients. This coordinate will show up you how to appear custom substance on both the cleared-out and right columns of the PrestaShop contact page utilizing a custom module.","og_url":"https:\/\/webkul.com\/blog\/how-to-display-content-on-the-prestashop-contact-page\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2024-09-06T14:42:51+00:00","article_modified_time":"2024-09-06T14:42:52+00:00","og_image":[{"width":812,"height":446,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/09\/contactpage.webp","type":"image\/webp"}],"author":"Ravindra Gautam","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Ravindra Gautam","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/how-to-display-content-on-the-prestashop-contact-page\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/how-to-display-content-on-the-prestashop-contact-page\/"},"author":{"name":"Ravindra Gautam","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/1a45b107e54bb2991c05f20fbb1dae12"},"headline":"How to Display Content on the PrestaShop Contact Page","datePublished":"2024-09-06T14:42:51+00:00","dateModified":"2024-09-06T14:42:52+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-display-content-on-the-prestashop-contact-page\/"},"wordCount":472,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-display-content-on-the-prestashop-contact-page\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/09\/contactpage.webp","keywords":["Contact Form","contact us","content","V8.1"],"articleSection":["prestashop"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/how-to-display-content-on-the-prestashop-contact-page\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/how-to-display-content-on-the-prestashop-contact-page\/","url":"https:\/\/webkul.com\/blog\/how-to-display-content-on-the-prestashop-contact-page\/","name":"How to Display Content on the PrestaShop Contact Page - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-display-content-on-the-prestashop-contact-page\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-display-content-on-the-prestashop-contact-page\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/09\/contactpage.webp","datePublished":"2024-09-06T14:42:51+00:00","dateModified":"2024-09-06T14:42:52+00:00","description":"Personalizing the contact page in PrestaShop can be essential for making progress in client inclusion and giving productive information to your clients. This coordinate will show up you how to appear custom substance on both the cleared-out and right columns of the PrestaShop contact page utilizing a custom module.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/how-to-display-content-on-the-prestashop-contact-page\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/how-to-display-content-on-the-prestashop-contact-page\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/how-to-display-content-on-the-prestashop-contact-page\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/09\/contactpage.webp","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/09\/contactpage.webp","width":812,"height":446,"caption":"contact page"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/how-to-display-content-on-the-prestashop-contact-page\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Display Content on the PrestaShop Contact Page"}]},{"@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\/1a45b107e54bb2991c05f20fbb1dae12","name":"Ravindra Gautam","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/1b8439e2774cf21a264df535ff994154071e538a17da7dc76beb9f7ffa28fa19?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\/1b8439e2774cf21a264df535ff994154071e538a17da7dc76beb9f7ffa28fa19?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Ravindra Gautam"},"description":"Ravindra is a Software Engineer in PrestaShop platform with expertise in Marketplace Development services. He excels in creating and managing online stores using PrestaShop, leveraging his skills in JavaScript, jQuery, and Web Services to deliver dynamic, user-friendly e-commerce solutions that drive business success.","url":"https:\/\/webkul.com\/blog\/author\/ravindra-gautam192\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/460050","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\/434"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=460050"}],"version-history":[{"count":11,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/460050\/revisions"}],"predecessor-version":[{"id":461742,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/460050\/revisions\/461742"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media\/460094"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=460050"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=460050"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=460050"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}