Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #2209708
Displayed date on blog post and author box
Closed

Comments

  •  1
    letsventureout started the conversation

    Hello,

    I need help with 2 things:

    1. How do I remove the profile image from the author box that appears in every blog post? 

    2. I'm also trying to get my blog posts to have the "updated date" appear on top. I used the code from this thread (https://pencidesign.ticksy.com/ticket/1736932/) but only the new date is showing. I would like to have the date appear as "updated on xx.xx.xxxx" instead of just "xx.xx.xxxx". How exactly can I do this?

    Thanks and Regards.

    Stephanie

  •  2,699
    PenciDesign replied

    Hi,

    1/ To do that, please add more this code to Customize > Custom CSS:

    .author-img{ display: none; }
    .post-author .author-content{ margin-left: 0; }
    

    2/ Please try add more this code to Customize > Custom CSS to do that:

    .post-box-meta-single span time:before {
        content: "Updated on ";
    }
    

    Best Regards,

    PenciDesign

  •  1
    letsventureout replied

    Thank you so much!