Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #701431

    I would like to delete the text “Archiv für die Kategorie:” on the category pages.

    #701513

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.