Limit WooCommerce product title to a specific length (and add '…')
I'm trying to limit the number of characters our WooCommerce product titles have, I found this PHP code: add_filter( 'the_title', 'shorten_woo_product_title', 10, 2 ); function shorten_woo_product_title( $title, $id ) { if ( ! is_singular( array( 'product' ) ) && get_post_type(…