Hi,
Do you have any proposal for the issue i mentioned in my previous post?
How can i remove the “Category” word from the archive blog posts page header/title? Can you please help in which php file is the relevant code? I tried adding in the functions.php the following code with no succees:
function remove_category_word( $title ) {
if ( is_category() ) {
$title = single_cat_title( ”, false );
}
return $title;
}
add_filter( ‘get_the_archive_title’, ‘remove_category_word’ );
I am guessing the theme is not using the get_the_archive_title’ filter.
Thank you,
Ilias