Split: Excerpt Length Set

#403172
Viewing 2 replies - 1 through 2 (of 2 total)
  • I mean how can I limit Characters when I use %wc_shortdesc%?

    Hello,

    Thank you for contacting Rank Math and bringing your concern to our attention.

    I’ve separated your concern to a new ticket so we can assist you accordingly.

    If you wanted to limit the product description, you can use the is_product() in the filter. It should look like this:

    add_filter( 'rank_math/frontend/description', function( $description ) {
    	if(is_product()){
    		return wp_html_excerpt($description, 155);
    	}
    	return $description;
    });

    I hope that helps.

    Thank you.

    Hello,

    Since we did not hear back from you for 15 days, we are assuming that you found the solution. We are closing this support ticket.

    If you still need assistance or any other help, please feel free to open a new support ticket, and we will be more than happy to assist.

    Thank you.

Viewing 2 replies - 1 through 2 (of 2 total)

The ticket ‘Split: Excerpt Length Set’ is closed to new replies.