BuddyPress Activity Without Read More
Do you want to diable the Read More link from the BuddyPress activity entry and show the complete activity content? if yes, you may use the following code.
1 2 3 4 5 6 7 8 9 10 | /** * Show all activity content instead of the trimmed content with read more. */ function buddydev_show_all_activity_content() { remove_filter( 'bp_get_activity_content_body', 'bp_activity_truncate_entry', 5 ); remove_filter( 'bp_get_activity_content', 'bp_activity_truncate_entry', 5 ); } add_action( 'bp_init', 'buddydev_show_all_activity_content' ); add_action( 'bp_activity_sent_reply_to_reply_notification', 'buddydev_show_all_activity_content' ); |
All we are doing is asking BuddyPress to not trim the entries.
Have fun!