Tagged: 

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #211870

    Hi,

    Is there any way I can have specific tags pages have the tag as the title instead of “posts” and also have post excerpts with a read more link instead of entire posts?

    Thanks

    Jonny

    #212154

    Hi deyowulf!

    1) You can change the headline with following code – insert it at the bottom of functions.php

    
    add_filter('avf_tag_label_names', 'avia_change_tag_headline', 10, 1);
    function avia_change_tag_headline($headline){
    $headline = single_tag_title('', false);
    return $headline;
    }
    

    2) See https://kriesi.at/support/topic/set-post-length-in-archive/

    Best regards,
    Peter

    #212213

    Thanks Pete. How might I go about changing the color of the headline?

    #212226

    Hi!

    By headline, you mean the page title? You can use this on Quick CSS:

    
    #top .alternate_color.title_container .main-title a {
    color: blue;
    }

    Cheers!
    Ismael

    #212248

    Yeah like “asian recipes” in this page. This code didn’t work for me btw.

    http://www.jonnyfreesh.com/tag/asian-recipes/

    Thanks

    #212255

    Hi!

    Please try following code instead

    .main_color h3.post-title {
    color: red !important;
    }

    Regards,
    Yigit

    #212586

    that worked thanks :)

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Tags Pages’ is closed to new replies.