Hi there,
they store it in the term meta, so for now you would need to create a shortcode for that. Try this snippet:
function show_woo_cat_image($html) {
if ( is_product_category() ){
global $wp_query;
$cat = $wp_query->get_queried_object();
$thumbnail_id = get_term_meta( $cat->term_id, 'thumbnail_id', true );
$image = wp_get_attachment_url( $thumbnail_id );
if ( $image ) {
$html = '<img src="' . $image . '" alt="' . $cat->name . '" />';
return $html;
}
}
}
add_shortcode('show_cat_image', 'show_woo_cat_image' );
Then add [show_cat_image] shortcode where you want it displayed.