Prevent the product title from being shortned in wp-admin in WooCommerce

Prevent the product title from being shortned in wp-admin in WooCommerce on child sites.

Snippet Type

Execute on Child Sites

Snippet

add_filter( 'the_title', 'shorten_woo_product_title', 10, 2 );
function shorten_woo_product_title( $title, $id ) {
    if ( ! is_admin() && ! is_singular( array( 'product' ) ) && get_post_type( $id ) === 'product' ) {
        $title = wp_trim_words( $title, 4, '...' ); // change last number to the number of words you want
    }
    return $title;
}

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.