Hello,
Use the woocommerce_after_shop_loop_item hook in child theme functions.php if you want to show additional content after the price https://www.businessbloomer.com/woocommerce-visual-hook-guide-archiveshopcat-page/
For example
add_action ( 'woocommerce_after_shop_loop_item', 'custom_function' ) ;
Regards