[Resolved] page header template tags – updated date

Home Forums Support [Resolved] page header template tags – updated date

Home Forums Support page header template tags – updated date

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #387659
    Emir

    Hello, I use 3 CSS to change posted date to updated date and all work excellent, but after I made header for all posts with auto-pickup heading title, picture, and date, {{post_date}} showing me again date when it was posted not updated.can you tell me what I should put instead {{post_date}} so I can see updated date again. I try {{post_updated_date}} and something similar but not work.
    this CSS I use :
    .posted-on .updated {
    display: inline-block;
    }

    .posted-on .published {
    display: none;
    }

    .posted-on .updated:before {
    content: “Last updated: “;
    }

    Regards,
    Emir

    #387750
    Tom
    Lead Developer
    Lead Developer

    You would need to do this for the page header:

    .page-header-content .published {
        display: none;
    }
    
    .page-header-content .updated {
        display: block !important;
    }
    
    .page-header-content .updated:before {
        content: "Last updated: ";
    }
    #387953
    Emir

    Thank you very much, work like a charm.Additionally, I find here on forum CSS for mobile font sizes so I am ready for some post now.I rebuilding my page completely just to instal your theme and I don’t have any regrets.Great work and again thanks for the help.
    Best regards,
    Emir

    #388402
    Tom
    Lead Developer
    Lead Developer

    Glad I could help! 🙂

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