Home › Forums › Theme support › Prestige theme › Reply To: Prestige theme
Hi,
sorry, but most of the user don’t want to have the single link to the team page, that’s why we’ve removed it after the theme release.
But that’s not a big problem, you can solve the problem very easy. Just open the file “functions.php” in the root of the theme and add this code to the end of the file:
function filter_team_title( $in ) {
global $post;
if( get_post_type() == 'team' && ! is_singular( 'team' ) ) {
$in = "<a href='".get_permalink()."'>$in</a>";
}
return $in;
}
add_filter( 'the_title' , 'filter_team_title' );
This will add the link to the single team page.