@$username", $content ); } return $content; } add_filter( 'bp_activity_new_update_content', 'bp_activity_at_name_filter' ); add_filter( 'groups_activity_new_update_content', 'bp_activity_at_name_filter' ); add_filter( 'pre_comment_content', 'bp_activity_at_name_filter' ); add_filter( 'group_forum_topic_text_before_save', 'bp_activity_at_name_filter' ); add_filter( 'group_forum_post_text_before_save', 'bp_activity_at_name_filter' ); add_filter( 'bp_activity_comment_content', 'bp_activity_at_name_filter' ); function bp_activity_make_nofollow_filter( $text ) { return preg_replace_callback( '||i', 'bp_activity_make_nofollow_filter_callback', $text ); } function bp_activity_make_nofollow_filter_callback( $matches ) { $text = $matches[1]; $text = str_replace( array( ' rel="nofollow"', " rel='nofollow'"), '', $text ); return ""; } ?>