Icon theme blog post meta data

Hi X Theme Team,

I have searched the forums and haven’t found a clear answer. On my website (www.exposurecompensation.co.uk) I would like to add for each blog post
Author / Last Modified Date / Category / number of comments

As shown on this demo link http://demo.theme.co/renew-1/blog/

Am running the latest version of X and already have a child theme created.

Thanks in advance


Update : found this (https://theme.co/apex/forums/topic/date-stamp-and-author-not-displaying-on-blog-post/)

It works now except the date is still the date originally posted, not the last modified date.

How to change this?

Hello There,

Thanks for writing in!

To resolve your issue, you simply need to replace this get_the_date with get_the_modified_date in your code.

Please let us know if this works out for you.

Hi RueNel,

Many thanks, that works perfectly!

Next question, instead of just displaying the last updated date, how do I add Last Updated On: before the date.
How can I change the next to white?

Thanks in advance.

Alistair

Hello There,

Thanks for updating in! To resolve your other issue, please update the portion of the code and use this:

$date = sprintf( '<span>Updated On: <time class="entry-date" datetime="%1$s"><i class="x-icon-calendar"></i> %2$s</time></span>',
      esc_attr( get_the_modified_date( 'c' ) ),
      esc_html( get_the_modified_date() )
    );

And to change it to white, please add the following CSS code in the X > Launch > Theme Options > Global CSS (http://prntscr.com/evui3r)

body .p-meta {
    color: white !important;
    opacity: 1;
}

Hope this helps.

1 Like

Many Thanks RueNel! This is perfect, exactly what I wanted!

Loving the X Theme!

Hey Alistair,

You’re most welcome! We are just glad we were able to help you out.
We really appreciate for letting us know that it has worked for you.

Cheers.

Hi RueNel,

I just noticed that the last change we made adds the meta data to the gallery pages

Is there any way this can be avoided?

Thanks in advance.

Alistair

Hi There,

Could you please provide us with your admin account so we can take a closer look?

Thanks.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.