Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #451155

    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 :)

    #451201

    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?

    #452104

    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

    #458285

    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

    #458429

    Hi!

    Please add following code to Quick CSS

    .tag h3 {
      font-size: 20px!important;
    }

    Best regards,
    Yigit

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