• Resolved roni_gabriel

    (@roni_gabriel)


    Hello. Is it possible to turn off the post activity like but keep the comment/reply like reaction enabled for Buddypress? I have another plugin that may fill our purpose for the reaction for posts, but yours will work for us with the comment/replies.

    Thank you.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter roni_gabriel

    (@roni_gabriel)

    I think I figured it out… a simple css rule? Is this the best way?

    .wpulike {
    display: none;
    }

    Plugin Author Alimir

    (@alimir)

    Hi @roni_gabriel
    Please try to disable auto display option and use the following hook:

    function wp_ulike_custom_put_buddypress() {
    	echo wp_ulike_buddypress('put');
    }
    add_action( 'bp_activity_comment_options', 'wp_ulike_custom_put_buddypress', 25 );

    This hook works — Thanks Alimir!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Activating For Comment Reply Only’ is closed to new replies.