add_action( ‘woocommerce_before_shop_loop_item_title’, ‘aq_display_brand_before_title’ );
function aq_display_brand_before_title(){
global $product;
$product_id = $product->get_id();
$brands = wp_get_post_terms( $product_id, ‘pwb-brand’ );
foreach( $brands as $brand ) echo ‘<p>’.$brand->name.'</p>’;
}
This code is not working
https://www.socialbrandingplatform/e-style/shop