Hi i did it but doesnt work. maybe problem is for my plugin. I installed plugin “Theme My Login” (good plugin ?? ) and changed the code like this:
wp-content/themes/p2 and find functions.php on line 51:
$name_map[$name]['replacement'] = '<a href="' . esc_url( '/mentions/' . $username ) . '/">' . esc_html( $name ) . '</a>';
replaced by:
$name_map[$name]['replacement'] = '<a href="' . esc_url( '/?mentions=' . $username ) . '&action=profile">' . esc_html( $name ) . '</a>';
it lists all mentioned posts for that profile.
so i have question, how can i make it work only for current user?
because its seen for all users now.