Hi!
I tried to use the code below on my website, but it doesn’t work. Can you help me?
The demo website: https://simoneboccuzzi.com/demo/shop
THANK YOU!
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 '<a href="'.get_term_link($brand->term_id).'" class=“brandshoppage”>’;
echo $brand->name;
echo '</a>';
}
}