This is theme related, but if you can give me a link to a live example, I might be able to give you some code
Hello,
that is nice, thanks for your answer.
The Link is: https://www.wordpress-star.de/?cmp_bypass=f9972b4d5956df4904f1958718031e36 and then “forum” in the menu.
Currently only Bypass-Link is possible, due to the fact that the site is not online.
ok, I can not help unless I can see an example – iIneed to look at what is downloaded to my PC’s browser
Yes and I posted you a link where you can see it … ?
Click on the link and then in the menu on the link “Forum”
I took a look, it is theme related, but I cannot offer a fix.
Ok, thank you anyway.
Then I have to ask in other forum.
Found solutions in an other forum, just to add in the functions.php:
add_filter( 'get_the_archive_title', function ($title) {
if ( is_category() ) {
$title = single_cat_title( '', false );
} elseif ( is_tag() ) {
$title = single_tag_title( '', false );
} elseif ( is_author() ) {
$title = '<span class="vcard">' . get_the_author() . '</span>' ;
} elseif ( is_tax() ) { //for custom post types
$title = sprintf( __( '%1$s' ), single_term_title( '', false ) );
} elseif (is_post_type_archive()) {
$title = post_type_archive_title( '', false );
}
return $title;
});