Limit Woocommerce Product Title Number of Characters
-
I found this 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( $id ) === 'product' ) { return substr( $title, 0, 30); // change last number to the number of characters you want } else { return $title; } }
It works but I want to add the “…” at the end of the product title and I don’t know how.
The page I need help with: [log in to see the link]
Viewing 8 replies - 1 through 8 (of 8 total)
Viewing 8 replies - 1 through 8 (of 8 total)
- The topic ‘Limit Woocommerce Product Title Number of Characters’ is closed to new replies.