Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #579824

    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?

    #580027

    Hey Circle of Blue!

    That should be working. It’s around line 900 in the file.

    Cheers!
    Elliott

    #590317

    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/

    #591778

    Can you please look at this and tell me where to find the Tag Archive text?

    #593251

    Answer please??

    #593408

    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

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