• Resolved snakedevil88000

    (@snakedevil88000)


    Hello ^^

    By default (I think), a link to the profile of the user who comments exists, it is not present for Mas Videos (reviews), how to add it please? Thanks again for the support and this great plugin !

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter snakedevil88000

    (@snakedevil88000)

    It’s OK i think ^^

    I use this functions :

    add_filter( 'comment_author', 'my_site_comment_author' );
    function my_site_comment_author( $author ) {
    	global $comment;
    	if ( $comment->user_id )
    		$author = '<a href="' . get_author_posts_url( $comment->user_id ) . '">' . $author . '</a>';
    	return $author;
    }

    Glad your issue is resolved before we had a chance to respond. Please do not hesitate to reach us if you have any other questions.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Link to user profile for review’ is closed to new replies.