OK solved it myself ??
function brands_on_single_product_page() {
global $product;
$brands = get_the_terms( $product->get_id() , 'product_brand');
foreach( $brands as $brand ) {
if($brand->name == 'KB') {
echo 'link to somewhere ';
}
}
}
add_action('woocommerce_before_add_to_cart_form', 'brands_on_single_product_page', 6);