Hello
I have already made both options (edit function-core.php and css trick) again but does not work… it still appears, trying put $output before “single_cat_title(”, false);” too… plus, appears in spanish…
function kleo_title()
{
$output = “”;
if (is_tag()) {
$output = __(‘Tag Archive for:’,’kleo_framework’).” “.single_tag_title(”,false);
}
elseif(is_tax()) {
$term = get_term_by(‘slug’, get_query_var(‘term’), get_query_var(‘taxonomy’));
$output = $term->name;
}
elseif ( is_category() ) {
//$output = __(‘Archive for category:’, ‘kleo_framework’) . “sss ” . single_cat_title(”, false);
single_cat_title(”, false);
}