[Support request] add date post update

Home Forums Support [Support request] add date post update

Home Forums Support add date post update

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1141145
    newmedianewpeople.com

    you can do as an example:

    author name + original post date + modification date

    By: paperino Published: March 17, 2014 | Last updated: December 11, 2019

    I found this plugin but I would like to avoid other plugins
    https://wordpress.org/plugins/wp-last-modified-info/#the%20plugin%20isn%E2%80%99t%20working%20or%20have%20a%20bug%3F

    #1141318
    David
    Staff
    Customer Support

    Hi there,

    can you link me to the site where i can see your current set-up. Should be fairly simple to do. You can edit your original topic and use the Site URL field to share the link privately.

    #1141326
    newmedianewpeople.com

    done. I also sent you username and password

    #1142057
    Tom
    Lead Developer
    Lead Developer

    Hi there,

    Are you using any functions, currently? For example, where’s the “Updated” text you have right now coming from?

    Let me know πŸ™‚

    #1142233
    newmedianewpeople.com

    Good morning Tom and David what you see now is the result of this CSS:

    .posted-on .updated {
    display: inline-block;
    }

    .posted-on .updated + .entry-date {
    display: none;
    }

    .posted-on .updated:before {
    content: “Ultimo aggiornamento | “;
    }

    what I would like to have is:

    By: (author name) Published: March 17, 2014 | Last updated: December 11, 2019

    #1142522
    newmedianewpeople.com

    do you have any information for me?

    #1142672
    David
    Staff
    Customer Support

    Add this CSS:

    .entry-header .entry-meta {
        display: flex;
    }
    .entry-header .byline {
        order: -1;
        margin-right: 1ch;
    }
    .posted-on .updated + .entry-date {
        display: inline !important;
    }
    .posted-on .updated + .entry-date:before {
        content: '| Last Updated: ';
        margin-left: 1ch;
    }

    Then you will need to change this CSS:

    .posted-on .updated:before {
        content: "Ultimo aggiornamento | ";
    }

    to:

    .posted-on .updated:before {
        content: "| Ultimo aggiornamento ";
    }
    #1143378
    newmedianewpeople.com

    Thanks a lot for your help.
    you can see the result here

    https://marcogiangrande.it/la-postura/

    I have one last thing. πŸ™‚

    I wish “mobile” was all on one column: (example)
    > author
    > last update
    > article date

    can you give me this last help ?

    thanks – I send you a crate of beer πŸ™‚

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