Hello. I found a post from a couple of years back recommending editing framework > php > function-set-avia-frontend.php to remove the “Tag Archive for:” from the title on the Tag archive. That doesn’t work.
How do I do this?
Hey Circle of Blue!
That should be working. It’s around line 900 in the file.
Cheers!
Elliott
It shows how to change the “Category Archive for” text on this page, but I don’t see “Tag Archive for” in that file:
https://kriesi.at/support/topic/changing-text-on-archivetag-pages/
Can you please look at this and tell me where to find the Tag Archive text?
Answer please??
Hi!
Sorry for the late reply, please add following code to Functions.php file in Appearance > Editor
add_filter('avf_which_archive_output','avia_new_tag_archive');
function avia_new_tag_archive(){
if (is_tag())
{
$output = __('','avia_framework')." ".single_tag_title('',false);
}
return $output;
}
Cheers!
Yigit