{"id":1189,"date":"2022-02-10T20:17:13","date_gmt":"2022-02-10T14:47:13","guid":{"rendered":"https:\/\/hostkicker.com\/blog\/?p=1189"},"modified":"2022-05-17T11:38:34","modified_gmt":"2022-05-17T06:08:34","slug":"how-to-change-the-woocommerce-shop-page-title-quick-easy","status":"publish","type":"post","link":"https:\/\/hostkicker.com\/blog\/how-to-change-the-woocommerce-shop-page-title-quick-easy\/","title":{"rendered":"How to Change the WooCommerce Shop Page Title (Quick &amp; Easy)"},"content":{"rendered":"<p><span data-preserver-spaces=\"true\">Do you want to see how to change the WooCommerce shop page title?<\/span><\/p>\n<p><span data-preserver-spaces=\"true\">The main shop page is called &#8216;Shop&#8217; by default. You can change the default title to reflect your brand better and be more descriptive and attractive.\u00a0<\/span><\/p>\n<p><span data-preserver-spaces=\"true\">In this article, we will help you change the shop page title in WooCommerce.<\/span><\/p>\n<h4><span data-preserver-spaces=\"true\">Why Change the Shop Page Title in WooCommerce?<\/span><\/h4>\n<p><span data-preserver-spaces=\"true\">WooCommerce automatically creates pages like your shop page, checkout page, account page, and more.<\/span><\/p>\n<p><span data-preserver-spaces=\"true\">The shop page title will be &#8216;Shop&#8217; by default, but you can change this according to your choices, such as shopping center, megastore, parlor, Boutique, or something more descriptive. Altogether, this can help users relate to your brand, build trust with your visitors and create a better shopping experience.<\/span><\/p>\n<p><span data-preserver-spaces=\"true\">You can also improve your WooCommerce SEO by customizing your shop page title. Search engines analyze the words used in page titles to decide how to rank them in search results. Making your shop page title more descriptive can help you gain more traffic to your online store.<\/span><\/p>\n<p><span data-preserver-spaces=\"true\">Let&#8217;s move ahead to change the WooCommerce shop page title.\u00a0<\/span><\/p>\n<h4><span data-preserver-spaces=\"true\">Method 1: Changing the Shop Page Title with in-Built WordPress Settings<\/span><\/h4>\n<p><span data-preserver-spaces=\"true\">The simplest way to change the shop page title in your Woocommerce store is by using the in-built settings.<\/span><\/p>\n<p><span data-preserver-spaces=\"true\">To change the title, visit\u00a0<\/span><strong><span data-preserver-spaces=\"true\">Pages \u00bb All Pages<\/span><\/strong><span data-preserver-spaces=\"true\">.\u00a0<\/span><\/p>\n<p><span data-preserver-spaces=\"true\">Then find the page with the &#8216;Shop \u2013 Shop Page&#8217; heading, hover it, and click the &#8216;Edit&#8217; tab.<\/span><\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-1190\" src=\"https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2022\/02\/go-to-all-pages.png\" alt=\"\" width=\"680\" height=\"103\" srcset=\"https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2022\/02\/go-to-all-pages.png 680w, https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2022\/02\/go-to-all-pages-300x45.png 300w\" sizes=\"auto, (max-width: 680px) 100vw, 680px\" \/><\/p>\n<p><span data-preserver-spaces=\"true\">Now, enter a new page title at the top of the page, and don&#8217;t forget to click the &#8216;Update&#8217; tab to save your changes.<\/span><\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-1191\" src=\"https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2022\/02\/add-new-shop-page-title.png\" alt=\"\" width=\"680\" height=\"143\" srcset=\"https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2022\/02\/add-new-shop-page-title.png 680w, https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2022\/02\/add-new-shop-page-title-300x63.png 300w\" sizes=\"auto, (max-width: 680px) 100vw, 680px\" \/><\/p>\n<p><span data-preserver-spaces=\"true\">Now, you can go to your shop page to see your new shop page title live.<\/span><\/p>\n<p><span data-preserver-spaces=\"true\">It will also update your breadcrumbs and navigation menu.<\/span><\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-1192\" src=\"https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2022\/02\/built-in-settings-shop-page-title-example.png\" alt=\"\" width=\"680\" height=\"283\" srcset=\"https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2022\/02\/built-in-settings-shop-page-title-example.png 680w, https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2022\/02\/built-in-settings-shop-page-title-example-300x125.png 300w\" sizes=\"auto, (max-width: 680px) 100vw, 680px\" \/><\/p>\n<h4><span data-preserver-spaces=\"true\">Method 2: Changing the Shop Page Title by using Code<\/span><\/h4>\n<p><span data-preserver-spaces=\"true\">Several WooCommerce themes may not provide the option to change your shop page title.<\/span><\/p>\n<p><span data-preserver-spaces=\"true\">So the other way you can change the title is by adding a code snippet.\u00a0<\/span><\/p>\n<p><span data-preserver-spaces=\"true\">Copy the code and add it to your functions.php file, or by using a code snippets plugin or in a site-specific plugin.\u00a0<\/span><\/p>\n<pre><span data-preserver-spaces=\"true\"> add_filter( 'woocommerce_page_title', 'new_woocommerce_page_title');<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">\u00a0\u00a0<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">function new_woocommerce_page_title( $page_title ) {<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">\u00a0\u00a0<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">\u00a0\u00a0if( $page_title == 'Shop' ) {<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">\u00a0\u00a0<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">\u00a0 \u00a0\u00a0return \"New Shop Title\";<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">\u00a0\u00a0<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">\u00a0\u00a0}<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">\u00a0\u00a0<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">}<\/span><\/pre>\n<p><strong><span data-preserver-spaces=\"true\">Note:<\/span><\/strong><span data-preserver-spaces=\"true\">\u00a0Replace the &#8216;New Shop Title&#8217; with your own shop page title in the code above.<\/span><\/p>\n<p><span data-preserver-spaces=\"true\">Now, you can see your new title live by visiting your online shop page.<\/span><\/p>\n<p><span data-preserver-spaces=\"true\">This method does not change the shop page URL or WooCommerce breadcrumbs like the above one. It only changes the title on the page.<\/span><\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-1193\" src=\"https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2022\/02\/add-code-shop-page-title-example.png\" alt=\"\" width=\"680\" height=\"281\" srcset=\"https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2022\/02\/add-code-shop-page-title-example.png 680w, https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2022\/02\/add-code-shop-page-title-example-300x124.png 300w\" sizes=\"auto, (max-width: 680px) 100vw, 680px\" \/><\/p>\n<h4><span data-preserver-spaces=\"true\">Method 3: Changing the Shop Page SEO Title using a WordPress Plugin<\/span><\/h4>\n<p><span data-preserver-spaces=\"true\">Another method to change your shop page title is by changing the shop title that displays in the search engines, the SEO title.<\/span><\/p>\n<p><span data-preserver-spaces=\"true\">This can help gain more traffic and easily optimize your SEO title to boost your search engine rankings.<\/span><\/p>\n<p><span data-preserver-spaces=\"true\">The\u00a0<\/span><a class=\"editor-rtfLink\" href=\"https:\/\/aioseo.com\/\" target=\"_blank\" rel=\"noopener\"><span data-preserver-spaces=\"true\">AIOSEO<\/span><\/a><span data-preserver-spaces=\"true\">\u00a0plugin is the WordPress SEO plugin. First, install and set up the plugin on your site.<\/span><\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-980\" src=\"https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2022\/01\/screencapture-aioseo-2022-01-29-22_51_22-edit.jpg\" alt=\"\" width=\"732\" height=\"329\" srcset=\"https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2022\/01\/screencapture-aioseo-2022-01-29-22_51_22-edit.jpg 1429w, https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2022\/01\/screencapture-aioseo-2022-01-29-22_51_22-edit-300x135.jpg 300w, https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2022\/01\/screencapture-aioseo-2022-01-29-22_51_22-edit-1024x460.jpg 1024w, https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2022\/01\/screencapture-aioseo-2022-01-29-22_51_22-edit-768x345.jpg 768w\" sizes=\"auto, (max-width: 732px) 100vw, 732px\" \/><\/p>\n<p><span data-preserver-spaces=\"true\">You can see our tutorial on\u00a0<\/span><a class=\"editor-rtfLink\" href=\"https:\/\/hostkicker.com\/blog\/how-to-install-a-wordpress-plugin\" target=\"_blank\" rel=\"noopener\"><span data-preserver-spaces=\"true\">how to install and activate a WordPress plugin<\/span><\/a><span data-preserver-spaces=\"true\">\u00a0for more details.<\/span><\/p>\n<p><span data-preserver-spaces=\"true\">After activating and setting up the plugin, you can easily change your shop page SEO title.\u00a0<\/span><\/p>\n<p><span data-preserver-spaces=\"true\">To change your shop page SEO title, open your shop page and scroll down to the &#8216;AIOSEO Settings&#8217; box under the page editor.<\/span><\/p>\n<p><span data-preserver-spaces=\"true\">You can use smart tags to generate the shop page title automatically or place a custom title.<\/span><\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-1194\" src=\"https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2022\/02\/aioseo-shop-page-title.png\" alt=\"\" width=\"680\" height=\"271\" srcset=\"https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2022\/02\/aioseo-shop-page-title.png 680w, https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2022\/02\/aioseo-shop-page-title-300x120.png 300w\" sizes=\"auto, (max-width: 680px) 100vw, 680px\" \/><\/p>\n<p><span data-preserver-spaces=\"true\">If you want to completely customize the title and page design of your WooCommerce shop page, we suggest using\u00a0<\/span><a class=\"editor-rtfLink\" href=\"https:\/\/www.seedprod.com\/\" target=\"_blank\" rel=\"noopener\"><span data-preserver-spaces=\"true\">SeedProd<\/span><\/a><span data-preserver-spaces=\"true\">.<\/span><\/p>\n<p><span data-preserver-spaces=\"true\">It helps you to customize every detail of your WooCommerce store properly.<\/span><\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-1195\" src=\"https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2022\/02\/seedprod-woocommerce-blocks.jpg\" alt=\"\" width=\"680\" height=\"430\" srcset=\"https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2022\/02\/seedprod-woocommerce-blocks.jpg 680w, https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2022\/02\/seedprod-woocommerce-blocks-300x190.jpg 300w\" sizes=\"auto, (max-width: 680px) 100vw, 680px\" \/><\/p>\n<p><span data-preserver-spaces=\"true\">We hope this write-up helped you change the shop page title in WooCommerce.\u00a0<\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Do you want to see how to change the WooCommerce shop page title? The main shop page is called &#8216;Shop&#8217; by default. You can change the default title to reflect your brand better and be more descriptive and attractive.\u00a0 In this article, we will help you change the shop page title in WooCommerce. Why Change [&hellip;]<\/p>\n","protected":false},"author":4,"featured_media":1218,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-1189","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-wp-tutorials"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v19.3 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to Change the WooCommerce Shop Page Title (Quick &amp; Easy)<\/title>\n<meta name=\"description\" content=\"To Change the WooCommerce Shop Page Title, visit\u00a0Pages \u00bb All Pages.\u00a0Then find the page with the title &#039;Shop \u2013 Shop Page&#039;, and click the &#039;Edit&#039; tab and enter...\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/hostkicker.com\/blog\/how-to-change-the-woocommerce-shop-page-title-quick-easy\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Change the WooCommerce Shop Page Title (Quick &amp; Easy)\" \/>\n<meta property=\"og:description\" content=\"To Change the WooCommerce Shop Page Title, visit\u00a0Pages \u00bb All Pages.\u00a0Then find the page with the title &#039;Shop \u2013 Shop Page&#039;, and click the &#039;Edit&#039; tab and enter...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/hostkicker.com\/blog\/how-to-change-the-woocommerce-shop-page-title-quick-easy\/\" \/>\n<meta property=\"og:site_name\" content=\"Hostkicker\" \/>\n<meta property=\"article:published_time\" content=\"2022-02-10T14:47:13+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-05-17T06:08:34+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2022\/02\/How-to-Change-the-WooCommerce-Shop-Page-Title-Quick-amp-Easy.png\" \/>\n\t<meta property=\"og:image:width\" content=\"693\" \/>\n\t<meta property=\"og:image:height\" content=\"511\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Olivia Smith\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:title\" content=\"How to Change the WooCommerce Shop Page Title (Quick &amp; Easy)\" \/>\n<meta name=\"twitter:description\" content=\"To Change the WooCommerce Shop Page Title, visit\u00a0Pages \u00bb All Pages.\u00a0Then find the page with the title &#039;Shop \u2013 Shop Page&#039;, and click the &#039;Edit&#039; tab and enter...\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2022\/02\/How-to-Change-the-WooCommerce-Shop-Page-Title-Quick-amp-Easy.png\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Olivia Smith\" \/>\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:\\\/\\\/hostkicker.com\\\/blog\\\/how-to-change-the-woocommerce-shop-page-title-quick-easy\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/how-to-change-the-woocommerce-shop-page-title-quick-easy\\\/\"},\"author\":{\"name\":\"Olivia Smith\",\"@id\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/#\\\/schema\\\/person\\\/f06306b595baa96c90a0491b941d7660\"},\"headline\":\"How to Change the WooCommerce Shop Page Title (Quick &amp; Easy)\",\"datePublished\":\"2022-02-10T14:47:13+00:00\",\"dateModified\":\"2022-05-17T06:08:34+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/how-to-change-the-woocommerce-shop-page-title-quick-easy\\\/\"},\"wordCount\":601,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/how-to-change-the-woocommerce-shop-page-title-quick-easy\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/02\\\/How-to-Change-the-WooCommerce-Shop-Page-Title-Quick-amp-Easy.png\",\"articleSection\":[\"Wp tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/hostkicker.com\\\/blog\\\/how-to-change-the-woocommerce-shop-page-title-quick-easy\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/how-to-change-the-woocommerce-shop-page-title-quick-easy\\\/\",\"url\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/how-to-change-the-woocommerce-shop-page-title-quick-easy\\\/\",\"name\":\"How to Change the WooCommerce Shop Page Title (Quick & Easy)\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/how-to-change-the-woocommerce-shop-page-title-quick-easy\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/how-to-change-the-woocommerce-shop-page-title-quick-easy\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/02\\\/How-to-Change-the-WooCommerce-Shop-Page-Title-Quick-amp-Easy.png\",\"datePublished\":\"2022-02-10T14:47:13+00:00\",\"dateModified\":\"2022-05-17T06:08:34+00:00\",\"description\":\"To Change the WooCommerce Shop Page Title, visit\u00a0Pages \u00bb All Pages.\u00a0Then find the page with the title 'Shop \u2013 Shop Page', and click the 'Edit' tab and enter...\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/how-to-change-the-woocommerce-shop-page-title-quick-easy\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/hostkicker.com\\\/blog\\\/how-to-change-the-woocommerce-shop-page-title-quick-easy\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/how-to-change-the-woocommerce-shop-page-title-quick-easy\\\/#primaryimage\",\"url\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/02\\\/How-to-Change-the-WooCommerce-Shop-Page-Title-Quick-amp-Easy.png\",\"contentUrl\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/02\\\/How-to-Change-the-WooCommerce-Shop-Page-Title-Quick-amp-Easy.png\",\"width\":693,\"height\":511,\"caption\":\"How to Change the WooCommerce Shop Page Title (Quick &amp; Easy)\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/how-to-change-the-woocommerce-shop-page-title-quick-easy\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Change the WooCommerce Shop Page Title (Quick &amp; Easy)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/\",\"name\":\"Hostkicker\",\"description\":\"Blog\",\"publisher\":{\"@id\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/#organization\",\"name\":\"Hostkicker\",\"url\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/12\\\/hostkicker-logo-01.png\",\"contentUrl\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/12\\\/hostkicker-logo-01.png\",\"width\":940,\"height\":218,\"caption\":\"Hostkicker\"},\"image\":{\"@id\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/#\\\/schema\\\/person\\\/f06306b595baa96c90a0491b941d7660\",\"name\":\"Olivia Smith\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/24a6b2466362238ad275f97a2f2fc49ce8d139c034114d6b9c52de1b12ebf1bd?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/24a6b2466362238ad275f97a2f2fc49ce8d139c034114d6b9c52de1b12ebf1bd?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/24a6b2466362238ad275f97a2f2fc49ce8d139c034114d6b9c52de1b12ebf1bd?s=96&d=mm&r=g\",\"caption\":\"Olivia Smith\"},\"url\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/author\\\/olivia\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to Change the WooCommerce Shop Page Title (Quick & Easy)","description":"To Change the WooCommerce Shop Page Title, visit\u00a0Pages \u00bb All Pages.\u00a0Then find the page with the title 'Shop \u2013 Shop Page', and click the 'Edit' tab and enter...","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:\/\/hostkicker.com\/blog\/how-to-change-the-woocommerce-shop-page-title-quick-easy\/","og_locale":"en_US","og_type":"article","og_title":"How to Change the WooCommerce Shop Page Title (Quick &amp; Easy)","og_description":"To Change the WooCommerce Shop Page Title, visit\u00a0Pages \u00bb All Pages.\u00a0Then find the page with the title 'Shop \u2013 Shop Page', and click the 'Edit' tab and enter...","og_url":"https:\/\/hostkicker.com\/blog\/how-to-change-the-woocommerce-shop-page-title-quick-easy\/","og_site_name":"Hostkicker","article_published_time":"2022-02-10T14:47:13+00:00","article_modified_time":"2022-05-17T06:08:34+00:00","og_image":[{"width":693,"height":511,"url":"https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2022\/02\/How-to-Change-the-WooCommerce-Shop-Page-Title-Quick-amp-Easy.png","type":"image\/png"}],"author":"Olivia Smith","twitter_card":"summary_large_image","twitter_title":"How to Change the WooCommerce Shop Page Title (Quick &amp; Easy)","twitter_description":"To Change the WooCommerce Shop Page Title, visit\u00a0Pages \u00bb All Pages.\u00a0Then find the page with the title 'Shop \u2013 Shop Page', and click the 'Edit' tab and enter...","twitter_image":"https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2022\/02\/How-to-Change-the-WooCommerce-Shop-Page-Title-Quick-amp-Easy.png","twitter_misc":{"Written by":"Olivia Smith","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/hostkicker.com\/blog\/how-to-change-the-woocommerce-shop-page-title-quick-easy\/#article","isPartOf":{"@id":"https:\/\/hostkicker.com\/blog\/how-to-change-the-woocommerce-shop-page-title-quick-easy\/"},"author":{"name":"Olivia Smith","@id":"https:\/\/hostkicker.com\/blog\/#\/schema\/person\/f06306b595baa96c90a0491b941d7660"},"headline":"How to Change the WooCommerce Shop Page Title (Quick &amp; Easy)","datePublished":"2022-02-10T14:47:13+00:00","dateModified":"2022-05-17T06:08:34+00:00","mainEntityOfPage":{"@id":"https:\/\/hostkicker.com\/blog\/how-to-change-the-woocommerce-shop-page-title-quick-easy\/"},"wordCount":601,"commentCount":0,"publisher":{"@id":"https:\/\/hostkicker.com\/blog\/#organization"},"image":{"@id":"https:\/\/hostkicker.com\/blog\/how-to-change-the-woocommerce-shop-page-title-quick-easy\/#primaryimage"},"thumbnailUrl":"https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2022\/02\/How-to-Change-the-WooCommerce-Shop-Page-Title-Quick-amp-Easy.png","articleSection":["Wp tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/hostkicker.com\/blog\/how-to-change-the-woocommerce-shop-page-title-quick-easy\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/hostkicker.com\/blog\/how-to-change-the-woocommerce-shop-page-title-quick-easy\/","url":"https:\/\/hostkicker.com\/blog\/how-to-change-the-woocommerce-shop-page-title-quick-easy\/","name":"How to Change the WooCommerce Shop Page Title (Quick & Easy)","isPartOf":{"@id":"https:\/\/hostkicker.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/hostkicker.com\/blog\/how-to-change-the-woocommerce-shop-page-title-quick-easy\/#primaryimage"},"image":{"@id":"https:\/\/hostkicker.com\/blog\/how-to-change-the-woocommerce-shop-page-title-quick-easy\/#primaryimage"},"thumbnailUrl":"https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2022\/02\/How-to-Change-the-WooCommerce-Shop-Page-Title-Quick-amp-Easy.png","datePublished":"2022-02-10T14:47:13+00:00","dateModified":"2022-05-17T06:08:34+00:00","description":"To Change the WooCommerce Shop Page Title, visit\u00a0Pages \u00bb All Pages.\u00a0Then find the page with the title 'Shop \u2013 Shop Page', and click the 'Edit' tab and enter...","breadcrumb":{"@id":"https:\/\/hostkicker.com\/blog\/how-to-change-the-woocommerce-shop-page-title-quick-easy\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/hostkicker.com\/blog\/how-to-change-the-woocommerce-shop-page-title-quick-easy\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/hostkicker.com\/blog\/how-to-change-the-woocommerce-shop-page-title-quick-easy\/#primaryimage","url":"https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2022\/02\/How-to-Change-the-WooCommerce-Shop-Page-Title-Quick-amp-Easy.png","contentUrl":"https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2022\/02\/How-to-Change-the-WooCommerce-Shop-Page-Title-Quick-amp-Easy.png","width":693,"height":511,"caption":"How to Change the WooCommerce Shop Page Title (Quick &amp; Easy)"},{"@type":"BreadcrumbList","@id":"https:\/\/hostkicker.com\/blog\/how-to-change-the-woocommerce-shop-page-title-quick-easy\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/hostkicker.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Change the WooCommerce Shop Page Title (Quick &amp; Easy)"}]},{"@type":"WebSite","@id":"https:\/\/hostkicker.com\/blog\/#website","url":"https:\/\/hostkicker.com\/blog\/","name":"Hostkicker","description":"Blog","publisher":{"@id":"https:\/\/hostkicker.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/hostkicker.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/hostkicker.com\/blog\/#organization","name":"Hostkicker","url":"https:\/\/hostkicker.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/hostkicker.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2021\/12\/hostkicker-logo-01.png","contentUrl":"https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2021\/12\/hostkicker-logo-01.png","width":940,"height":218,"caption":"Hostkicker"},"image":{"@id":"https:\/\/hostkicker.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/hostkicker.com\/blog\/#\/schema\/person\/f06306b595baa96c90a0491b941d7660","name":"Olivia Smith","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/24a6b2466362238ad275f97a2f2fc49ce8d139c034114d6b9c52de1b12ebf1bd?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/24a6b2466362238ad275f97a2f2fc49ce8d139c034114d6b9c52de1b12ebf1bd?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/24a6b2466362238ad275f97a2f2fc49ce8d139c034114d6b9c52de1b12ebf1bd?s=96&d=mm&r=g","caption":"Olivia Smith"},"url":"https:\/\/hostkicker.com\/blog\/author\/olivia\/"}]}},"jetpack_featured_media_url":"https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2022\/02\/How-to-Change-the-WooCommerce-Shop-Page-Title-Quick-amp-Easy.png","_links":{"self":[{"href":"https:\/\/hostkicker.com\/blog\/wp-json\/wp\/v2\/posts\/1189","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/hostkicker.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/hostkicker.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/hostkicker.com\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/hostkicker.com\/blog\/wp-json\/wp\/v2\/comments?post=1189"}],"version-history":[{"count":1,"href":"https:\/\/hostkicker.com\/blog\/wp-json\/wp\/v2\/posts\/1189\/revisions"}],"predecessor-version":[{"id":1196,"href":"https:\/\/hostkicker.com\/blog\/wp-json\/wp\/v2\/posts\/1189\/revisions\/1196"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/hostkicker.com\/blog\/wp-json\/wp\/v2\/media\/1218"}],"wp:attachment":[{"href":"https:\/\/hostkicker.com\/blog\/wp-json\/wp\/v2\/media?parent=1189"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/hostkicker.com\/blog\/wp-json\/wp\/v2\/categories?post=1189"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/hostkicker.com\/blog\/wp-json\/wp\/v2\/tags?post=1189"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}