• Resolved tschak89

    (@tschak89)


    Hi,
    how can i show a full description of my group in the groups directory? The automatic excerpt isn′t really looking good at very short group descriptions.
    Best regards,
    Andreas

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

    (@johnweru)

    Hey there,

    Thanks for reaching out to us

    In this case, you can add the following code within the functions.php file of your theme, in order to control the excerpt length:

    add_filter( 'bp_excerpt_length',   'change_theexcerpt_length',10,1 );
    function change_theexcerpt_length($length){
    	$length = '2000'; // This can be changed to any value based on the descriptions length
    	return $length;
    }

    I hope this helps

    Kind Regards

    • This reply was modified 3 years, 3 months ago by john.
Viewing 1 replies (of 1 total)
  • The topic ‘Groups Directory | Full description’ is closed to new replies.