Hello @flukkini,
To hide the category and display the category title, you have to go through the child theme.
To know how to activate and create the child theme please follow the link given below:
http://wptravel.io/how-to-create-a-child-theme/
After activating the child theme in your child theme functions.php add below given code.
function wp_travel_child_remove_cat_titles($title) {
if ( is_archive() ) {
$title = single_cat_title( '', false );
} elseif ( is_tag() ) {
$title = single_tag_title( '', false );
} elseif ( is_author() ) {
$title = '<span class="vcard">' . get_the_author() . '</span>' ;
}
return $title;
}
add_filter( 'get_the_archive_title', 'wp_travel_child_remove_cat_titles' );
Hope this helps.
Let us know if you have any confusion regards.
Thank you.
Regards!!