Skip to:
Content
Pages
Categories
Search
Top
Bottom

How to show full comment in the activity


  • tronix-ex
    Participant

    @tronix-ex

    Hi There,

    I don’t want [Read More] excerpt, I want to show full comment in the profile activity.

    Thanks,

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

  • danbp
    Moderator

    @danbp

    Hi @tronix-ex,

    Give this a try. Read more will only appear again if you use more than 500 000 characters…
    Add to bp-custom.php

    function bpfr_excerpt_length( $length ) {	
    
    $length = 500000; // adjust the length to desired number of characters 
    
    // Is the current page a user's activity stream page ?
    	if( bp_is_user_activity() ) {
    	  return $length;
    	}
    }
    add_filter( 'bp_excerpt_length', 'bpfr_excerpt_length', 11, 1 );

    tronix-ex
    Participant

    @tronix-ex

    Its not working..


    tronix-ex
    Participant

    @tronix-ex

    I figured this out danbp you can close the topic please.

Viewing 3 replies - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.
Skip to toolbar