Hello,
Also, you can try to add something like the following code in your child theme functions.php file.
add_filter( 'the_title', 'shorten_my_title', 10, 2 );
function shorten_my_title( $title, $id ) {
if ( is_shop() && get_post_type( $id ) === 'product' && strlen( $title ) > 50 ) {
return substr( $title, 0, 50 ) . '...'; // change 50 to the number of characters you want to show
} else {
return $title;
}
}
Regards,
Rose Tyler.