Copy the archive-product.php file from the WooCommerce plugin directory to the woocommerce folder in your theme’s root directory. Add the following code to them:
global $wp_query; $cat = $wp_query->get_queried_object(); $thumbnail_id = get_term_meta($cat->term_id, 'thumbnail_id', true); $thumb_url = wp_get_attachment_image_src( $thumbnail_id, 'thumbnail' ); if ($thumb_url) { echo '<img src="' . $thumb_url[0] . '" width="150" height="150" alt="' . $cat->name . '" />'; }