woocommerce remove This is where you can add new products to your store in taxonomy description
<?php
//show category description
$term_object = get_queried_object();
?>
<div class="woocommerce-category-description">
<div class="title"><?php echo $term_object->name; ?></div>
<div class="description"><?php echo $term_object->description; ?></div>
</div>