105 
Display WooCommerce Brands @ Loop/Shop Pages
A freelance client hired me to display each product brand in the shop/product archive pages. The WooCommerce Brands plugin, in fact, only adds these in the Single Product Page.
So, this is how it’s done. Enjoy!

PHP Snippet: Display “Brands” @ WooCommerce Shop & Product Archives – WooCommerce Brands Plugin
/**
* @snippet Display "Brands" @ Shop/Loop - WooCommerce
* @how-to Get tutoraspire.com FREE
* @author Tutor Aspire
* @compatible WooCommerce 5
* @donate $9 https://tutoraspire.com
*/
add_action( 'woocommerce_after_shop_loop_item_title', 'tutoraspire_show_woocommerce_brands_loop', 8 );
function tutoraspire_show_woocommerce_brands_loop() {
global $post;
echo get_brands( $post->ID );
}