Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #267571

    Hello
    I have the same question as this fellow:

    I can see that the admin area allows you to turn on and off various meta elements for single posts, however, all show up as default on the main news page where multiple posts are displayed. Here’s my very basic new working example:

    Ideally, just the post date under the title would be fine, but the client may also want categories; please advise. Thank you in advance.

    #267584

    Hi!

    The hiding may be doable with CSS, can you post a link to the mains news page you mention?

    Regards,
    Josue

    #267587

    Sorry, I had the links but they seemed ot have disappeared!

    Here you go –

    http://beta.pci-group.com/news/

    And this is the single page where I have just the date meta – I’d like to be able to hide that last separator after the date, too if CSS can easily hide that?

    http://beta.pci-group.com/mixed-use-projects-near-transit-benefit-everyone-developers-say/

    Thanks, Josue! :)

    #267588

    Hey!

    Try adding this code to the Quick CSS:

    .single span.text-sep.text-sep-date {
        display: none;
    }

    Cheers! 
    Josue

    #267654

    That worked perfectly for the single post page – thank you!

    Now all I need is the CSS to remove the comments, categories and author on the main blog page, please :)

    #267659

    Hi!

    Try:

    .blog span.post-meta-infos * {
        display: none;
    }
    .blog span.post-meta-infos time{
        display: block;
    }

    Cheers!
    Josue

    #267704

    Beautiful! Worked like a charm; thanks so much, Josue!

    #267707

    You are welcome, always glad to help :)

    Regards,
    
Josue

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