woocommerce related product title length

Problem solve based on this article https://designsmaz.com/how-to-short-woocommerce-products-title/#comment-76957

Basically I just replace the <?php the_title(); ?> to

<?php 
$shorttitle = mb_substr(the_title('','',FALSE),0,45); 

echo $shorttitle; 
if (strlen($shorttitle) >44){ 
echo '&hellip;'; 

} 
?>