BuddyDev

Search

[Resolved] Disable activity comment button

  • Participant
    Level: Guru
    Posts: 885
    Tosin on #45799

    Hello,

    How can I disable the activity comment button on all activity types except ‘new_blog_post’ and ‘new_classified’ activity type

  • Keymaster
    (BuddyDev Team)
    Posts: 24237
    Brajesh Singh on #45804

    Hi Tosin,
    Thank you for the question.

    You may want to put it in your bp-custom.php and see if it works

    
    // Disable comment for all type except specified in the list.
    add_filter( 'bp_activity_can_comment', function ( $can, $activity_type ) {
    	return in_array( $activity_type, array( 'new_classified', 'new_blog_post' ) );
    }, 10, 2 );
    
    

    Regards
    Brajesh

  • Participant
    Level: Guru
    Posts: 885
    Tosin on #45817

    it worked

    Thanks

  • Keymaster
    (BuddyDev Team)
    Posts: 24237
    Brajesh Singh on #45825

    You are welcome.

The topic ‘ [Resolved] Disable activity comment button’ is closed to new replies.

This topic is: resolved