Skip to:
Content
Pages
Categories
Search
Top
Bottom

[Resolved] Group description excerpt – need to change it – where ?


  • 4ella
    Participant

    @4ella

    Hello where can I change Group description excerpt ? I would like to increase the length a little bit.

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

  • r-a-y
    Keymaster

    @r-a-y

    Apply a filter to “bp_get_group_description_excerpt” (located in bp-groups/bp-groups-templatetags.php).

    The default is 20 words.

    Try something like this in your theme’s functions.php:

    function my_group_excerpt() {
    global $groups_template;
    
    $group = $groups_template->group;
    return bp_create_excerpt( $group->description, 40 ); // change 40 to anything you want
    }
    add_filter( 'bp_get_group_description_excerpt', 'my_group_excerpt' );

    Code hasn’t been tested.


    4ella
    Participant

    @4ella

    @r-a-y
    Working perfectly !! thank you very much !!
    I suggest to create the “snippets” TAB on this website and to put codes like the one above there.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Resolved] Group description excerpt – need to change it – where ?’ is closed to new replies.
Skip to toolbar