<?xml version="1.0" encoding="UTF-8"?>
	<rss version="2.0"
		xmlns:content="http://purl.org/rss/1.0/modules/content/"
		xmlns:wfw="http://wellformedweb.org/CommentAPI/"
		xmlns:dc="http://purl.org/dc/elements/1.1/"
		xmlns:atom="http://www.w3.org/2005/Atom"

			>

	<channel>

		<title>Integrity &amp; WooCommerce:  Change &quot;Shop&quot; &amp; Product Archive page meta titles? &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/integrity-woocommerce-change-shop-product-archive-page-meta-titles/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/integrity-woocommerce-change-shop-product-archive-page-meta-titles/feed/</link>
		<description></description>
		<lastBuildDate>Mon, 03 Nov 2025 06:09:09 +0000</lastBuildDate>
		<generator>https://bbpress.org/?v=2.6.14</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/integrity-woocommerce-change-shop-product-archive-page-meta-titles/#post-100091</guid>
					<title><![CDATA[Integrity &amp; WooCommerce:  Change &quot;Shop&quot; &amp; Product Archive page meta titles?]]></title>
					<link>https://theme.co/archive/forums/topic/integrity-woocommerce-change-shop-product-archive-page-meta-titles/#post-100091</link>
					<pubDate>Sun, 07 Sep 2014 03:39:31 +0000</pubDate>
					<dc:creator>RVgeeks</dc:creator>

					<description>
						<![CDATA[
						<p>Hello super-awesome X Theme Support!</p>
<p>I&#8217;m back for some more&#8230;</p>
<p>This time, I&#8217;m working in a local install of my live site (sorry, no URL to provide), experimenting with WooCommerce in the Integrity theme.  I&#8217;ve let WooCommerce create it&#8217;s default pages, set up a couple of test products using just one Product Category (let&#8217;s say it&#8217;s &#8220;Plumbing&#8221;).</p>
<p>How can I change the meta/browser title for the main &#8220;Shop&#8221; page and for the Product Category pages?  Right now they show &#8220;Product Archives&#8221; for the &#8220;Shop&#8221; page and &#8220;Plumbing Products Archives&#8221; for the &#8220;Plumbing&#8221; Product Category page. I&#8217;ve looked everywhere, but can&#8217;t seem to find where in the system I can control the page titles.</p>
<p>HELP!  ;D</p>
<p>Thanks,</p>
<p> &#8211; John</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/integrity-woocommerce-change-shop-product-archive-page-meta-titles/#post-100096</guid>
					<title><![CDATA[Reply To: Integrity &amp; WooCommerce:  Change &quot;Shop&quot; &amp; Product Archive page meta titles?]]></title>
					<link>https://theme.co/archive/forums/topic/integrity-woocommerce-change-shop-product-archive-page-meta-titles/#post-100096</link>
					<pubDate>Sun, 07 Sep 2014 03:49:04 +0000</pubDate>
					<dc:creator>RVgeeks</dc:creator>

					<description>
						<![CDATA[
						<p>Oh&#8230; and while I&#8217;m asking&#8230; how can I change the sidebar for the Product Archive pages?  I made a new sidebar and assigned it to the &#8220;Shop&#8221; page&#8230; but the default/standard sidebar shows once you drill down to a Product Category.</p>
<p>Thanks!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/integrity-woocommerce-change-shop-product-archive-page-meta-titles/#post-100101</guid>
					<title><![CDATA[Reply To: Integrity &amp; WooCommerce:  Change &quot;Shop&quot; &amp; Product Archive page meta titles?]]></title>
					<link>https://theme.co/archive/forums/topic/integrity-woocommerce-change-shop-product-archive-page-meta-titles/#post-100101</link>
					<pubDate>Sun, 07 Sep 2014 04:10:39 +0000</pubDate>
					<dc:creator>Rad</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>Thanks for posting in.</p>
<p>You can name your archive titles for woocommerce at <strong>Admin &gt; Products &gt; Categories</strong> and find <strong>Archive Title</strong> input field.</p>
<p>If you wish to use same sidebar from Shop to your archive pages, then add this code at your child theme&#8217;s functions.php</p>
<pre><code>add_filter( &#039;ups_sidebar&#039;, function ( $default_sidebar ) {

  $sidebars = get_option( &#039;ups_sidebars&#039; );

  foreach ( $sidebars as $id =&gt; $sidebar ) {
    if (  x_is_shop() || x_is_product_category() || x_is_product_tag() || x_is_product() ) {
      if ( array_key_exists( &#039;index-shop&#039;, $sidebar ) &amp;&amp; $sidebar[&#039;index-shop&#039;] == &#039;on&#039; ) {
        return $id;
      }
    }
  }

  return $default_sidebar;

}, 9999 );</code></pre>
<p>Hope this helps.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/integrity-woocommerce-change-shop-product-archive-page-meta-titles/#post-100117</guid>
					<title><![CDATA[Reply To: Integrity &amp; WooCommerce:  Change &quot;Shop&quot; &amp; Product Archive page meta titles?]]></title>
					<link>https://theme.co/archive/forums/topic/integrity-woocommerce-change-shop-product-archive-page-meta-titles/#post-100117</link>
					<pubDate>Sun, 07 Sep 2014 05:50:03 +0000</pubDate>
					<dc:creator>RVgeeks</dc:creator>

					<description>
						<![CDATA[
						<p><code>You can name your archive titles for woocommerce at Admin &gt; Products &gt; Categories and find Archive Title input field.</code><br />
Does this also affect the Browser/Page title (the actual &lt;title&gt; tag in the &lt;head&gt; of the document)?  Or just the display at the top of the archive page itself?</p>
<p><code>If you wish to use same sidebar from Shop to your archive pages, then add this code at your child theme’s functions.php</code><br />
Thanks!  I&#8217;ll take a closer look at that tomorrow (I don&#8217;t currently have a child theme enabled, so I have to do that first!).</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/integrity-woocommerce-change-shop-product-archive-page-meta-titles/#post-100127</guid>
					<title><![CDATA[Reply To: Integrity &amp; WooCommerce:  Change &quot;Shop&quot; &amp; Product Archive page meta titles?]]></title>
					<link>https://theme.co/archive/forums/topic/integrity-woocommerce-change-shop-product-archive-page-meta-titles/#post-100127</link>
					<pubDate>Sun, 07 Sep 2014 06:20:53 +0000</pubDate>
					<dc:creator>Christian</dc:creator>

					<description>
						<![CDATA[
						<p>Hey there,</p>
<p>That doesn&#8217;t affect the title. The title gets the category name.</p>
<p>Thanks.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/integrity-woocommerce-change-shop-product-archive-page-meta-titles/#post-100128</guid>
					<title><![CDATA[Reply To: Integrity &amp; WooCommerce:  Change &quot;Shop&quot; &amp; Product Archive page meta titles?]]></title>
					<link>https://theme.co/archive/forums/topic/integrity-woocommerce-change-shop-product-archive-page-meta-titles/#post-100128</link>
					<pubDate>Sun, 07 Sep 2014 06:21:50 +0000</pubDate>
					<dc:creator>RVgeeks</dc:creator>

					<description>
						<![CDATA[
						<p>OK.  Thanks!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/integrity-woocommerce-change-shop-product-archive-page-meta-titles/#post-100138</guid>
					<title><![CDATA[Reply To: Integrity &amp; WooCommerce:  Change &quot;Shop&quot; &amp; Product Archive page meta titles?]]></title>
					<link>https://theme.co/archive/forums/topic/integrity-woocommerce-change-shop-product-archive-page-meta-titles/#post-100138</link>
					<pubDate>Sun, 07 Sep 2014 07:06:20 +0000</pubDate>
					<dc:creator>Christian</dc:creator>

					<description>
						<![CDATA[
						<p>You&#8217;re welcome. 🙂</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

