<em>@corticalcolumn 322509 wrote:</em><blockquote>Hi, I would like to change way of showing date in ja_bulletin module
At the moment it shows change/modifing date, I would like to use creation date instead.
Can you let me know which part of code shall I correct? Thank you in advance.</blockquote>
Hello ,
Pleases open “/templates/ja_nex/html/mod_jabulletin/default.php” file, then edit line 40, 41 as below:
Before:
[PHP]
<?php if (isset($item->date)) : ?>
<span><?php echo JHTML::_(‘date’, $item->date, JText::_(‘DATE_FORMAT_LC4’)); ?></span>
<?php endif; ?>
[/PHP]
After:
[PHP]
<?php if (isset($item->created)) : ?>
<span><?php echo JHTML::_(‘date’, $item->created, JText::_(‘DATE_FORMAT_LC4’)); ?></span>
<?php endif; ?>
[/PHP]
Best regards.
P.S: Thanks guys for buzzing us up. Please note that we’ll be temporary away from May 30th, 2012 and back to work on June 4th, 2012. During this time, the ticket system will also be unattended, but no worry, we’ll be back and sort out your maze on Monday!