Tagged: portfolio items, tag archive, Tags, template
Hello,
Am I able to edit the template for portfolio tag archive pages, like the one below?
I’d like the <h1> to change from “Tag Archive for:” to “Portfolio of:”
And I would like to remove the <h3> that says “Portfolio Items” completely.
Thank you :)
I’ve also now created the same tag for blog posts, is there a way of moving portfolio items above posts on the archive page?
Hi,
Open /framework/php/function-set-avia-frontend.php and look for line 958:
$output = __('Tag Archive for:','avia_framework')." ".single_tag_title('',false);
Replace it by this:
$output = __('Portfolio of:','avia_framework')." ".single_tag_title('',false);
Regards,
Josue
Great, thank you.
How do I edit the font size of the <H3>POSTS</H3> and <h3>PORTFOLIO ITEMS</H3> also on the /tag/ pages?
Thanks