Remove product description from related products in Hestia
To remove the product description that appears in the Related Products section, add a small code snippet to your child theme's functions.php file.

If you want to remove the product description in related products, create a child theme and add the following code to the functions.php file of your child theme.
function remove_related_products_short_description( $input ) {
if( is_product() ) {
return 0;
}
return $input;
}
add_filter( 'hestia_shop_excerpt_words', 'remove_related_products_short_description' );