• Resolved lazylord

    (@lazylord)


    Hello.

    I wish to display the last updated date on posts in place of the published date. How do I do this?

    What snippet will I need to add/modify and in which theme file?

    Thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi,

    You can add this custom code in Appearance > Additional CSS:

    .nv-meta-list .posted-on .updated {
        display:inline-block;
    }
    .nv-meta-list .posted-on .published {
        display:none;
    }
    .nv-meta-list .posted-on time:nth-child(1):last-child {
        display:inline-block;
    }

    Regards,
    Rodica

    ExactFox

    (@exactfox)

    Above code works fine. But, Published date showing in structured data testing tool.

    How to remove published date.

    rodicaelena

    (@rodicaelena)

    Hi,

    Unfortunately, at this moment, that’s not possible to do. We’ll work on adding a filter in a future update to allow you to remove the published date.

    Regards,
    Rodica

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Display updated date in place of published date’ is closed to new replies.