Hi Rebecca,
adding author links to the author names would be possible by adding the following code snippet to your theme’s functions.php file (replacing the one I posted above):
if( function_exists('get_coauthors') ) {
add_filter( 'sya_the_authors', 'my_sya_filter_authors', 10, 2 );
function my_sya_filter_authors( $author, $post ) {
$coauthors = get_coauthors( $post->ID );
$authorsCollection = array();
foreach( $coauthors as $coauthor ) {
if( $coauthor->display_name ) {
$authorsCollection[] = '<a href="' . get_author_posts_url( $coauthor->ID, $coauthor->user_nicename ) . '">' . $coauthor->display_name . '</a>';
}
}
return implode(', ', $authorsCollection);
}
}
As for removing the parenthesis around the author names: That not possible as this part of the plugin’s output that can’t be hooked into. You could be trying to use CSS to hide the text while keeping the links with:
.sya_container .sya_author {
color: transparent;
}