Format Brand value in Category view [closed]

If i’m understood properly, you just have to remove the anchor from your code. Simply use:

echo $brand->name;

Instead of:

echo '<a href="'.get_term_link($brand->term_id).'">'.$brand->name.'</a>';

This will just echo the name of your brand. If you want to style it, you can add a class to it as the following:

echo '<span class="my-brand">'.$brand->name.'</span>';

And then use the proper style in your CSS file to style it. Such as:

.my-brand {
    color:#ddd;
}