Reply To: Link sheet names to profile users ?

#10647
Anonymous
Inactive

Totally forgot to let the the code I used (maybe for next users)

on the sheet, put a link on user’s name to their own profile page (they need to be logged in)

function user_planning_link($display_signup, $signup) {
$display_signup = '<a href=\''.get_bloginfo('url').'/?author='.$signup->user_id.'\' target=\'_blank\'>'.$signup->firstname.' '.$signup->lastname.'</a>';
return $display_signup;
}
add_filter( 'pta_sus_display_signup_name', 'user_planning_link', 10, 2);

I hope you received the french translation of the plugin.

++