Hi again.
If you want to show the brand logo, you need to edit the source code at file wp-content/plugins/premmerce-woocommerce-brands/views/frontend/brands-meta.php like this:
<span class="product-brand tagged_as">
<?php _e('Brand', 'premmerce-brands'); ?>:
<?php
$imageURL = wp_get_attachment_image_url(get_term_meta($brand->term_id, 'thumbnail_id', true), 'medium');
$imageURL = $imageURL ?: plugins_url('../../assets/frontend/img/placeholder.png', __FILE__);
?>
<a href="<?= get_term_link($brand->slug, 'product_brand'); ?>"><img src="<?= $imageURL; ?>" alt="<?= $brand->name; ?>"></a>
</span>
Please check it again.
Thanks.