Display WooCommerce Category Image Above Products
add_action( 'wpex_hook_header_after', function() { if ( ! is_singular( 'product' ) || ! function_exists( 'wpex_get_first_term_id' ) || ! function_exists( 'wpex_get_term_thumbnail_id' ) ) { return; } // Get first category $term = wpex_get_first_term_id( get_the_ID(), 'product_cat' ); // No terms, lets not do…