By Mike DiSabatino on Tuesday, 03 February 2015
Likes 0
Views 803
Votes 0
I love the Origami theme... Is there any way to add the complete date in the Heading of the article, since our blogs are time sensitive.

I am invisioning this...

Oops. I Wish I Knew That
by Mike DiSabatino in Weekly Tips
February 2, 2015

See my blog at
Title

Mike
Hello Mike,

You could add the codes below into the theme file /components/com_easyblog/themes/origami/blog.item.php


<!-- Creation date -->
<span class="blog-created">
<?php echo JText::_( 'COM_EASYBLOG_ON' ); ?>
<time datetime="<?php echo $this->formatDate( '%Y-%m-%d' , $row->{$this->getParam( 'creation_source')} ); ?>">
<span><?php echo $this->formatDate( $system->config->get('layout_dateformat') , $row->{$this->getParam( 'creation_source')} ); ?></span>
</time>
</span>
·
Tuesday, 03 February 2015 15:28
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks! Worked perfect!

Mike
·
Tuesday, 03 February 2015 16:01
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Mike DiSabatino,

You're welcome.
·
Tuesday, 03 February 2015 23:56
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post