Thanks Ankit, I was able to solve it with the help of your chat support. Appreciate it! Leaving the working code here for people that might need it:
function prefix_category_title($title)
{
if (is_tax()) {
$title = single_term_title(”, false);
}
return $title;
}
add_filter(‘get_the_archive_title’, ‘prefix_category_title’);