Hiding Short Description in Shop Page, WooCommerce

Try using one of the available shop loop item actions and remove call to WooCommerce template function woocommerce_template_single_excerpt using remove_action().

These actions are called in woocommerce/templates/content-product.php.

E. g. remove_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_single_excerpt' );. Make sure to match $priority with the $priority it was originally added.