Change user profile URL in activity stream?
-
Hi,
I want to change the user profile url for the activity stream, so that these are linked to a custom profile page. Ive found the link below, but in my case this only edits the link of the user avatar and not of the in-text link in the activity stream like: %avatar% “user_x just signed up”. Now the %avatar% is linked to the custom profile page but the user_x is still linked to the BP profile page.. How to fix this?function imborx_profile_link( $link ) { global $activities_template; if( $link != bp_loggedin_user_domain() ) $link = esc_url( get_author_posts_url( $activities_template->activity->user_id ) ); return $link; } add_filter( 'bp_get_activity_user_link', 'imborx_profile_link', 15, 1 );
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.