The effects of alcohol on sustanon 250 leucine for – real weight loss & bodybuilding benefits?
Share:
Notifications
Clear all

[Solved] display name

3 Posts
2 Users
1 Likes
652 Views
Posts: 7
Topic starter
(@ngocvy)
Active Member
Joined: 2 years ago

Dear support team,

Thank you so much for your great plugin.

But I have a issue, pls help me out.

Is there anyway to show the name of author comment as display name instead of their mail'sname

as below 

image
image
2 Replies
Asti
Posts: 7114
 Asti
Support
(@asti)
Illustrious Member
Joined: 6 years ago

@ngocvy,

You should change the value of the "Display name publicly as" option. Navigate to Dashboard > Users admin page edit the user profile and change the value of the option. 

Display name as

The plugin just updates the first and last names, but not the value of the "Display name publicly as" option. 

Posts: 7
Topic starter
(@ngocvy)
Active Member
Joined: 2 years ago

add this code to function for who stuck like me

add_filter("wpdiscuz_comment_author", 'custom_comment_author', 10, 2 );
function custom_comment_author( $authorName, $commentID ) {

$comment = get_comment( $commentID );
$user = get_user_by( 'email', $comment->comment_author_email );

if( !$user ):

return $authorName;

else:

$firstname = get_user_meta( $user->ID, 'first_name', true );
$lastname = get_user_meta( $user->ID, 'last_name', true );

if( empty( $firstname ) OR empty( $lastname ) ):

return $authorName;

else:

return $firstname . ' ' . $lastname;

endif;

endif;

}

Share: