Hi there,
Thanks for writing in! Because this requires a template change, I’d advise that you setup a child theme. This allows you to make code changes that won’t be overwritten when an X update is released. After your child theme is setup, please review how we recommend making template changes in Customization Best Practices.
Then add the following code into your child theme’s functions.php file.
function add_shop_extra(){
echo '<h3 class="my-extra-info">This is sample text</h3>';
}
add_action('woocommerce_before_shop_loop', 'add_shop_extra');
Hope that helps.