bp_nouveau_activity_secondary_avatars( $action,  $activity )

Adds a small avatar to activity meta action if the activity is between a connection or group.

Description

Source

File: bp-templates/bp-nouveau/includes/activity/functions.php

406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
function bp_nouveau_activity_secondary_avatars( $action, $activity ) {
    switch ( $activity->component ) {
        case 'groups':
        case 'friends':
            // Only insert avatar if one exists.
            if ( $secondary_avatar = bp_get_activity_secondary_avatar() ) {
                $reverse_content = strrev( $action );
                $position        = strpos( $reverse_content, 'a<' );
                $action          = substr_replace( $action, $secondary_avatar, -$position - 2, 0 );
            }
            break;
    }
 
    return $action;
}

Changelog

Changelog
Version Description
BuddyPress 3.0.0 Introduced.

Questions?

We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.