I would like to delete the text “Archiv für die Kategorie:” on the category pages.
Hey Oversberg!
Please add following code to Functions.php file in Appearance > Editor
add_filter('avf_title_args', 'avia_fix_category_title', 10, 2);
function avia_fix_category_title($args,$id)
{
if (is_category)
{
$args['title'] = single_cat_title('',false);
}
return $args;
}
Best regards,
Yigit