<?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>Product Images &#8211; Woocommerce &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/product-images-woocommerce/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/product-images-woocommerce/feed/</link>
		<description></description>
		<lastBuildDate>Sat, 11 Oct 2025 03:04:30 +0000</lastBuildDate>
		<generator>https://bbpress.org/?v=2.6.14</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/product-images-woocommerce/#post-223944</guid>
					<title><![CDATA[Product Images &#8211; Woocommerce]]></title>
					<link>https://theme.co/archive/forums/topic/product-images-woocommerce/#post-223944</link>
					<pubDate>Tue, 10 Mar 2015 04:41:21 +0000</pubDate>
					<dc:creator>tom_dsky</dc:creator>

					<description>
						<![CDATA[
						<p>Hi,</p>
<p>I am needing to try and unify all of the product images that show up on the listings page. At the moment they are all different lengths and I want to try and make them all the same length. I&#8217;ve looked on Woocommerces own website and they say here <a href="http://docs.woothemes.com/document/using-the-appropriate-product-image-dimensions/" rel="nofollow">http://docs.woothemes.com/document/using-the-appropriate-product-image-dimensions/</a></p>
<p>that there should be options to change the default image settings in Woocommerce/Settings/Products/Display but this isn&#8217;t the case with my website. See screenshot here:</p>
<p><a href="https://copy.com/ppAbMGgyN3q4sCBL" rel="nofollow">https://copy.com/ppAbMGgyN3q4sCBL</a></p>
<p>Is this something the X theme has stripped out? Would you know how I might change the default Product Listing Image size to ensure they are all cropped the same size? Is there code I can add somewhere? If so what code and where should I put it, thanks so much!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/product-images-woocommerce/#post-224057</guid>
					<title><![CDATA[Reply To: Product Images &#8211; Woocommerce]]></title>
					<link>https://theme.co/archive/forums/topic/product-images-woocommerce/#post-224057</link>
					<pubDate>Tue, 10 Mar 2015 08:20:09 +0000</pubDate>
					<dc:creator>Rue Nel</dc:creator>

					<description>
						<![CDATA[
						<p>Hello There,</p>
<p>We have a predefine image sizes for the product images in X theme. The default sizes are </p>
<pre><code>
$catalog = array(
    &#039;width&#039;  =&gt; &#039;258&#039;,
    &#039;height&#039; =&gt; &#039;275&#039;,
    &#039;crop&#039;   =&gt; 1
  );

  $single = array(
    &#039;width&#039;  =&gt; &#039;450&#039;,
    &#039;height&#039; =&gt; &#039;470&#039;,
    &#039;crop&#039;   =&gt; 1
  );

  $thumbnail = array(
    &#039;width&#039;  =&gt; &#039;100&#039;,
    &#039;height&#039; =&gt; &#039;100&#039;,
    &#039;crop&#039;   =&gt; 1
  );</code></pre>
<p>These setting were stripped in the Woocommerce settings page. To change the image size, we need to add again those settings inside the Woocommerce Product Display settings page. We need to add a custom code inside your child theme&#8217;s functions.php. If you are not using it, we would highly suggest that you use a <a href="https://theme.co/x/member/kb/how-to-setup-child-themes/" rel="nofollow">child theme</a>. This allows you to make code changes that won’t be overwritten when an X update is released. After your child theme is setup, please review how we recommend making template changes in  <a href="http://theme.co/x/member/kb/customization-best-practices/" rel="nofollow">Customization Best Practices</a>.</p>
<p>Once your child theme ready, please insert the following code in your child theme&#8217;s function.php;</p>
<pre><code>// Do Not Remove Woocommerce Plugin Settings
// =============================================================================
function x_woocommerce_donot_remove_plugin_setting(){
  if ( ! is_admin() ) {
    return;
  }
  remove_filter( &#039;woocommerce_product_settings&#039;, &#039;x_woocommerce_remove_plugin_settings&#039;, 10 );
}
add_action(&#039;init&#039;, &#039;x_woocommerce_donot_remove_plugin_setting&#039;);</code></pre>
<p>Once added, you will have the Product Display Image option settings back. You can check it out in <strong>Woocommerce &gt; Settings &gt; Products &gt; Display</strong> tab; <a href="http://prntscr.com/6eysla" rel="nofollow">http://prntscr.com/6eysla</a><br />
After changing the image size for your products do not forget to regenerate your thumbnails.</p>
<p>Please let us know if this has work for you.</p>
<p>X</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/product-images-woocommerce/#post-228950</guid>
					<title><![CDATA[Reply To: Product Images &#8211; Woocommerce]]></title>
					<link>https://theme.co/archive/forums/topic/product-images-woocommerce/#post-228950</link>
					<pubDate>Tue, 17 Mar 2015 07:56:57 +0000</pubDate>
					<dc:creator>tom_dsky</dc:creator>

					<description>
						<![CDATA[
						<p>I was already using a Child Theme, so this was so simple and worked perfectly, thank you so much!!!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/product-images-woocommerce/#post-228952</guid>
					<title><![CDATA[Reply To: Product Images &#8211; Woocommerce]]></title>
					<link>https://theme.co/archive/forums/topic/product-images-woocommerce/#post-228952</link>
					<pubDate>Tue, 17 Mar 2015 08:01:36 +0000</pubDate>
					<dc:creator>tom_dsky</dc:creator>

					<description>
						<![CDATA[
						<p>Ok, so since applying this I am now getting this message appearing in the top of all my admin windows. I have no idea if it was a co-incidence or the issues are related. Should I reapply the templates as they suggest? Thanks so much.</p>
<p><a href="http://screencast.com/t/D2V8Mg91" rel="nofollow">http://screencast.com/t/D2V8Mg91</a></p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/product-images-woocommerce/#post-229020</guid>
					<title><![CDATA[Reply To: Product Images &#8211; Woocommerce]]></title>
					<link>https://theme.co/archive/forums/topic/product-images-woocommerce/#post-229020</link>
					<pubDate>Tue, 17 Mar 2015 09:42:34 +0000</pubDate>
					<dc:creator>tom_dsky</dc:creator>

					<description>
						<![CDATA[
						<p>Alright, you&#8217;re gonna hate me. So, as mentioned before, you&#8217;re extra code worked a treat in that the options are now available to me as they should be:</p>
<p><a href="http://screencast.com/t/FFZNhZt2Wp" rel="nofollow">http://screencast.com/t/FFZNhZt2Wp</a></p>
<p>However even with them set, it doesn&#8217;t seem to have changed anything. My images are all still different sizes:</p>
<p><a href="http://screencast.com/t/fexv8UNGxM" rel="nofollow">http://screencast.com/t/fexv8UNGxM</a></p>
<p>Now it does say I to regenerate thumbnails, which I have done. It also says I may need to change the CSS for the front end, but I have no idea what to change and whether I should do this via customizer &#8216;custom&#8217; or via the child theme itself. I&#8217;d really appreciate your help, even if its just to point me to existing info to help me elsewhere on your site. Thank you, so so much</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/product-images-woocommerce/#post-229083</guid>
					<title><![CDATA[Reply To: Product Images &#8211; Woocommerce]]></title>
					<link>https://theme.co/archive/forums/topic/product-images-woocommerce/#post-229083</link>
					<pubDate>Tue, 17 Mar 2015 11:23:45 +0000</pubDate>
					<dc:creator>Zeshan</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Lara,</p>
<p>This is because your shop images are still using X image sizes. You&#8217;ll need to change the X sizes with default WooCommerce shop catalog image size. This requires more in depth custom development. While that is outside the scope of support, I could point you in the right direction with the understanding that it would ultimately be your responsibility to take it from here. </p>
<p>So to change your shop catalog image sizes with default WooCommerce catalog image size, add following code as well in your child theme&#8217;s <strong>functions.php</strong> file:</p>
<pre><code>// =============================================================================
// WooCommerce Short Thumbnail size change 
// =============================================================================

function x_woocommerce_shop_thumbnail2() {

  GLOBAL $product;

  $stack            = x_get_stack();
  $stack_thumb      = &#039;shop_catalog&#039;;
  $stack_shop_thumb = $stack_thumb;
  $id               = get_the_ID();
  $rating           = $product-&gt;get_rating_html();

  woocommerce_show_product_sale_flash();
  echo &#039;&lt;div class=&quot;entry-featured&quot;&gt;&#039;;
    echo &#039;&lt;a href=&quot;&#039; . get_the_permalink() . &#039;&quot;&gt;&#039;;
      echo get_the_post_thumbnail( $id , $stack_shop_thumb );
      if ( ! empty( $rating ) ) {
        echo &#039;&lt;div class=&quot;star-rating-container aggregate &quot;&gt;&#039; . $rating . &#039;&lt;/div&gt;&#039;;
      }
    echo &#039;&lt;/a&gt;&#039;;
  echo &quot;&lt;/div&gt;&quot;;

}

add_filter(&#039;init&#039;, function() {

   remove_action( &#039;woocommerce_before_shop_loop_item_title&#039;, &#039;x_woocommerce_shop_thumbnail&#039;, 10 );

});

add_action( &#039;woocommerce_before_shop_loop_item_title&#039;, &#039;x_woocommerce_shop_thumbnail2&#039;, 10 ); 
</code></pre>
<p>Thank you for understanding.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/product-images-woocommerce/#post-230655</guid>
					<title><![CDATA[Reply To: Product Images &#8211; Woocommerce]]></title>
					<link>https://theme.co/archive/forums/topic/product-images-woocommerce/#post-230655</link>
					<pubDate>Thu, 19 Mar 2015 00:22:41 +0000</pubDate>
					<dc:creator>tom_dsky</dc:creator>

					<description>
						<![CDATA[
						This reply has been marked as private.						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/product-images-woocommerce/#post-230656</guid>
					<title><![CDATA[Reply To: Product Images &#8211; Woocommerce]]></title>
					<link>https://theme.co/archive/forums/topic/product-images-woocommerce/#post-230656</link>
					<pubDate>Thu, 19 Mar 2015 00:24:16 +0000</pubDate>
					<dc:creator>tom_dsky</dc:creator>

					<description>
						<![CDATA[
						<p>Opps sorry, didn&#8217;t see your reply. Thanks for this. I totally understand, I&#8217;ll try to figure it out from here. I appreciate your help to this point.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/product-images-woocommerce/#post-230744</guid>
					<title><![CDATA[Reply To: Product Images &#8211; Woocommerce]]></title>
					<link>https://theme.co/archive/forums/topic/product-images-woocommerce/#post-230744</link>
					<pubDate>Thu, 19 Mar 2015 03:06:49 +0000</pubDate>
					<dc:creator>Christian</dc:creator>

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

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/product-images-woocommerce/#post-757005</guid>
					<title><![CDATA[Reply To: Product Images &#8211; Woocommerce]]></title>
					<link>https://theme.co/archive/forums/topic/product-images-woocommerce/#post-757005</link>
					<pubDate>Thu, 21 Jan 2016 15:37:59 +0000</pubDate>
					<dc:creator>billium99</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there &#8211; I just deployed this code to use the WooCommerce thumbnail settings, I regenerated my thumbnails, and it looks like now I have two sets of images showing up. You can see here:</p>
<p><a href="http://chapels.coloradowebdesign.com/shop/" rel="nofollow">http://chapels.coloradowebdesign.com/shop/</a></p>
<p>So we&#8217;re very close!</p>
<p>But I think maybe there is a problem with this line of code in your example:</p>
<pre><code>add_filter(&#039;init&#039;, function() {

   remove_action( &#039;woocommerce_before_shop_loop_item_title&#039;, &#039;x_woocommerce_shop_thumbnail&#039;, 10 );

});</code></pre>
<p>I realize this is out of scope, but would you mind confirming if this is the problem or if you see any typo or other issue with your code? Any suggestions?</p>
<p>Thanks so much</p>
<p>Bill</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

