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

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/woocommerce-product-image-sizes-missing/#post-183517</guid>
					<title><![CDATA[Woocommerce Product Image Sizes missing]]></title>
					<link>https://theme.co/archive/forums/topic/woocommerce-product-image-sizes-missing/#post-183517</link>
					<pubDate>Thu, 15 Jan 2015 09:59:39 +0000</pubDate>
					<dc:creator>&#321;ukasz W</dc:creator>

					<description>
						<![CDATA[
						<p>Hi,</p>
<p>when I&#8217;m using X Theme (it&#8217;s ok with others) the section &#8220;Product Image Sizes&#8221; in WooCommerce &gt; Settings &gt; Products disappears. Any advice?</p>
<p>Thanks.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/woocommerce-product-image-sizes-missing/#post-183894</guid>
					<title><![CDATA[Reply To: Woocommerce Product Image Sizes missing]]></title>
					<link>https://theme.co/archive/forums/topic/woocommerce-product-image-sizes-missing/#post-183894</link>
					<pubDate>Thu, 15 Jan 2015 20:12:38 +0000</pubDate>
					<dc:creator>Rad</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Lukas,</p>
<p>Thanks for writing in.</p>
<p>It is intentionally disabled for X. X uses its own media sizes for theme and woocommerce. X dynamically uses image sizes based on content layout size. It&#8217;s not good with the responsive theme to use static and small images just like woocommerce default sizes. Imagine a 150&#215;150 thumbnail size being displayed on single column layout on mobile which could have 400px width. </p>
<p>Cheers!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/woocommerce-product-image-sizes-missing/#post-184215</guid>
					<title><![CDATA[Reply To: Woocommerce Product Image Sizes missing]]></title>
					<link>https://theme.co/archive/forums/topic/woocommerce-product-image-sizes-missing/#post-184215</link>
					<pubDate>Fri, 16 Jan 2015 08:32:35 +0000</pubDate>
					<dc:creator>&#321;ukasz W</dc:creator>

					<description>
						<![CDATA[
						<p>The problem is that my site have super low scores at Google Page Speed since it&#8217;s using full resolution photos for catalog listing and product pages (like 2000x2000px), so my images take around 10mb bandwith for main page! Resizing each photo manually before uploading to wordpress is kind of step back when it comes usability. </p>
<p>I would like to set it to reasonable amount considering my needs. For example for my market I don&#8217;t care about retina displays at all since there is super low amount of them.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/woocommerce-product-image-sizes-missing/#post-184835</guid>
					<title><![CDATA[Reply To: Woocommerce Product Image Sizes missing]]></title>
					<link>https://theme.co/archive/forums/topic/woocommerce-product-image-sizes-missing/#post-184835</link>
					<pubDate>Sat, 17 Jan 2015 02:40:42 +0000</pubDate>
					<dc:creator>Rad</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Lukaz,</p>
<p>2000&#215;2000 is so big, normally, X generated sizes are just between 600px to 1200px as the layout width is just almost 1200px. Unless you&#8217;re setting your layout to 2000px screen width?</p>
<p>Your 2000px image should be scaled based on registered image sizes. And if not and since some older uploads never get converted, then you may try using force regenerate thumbnails to resize/crop them for you.</p>
<p>And if you still wish to enable woocommerce image size options then follow this.</p>
<p>Because this requires a template change, I&#8217;d advise that you setup a <a href="http://theme.co/x/member/kb/how-to-setup-child-themes/" title="Child Themes" target="_blank" rel="nofollow">child theme</a>. This allows you to make code changes that won&#8217;t be overwritten when an <strong>X</strong> 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>Add this code at your child theme&#8217;s functions.php</p>
<pre><code>function enable_product_settings() {
   remove_filter( &#039;woocommerce_product_settings&#039;, &#039;x_woocommerce_remove_plugin_settings&#039; );
}

add_filter(&#039;admin_init&#039;, &#039;enable_product_settings&#039;, 20 );

add_action(&#039;init&#039;, &#039;default_woocommerce_thumbnails&#039;, 99 );

function default_woocommerce_thumbnails() {
    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_thumbnail_v2&#039;, 99 );
}

function x_woocommerce_shop_thumbnail_v2() {

  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;;

}
</code></pre>
<p>Then just use force regenerate thumbnails plugin right after changing your image sizes. Using small image is not really good, we can&#8217;t cover any issue it may cause. If you worry about performance, then caching and CDN is a good choice for hosting medium to large images.</p>
<p>Hope this helps.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/woocommerce-product-image-sizes-missing/#post-186904</guid>
					<title><![CDATA[Reply To: Woocommerce Product Image Sizes missing]]></title>
					<link>https://theme.co/archive/forums/topic/woocommerce-product-image-sizes-missing/#post-186904</link>
					<pubDate>Tue, 20 Jan 2015 14:20:28 +0000</pubDate>
					<dc:creator>Nicolas Z</dc:creator>

					<description>
						<![CDATA[
						<p>Hi support,</p>
<p>On the same subject, I have problems with the image size of the simple product. It seems that the featured image product is not resize..<br />
However the products lists looks fine.</p>
<p>I am using the last versions for X, visual composer and woocommerce shortcodes for visual composer. </p>
<p>I can&#8217;t find where the problem comes from.</p>
<p>Thanks for your help,</p>
<p>Greatings</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/woocommerce-product-image-sizes-missing/#post-186907</guid>
					<title><![CDATA[Reply To: Woocommerce Product Image Sizes missing]]></title>
					<link>https://theme.co/archive/forums/topic/woocommerce-product-image-sizes-missing/#post-186907</link>
					<pubDate>Tue, 20 Jan 2015 14:22:58 +0000</pubDate>
					<dc:creator>Nicolas Z</dc:creator>

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

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/woocommerce-product-image-sizes-missing/#post-187142</guid>
					<title><![CDATA[Reply To: Woocommerce Product Image Sizes missing]]></title>
					<link>https://theme.co/archive/forums/topic/woocommerce-product-image-sizes-missing/#post-187142</link>
					<pubDate>Tue, 20 Jan 2015 20:46:09 +0000</pubDate>
					<dc:creator>Rad</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Nicolas,</p>
<p>Conversion works, and in fact successful. Though, it&#8217;s not picking the X&#8217;s registered image sizes. It&#8217;s picking your product attachments.</p>
<p>These are the sizes,</p>
<pre><code>//
    // Featured images.
    //
    // Theme support for featured images and thumbnail sizes.
    //

    add_theme_support( &#039;post-thumbnails&#039; );
    set_post_thumbnail_size( 100, 9999 );
    add_image_size( &#039;entry&#039;,                   x_post_thumbnail_width(),      9999,                                   false );
    add_image_size( &#039;entry-cropped&#039;,           x_post_thumbnail_width(),      x_post_thumbnail_cropped_height(),      true  );
    add_image_size( &#039;entry-fullwidth&#039;,         x_post_thumbnail_width_full(), 9999,                                   false );
    add_image_size( &#039;entry-cropped-fullwidth&#039;, x_post_thumbnail_width_full(), x_post_thumbnail_cropped_height_full(), true  );</code></pre>
<p>And this is what being shown,</p>
<p><code>&lt;img width=&quot;2000&quot; height=&quot;1333&quot; src=&quot;http://jolane7.ch/wp-content/uploads/2015/01/08.2000.jpg&quot; class=&quot;attachment-entry-full-ethos wp-post-image&quot; alt=&quot;08.2000&quot;&gt;</code></p>
<p><strong>attachment-entry-full-ethos</strong> is from old setup as the sizing is not stack specific anymore. Could be that you have still older setting (re-saving wont fix it), or you have older customization that still uses this. Would you mind letting me know what are they? It might helpful if you can disable them while we&#8217;re testing.</p>
<p>If you can provide your ftp login credentials too, then that will be helpful and I can directly check your templates.</p>
<p>Thanks!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/woocommerce-product-image-sizes-missing/#post-187569</guid>
					<title><![CDATA[Reply To: Woocommerce Product Image Sizes missing]]></title>
					<link>https://theme.co/archive/forums/topic/woocommerce-product-image-sizes-missing/#post-187569</link>
					<pubDate>Wed, 21 Jan 2015 11:23:50 +0000</pubDate>
					<dc:creator>Nicolas Z</dc:creator>

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

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/woocommerce-product-image-sizes-missing/#post-188232</guid>
					<title><![CDATA[Reply To: Woocommerce Product Image Sizes missing]]></title>
					<link>https://theme.co/archive/forums/topic/woocommerce-product-image-sizes-missing/#post-188232</link>
					<pubDate>Wed, 21 Jan 2015 19:31:21 +0000</pubDate>
					<dc:creator>Rad</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Nicolas,</p>
<p>I was able to connect once, but then got kicked out and unable to connect after the first try. There could be a firewall doing that. Please check.</p>
<p>And for the meantime and since new update is available, you may wish to update your copies as there are newly added fixes and feature changes. Please check this <a href="https://theme.co/x/member/forums/topic/release-notes-x-v3-2-0-x-shortcodes-v3-0-0/" rel="nofollow">https://theme.co/x/member/forums/topic/release-notes-x-v3-2-0-x-shortcodes-v3-0-0/</a> before doing so. Do some backups just in case your update fails.</p>
<p>Thanks!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/woocommerce-product-image-sizes-missing/#post-189747</guid>
					<title><![CDATA[Reply To: Woocommerce Product Image Sizes missing]]></title>
					<link>https://theme.co/archive/forums/topic/woocommerce-product-image-sizes-missing/#post-189747</link>
					<pubDate>Fri, 23 Jan 2015 09:14:18 +0000</pubDate>
					<dc:creator>Nicolas Z</dc:creator>

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

					
					
				</item>

					
		
	</channel>
	</rss>

