• Resolved horsmanzach

    (@horsmanzach)


    Hi, great plugin. One issue I am having is that all my descriptions for each step are getting cut off with […] How do I make this longer so they don’t get cut off? Thanl you

Viewing 1 replies (of 1 total)
  • Plugin Support baljitdhanjal

    (@baljitdhanjal)

    Hi @horsmanzach,

    To change the length of description please add given below code in your active theme’s functions.php file.

    function pp_custom_excerpt_length( $length ) {
    	GLOBAL $post;
    	if( $post->post_type == 'process_posts' ){
    		return 100;	//change value according to your requirement
    	}
    	return $length;
    }
    add_filter( 'excerpt_length', 'pp_custom_excerpt_length', 999 );

    Thanks

Viewing 1 replies (of 1 total)
  • The topic ‘How to allow more characters in the description?’ is closed to new replies.