{"id":406823,"date":"2023-10-26T08:15:11","date_gmt":"2023-10-26T08:15:11","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=406823"},"modified":"2023-11-02T06:18:21","modified_gmt":"2023-11-02T06:18:21","slug":"how-to-create-a-custom-product-shop-page-in-woocommerce","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/how-to-create-a-custom-product-shop-page-in-woocommerce\/","title":{"rendered":"How to Create a Custom Product Shop Page in WooCommerce?"},"content":{"rendered":"\n<p>In this dev blog article, we will explore how to create a custom product shop page in WooCommerce using a custom plugin.<\/p>\n\n\n\n<p>WooCommerce is a powerful e-commerce platform for WordPress that allows you to create and manage an online store. <\/p>\n\n\n\n<p>While it provides a wide range of features for building and customizing your shop, there are times when you may want to create a custom product shop page to better suit your unique business needs. <\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Why Create a Custom Product Shop Page?<\/h2>\n\n\n\n<p>There are several reasons why you might want to create a custom product shop page in WooCommerce:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Unique Design<\/strong>: You may have a specific design or layout in mind that goes beyond the standard templates.<\/li>\n\n\n\n<li><strong>Additional Functionality<\/strong>: You might need additional features that are not readily available on the default WooCommerce shop page.<\/li>\n\n\n\n<li><strong>Improved User Experience<\/strong>: A custom shop page can help improve the user experience, making it easier for customers to find and purchase products.<\/li>\n\n\n\n<li><strong>Better Branding<\/strong>: Customization allows you to align your shop page with your brand identity.<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading\">Prerequisites<\/h2>\n\n\n\n<p>To follow along with this tutorial, you should have a basic understanding of WordPress and PHP programming. <\/p>\n\n\n\n<p>Additionally, you\u2019ll need a working WordPress installation with WooCommerce already set up.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Creating a Custom Plugin<\/h2>\n\n\n\n<p>To create a custom product shop page in WooCommerce, we&#8217;ll start by building a custom <a href=\"https:\/\/store.webkul.com\/woocommerce-plugins.html\" target=\"_blank\" rel=\"noreferrer noopener\">WooCommerce plugin<\/a>. <\/p>\n\n\n\n<p>This plugin will contain all the necessary code and templates for your new shop page. Here&#8217;s how you can create the plugin:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1: Create a New Directory for Your Plugin<\/h3>\n\n\n\n<p>Inside your WordPress installation&#8217;s &#8216;<strong>wp-content\/plugins<\/strong>&#8216; directory, create a new directory for your plugin. For example, you can name it &#8216;<strong>wk-custom-woocommerce-shop<\/strong>&#8216;.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2: Create a Main Plugin File<\/h3>\n\n\n\n<p>Inside the &#8216;<strong>wk-custom-woocommerce-shop<\/strong>&#8216; directory, create a PHP file for your plugin, for example, &#8216;<strong>wk-custom-woocommerce-shop.php.<\/strong>&#8216; <\/p>\n\n\n\n<p>This file will serve as the main entry point for your plugin.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">&lt;?php\n\/*\nPlugin Name: wk Custom WooCommerce Shop\nDescription: wk Custom shop page for WooCommerce.\nVersion: 1.0\nAuthor: webkul\n*\/\n\n<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Step 3: Create a Custom Template<\/h3>\n\n\n\n<p>Create a custom template for your shop page. You can use a basic HTML with placeholders for product listings.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">&lt;div id=\"wk-custom-shop\"&gt;\n  &lt;!-- Custom shop page content --&gt;\n  &lt;!-- Product listings go here --&gt;\n&lt;\/div&gt;\n<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Step 4: Add Custom Shop Page to Your Plugin<\/h3>\n\n\n\n<p>In your main plugin file (&#8216;<strong>wk-custom-woocommerce-shop.php<\/strong>&#8216;), you need to register your custom shop page using WordPress hooks. <\/p>\n\n\n\n<p>Add the following code to register your custom shop page:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">function wk-custom_woocommerce_shop_page() {\n    ob_start();\n    include( plugin_dir_path( __FILE__ ) . 'wk-custom-shop-template.php' );\n    return ob_get_clean();\n}\n\nfunction wk-custom_woocommerce_shop_page_shortcode() {\n    return wk-custom_woocommerce_shop_page();\n}\n\nadd_shortcode( 'wk_custom_shop', 'wk-custom_woocommerce_shop_page_shortcode' );<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Step 6: Display Your Custom Shop Page<\/h3>\n\n\n\n<p>Now that your custom shop page is registered, you can display it on your WordPress site. <\/p>\n\n\n\n<p>Create a new page in WordPress, and in the page editor, add the <strong>[wk_custom_shop]<\/strong> shortcode where you want your custom shop page to appear.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large is-resized\"><img decoding=\"async\" width=\"1200\" height=\"577\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/blog-short-note-1200x577.png\" alt=\"WooCommerce short note\" class=\"wp-image-406836\" style=\"aspect-ratio:2.079722703639515;width:591px;height:auto\" title=\"Short note\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/blog-short-note-1200x577.png 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/blog-short-note-300x144.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/blog-short-note-250x120.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/blog-short-note-768x369.png 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/blog-short-note.png 1287w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\" \/><\/figure>\n<\/div>\n\n\n<p>With these steps, you&#8217;ve created the foundation for your custom shop page. However, this is just a basic setup. To create a truly customized shop page, you can extend your plugin to:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Retrieve and display products<\/strong>: Use WooCommerce functions to fetch and display products within your custom template.<\/li>\n\n\n\n<li><strong>Apply custom CSS and JavaScript<\/strong>: Customize the design and interactivity of your shop page.<\/li>\n\n\n\n<li><strong>Add filtering and sorting options<\/strong>: Enhance the user experience by implementing features like product filtering and sorting.<\/li>\n\n\n\n<li><strong>Integrate with WooCommerce features<\/strong>: Ensure that your custom shop page works seamlessly with WooCommerce, including cart and checkout processes.<\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\">Example: Displaying WooCommerce Products<\/h3>\n\n\n\n<p>To display WooCommerce products on your custom shop page, you can use the wc_get_products function to query and retrieve products, and then loop through them to display each product&#8217;s details.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">&lt;div id=\"wk-custom-shop\"&gt;\n\t&lt;?php\n\t$args     = array(\n\t\t'status' =&gt; 'publish',\n\t\t'limit'  =&gt; -1,\n\t)\n\t$products = wc_get_products( $args );\n\n\tif ( $products ) {\n\t\techo '&lt;ul class=\"wk-product-list\"&gt;';\n\t\tforeach ( $products as $product ) {\n\t\t\techo '&lt;li class=\"wk-product\"&gt;';\n\t\t\techo '&lt;h2&gt;' . $product-&gt;get_name() . '&lt;\/h2&gt;';\n\t\t\techo '&lt;p&gt;' . $product-&gt;get_price_html() . '&lt;\/p&gt;';\n\t\t\t\/\/ Add more product details here\n\t\t\techo '&lt;\/li&gt;';\n\t\t}\n\t\techo '&lt;\/ul&gt;';\n\t} else {\n\t\techo 'No products found.';\n\t}\n\t?&gt;\n&lt;\/div&gt;\n\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>Creating a custom product shop page in WooCommerce using a custom plugin can give your online store a unique and tailored look. <\/p>\n\n\n\n<p>By following the steps outlined in this guide, you can create a custom shop page that aligns with your brand, provides enhanced functionality, and offers a better shopping experience for your customers.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Support<\/h2>\n\n\n\n<p id=\"block-b0799902-2263-4573-a1d9-9a337ef4fdd0\">If you need any technical assistance, please reach us by mail at&nbsp;support@webkul.com or <a href=\"https:\/\/webkul.com\/hire-woocommerce-developers\/\" target=\"_blank\" rel=\"noreferrer noopener\">Hire WooCommerce Developers<\/a>&nbsp;for your next project.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this dev blog article, we will explore how to create a custom product shop page in WooCommerce using a custom plugin. WooCommerce is a powerful e-commerce platform for WordPress that allows you to create and manage an online store. While it provides a wide range of features for building and customizing your shop, there <a href=\"https:\/\/webkul.com\/blog\/how-to-create-a-custom-product-shop-page-in-woocommerce\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":554,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1773,1260],"tags":[],"class_list":["post-406823","post","type-post","status-publish","format-standard","hentry","category-woocommerce","category-wordpress"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Create a Custom Product Shop Page in WooCommerce?<\/title>\n<meta name=\"description\" content=\"To create a custom product shop page in WooCommerce, we&#039;ll start by building a custom plugin. This plugin will contain all the necessary code\" \/>\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-create-a-custom-product-shop-page-in-woocommerce\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Create a Custom Product Shop Page in WooCommerce?\" \/>\n<meta property=\"og:description\" content=\"To create a custom product shop page in WooCommerce, we&#039;ll start by building a custom plugin. This plugin will contain all the necessary code\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/how-to-create-a-custom-product-shop-page-in-woocommerce\/\" \/>\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-10-26T08:15:11+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-11-02T06:18:21+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/10\/blog-short-note-1200x577.png\" \/>\n<meta name=\"author\" content=\"Rohan 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=\"Rohan Singh\" \/>\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-create-a-custom-product-shop-page-in-woocommerce\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-a-custom-product-shop-page-in-woocommerce\/\"},\"author\":{\"name\":\"Rohan Singh\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/e87602c2e851bf307b56194810d875db\"},\"headline\":\"How to Create a Custom Product Shop Page in WooCommerce?\",\"datePublished\":\"2023-10-26T08:15:11+00:00\",\"dateModified\":\"2023-11-02T06:18:21+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-a-custom-product-shop-page-in-woocommerce\/\"},\"wordCount\":642,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-a-custom-product-shop-page-in-woocommerce\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/10\/blog-short-note-1200x577.png\",\"articleSection\":[\"WooCommerce\",\"WordPress\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-create-a-custom-product-shop-page-in-woocommerce\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-a-custom-product-shop-page-in-woocommerce\/\",\"url\":\"https:\/\/webkul.com\/blog\/how-to-create-a-custom-product-shop-page-in-woocommerce\/\",\"name\":\"How to Create a Custom Product Shop Page in WooCommerce?\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-a-custom-product-shop-page-in-woocommerce\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-a-custom-product-shop-page-in-woocommerce\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/10\/blog-short-note-1200x577.png\",\"datePublished\":\"2023-10-26T08:15:11+00:00\",\"dateModified\":\"2023-11-02T06:18:21+00:00\",\"description\":\"To create a custom product shop page in WooCommerce, we'll start by building a custom plugin. This plugin will contain all the necessary code\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-a-custom-product-shop-page-in-woocommerce\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-create-a-custom-product-shop-page-in-woocommerce\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-a-custom-product-shop-page-in-woocommerce\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/blog-short-note.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/blog-short-note.png\",\"width\":1287,\"height\":619,\"caption\":\"blog-short-note\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-a-custom-product-shop-page-in-woocommerce\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Create a Custom Product Shop Page in WooCommerce?\"}]},{\"@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\/e87602c2e851bf307b56194810d875db\",\"name\":\"Rohan Singh\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/fd7a6199c012acdfd12f2e3e3b49697f636ac4bc1d8f9179b6dd01b0e0d008bc?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\/fd7a6199c012acdfd12f2e3e3b49697f636ac4bc1d8f9179b6dd01b0e0d008bc?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Rohan Singh\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/rohansingh-laravel754\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Create a Custom Product Shop Page in WooCommerce?","description":"To create a custom product shop page in WooCommerce, we'll start by building a custom plugin. This plugin will contain all the necessary code","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-create-a-custom-product-shop-page-in-woocommerce\/","og_locale":"en_US","og_type":"article","og_title":"How to Create a Custom Product Shop Page in WooCommerce?","og_description":"To create a custom product shop page in WooCommerce, we'll start by building a custom plugin. This plugin will contain all the necessary code","og_url":"https:\/\/webkul.com\/blog\/how-to-create-a-custom-product-shop-page-in-woocommerce\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2023-10-26T08:15:11+00:00","article_modified_time":"2023-11-02T06:18:21+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/10\/blog-short-note-1200x577.png","type":"","width":"","height":""}],"author":"Rohan Singh","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Rohan Singh","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/how-to-create-a-custom-product-shop-page-in-woocommerce\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/how-to-create-a-custom-product-shop-page-in-woocommerce\/"},"author":{"name":"Rohan Singh","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/e87602c2e851bf307b56194810d875db"},"headline":"How to Create a Custom Product Shop Page in WooCommerce?","datePublished":"2023-10-26T08:15:11+00:00","dateModified":"2023-11-02T06:18:21+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-create-a-custom-product-shop-page-in-woocommerce\/"},"wordCount":642,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-create-a-custom-product-shop-page-in-woocommerce\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/10\/blog-short-note-1200x577.png","articleSection":["WooCommerce","WordPress"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/how-to-create-a-custom-product-shop-page-in-woocommerce\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/how-to-create-a-custom-product-shop-page-in-woocommerce\/","url":"https:\/\/webkul.com\/blog\/how-to-create-a-custom-product-shop-page-in-woocommerce\/","name":"How to Create a Custom Product Shop Page in WooCommerce?","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-create-a-custom-product-shop-page-in-woocommerce\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-create-a-custom-product-shop-page-in-woocommerce\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/10\/blog-short-note-1200x577.png","datePublished":"2023-10-26T08:15:11+00:00","dateModified":"2023-11-02T06:18:21+00:00","description":"To create a custom product shop page in WooCommerce, we'll start by building a custom plugin. This plugin will contain all the necessary code","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/how-to-create-a-custom-product-shop-page-in-woocommerce\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/how-to-create-a-custom-product-shop-page-in-woocommerce\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/how-to-create-a-custom-product-shop-page-in-woocommerce\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/blog-short-note.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/blog-short-note.png","width":1287,"height":619,"caption":"blog-short-note"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/how-to-create-a-custom-product-shop-page-in-woocommerce\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Create a Custom Product Shop Page in WooCommerce?"}]},{"@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\/e87602c2e851bf307b56194810d875db","name":"Rohan Singh","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/fd7a6199c012acdfd12f2e3e3b49697f636ac4bc1d8f9179b6dd01b0e0d008bc?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\/fd7a6199c012acdfd12f2e3e3b49697f636ac4bc1d8f9179b6dd01b0e0d008bc?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Rohan Singh"},"url":"https:\/\/webkul.com\/blog\/author\/rohansingh-laravel754\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/406823","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\/554"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=406823"}],"version-history":[{"count":17,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/406823\/revisions"}],"predecessor-version":[{"id":408948,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/406823\/revisions\/408948"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=406823"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=406823"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=406823"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}