I was following this great article on changing how Joomla! 2.5 shows the date on article view(or any view for that matter). Article

But the problem is the markup generates gibberish code and from the comments there was a reply saying that it needs to be done differently on 2.5 compared to 1.6.

code for J1.6:

<?php echo JText::sprintf('COM_CONTENT_CREATED_DATE_ON', JHTML::_('date',$this->item-   >created, JText::_('<div class="dateWrap"><span class="day">%d</span><span class="month">%b</span> <span class="year">%Y</span></div>'))); ?>

comment on code for J2.5:

The suggested J1.6 code doesn't work in J2.5, but produces something garbled.

I found that the following worked, extracting day, month and year separately, into their respective spans. Note I'm using different php string formatters (js for day, M for month)

Code:

item->created,JText::_('jS'))); ?> 
item->created,JText::_('M'))); ?> 
item->created,JText::_('Y'))); ?>

I don't get the part on how will I modify the code for 1.6 with this short code given above to make this work on J2.5 Any help is appreciated! thanks!

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.