All questions about EDocman extension

How to display modified date on category Layout

  • Lionel Charrier
  • Topic Author
  • Offline
  • Premium Member
  • Premium Member
More
2 years 11 months ago #144222 by Lionel Charrier
How to display modified date on category Layout was created by Lionel Charrier
Hi

I would like to display de modified date on category layout instead of created date and to filter and sort accordingly.

Is there a way to do it ? 
Thanks for advices.
Kind Regards

Please Log in or Create an account to join the conversation.

  • Mr. Dam
  • Away
  • Administrator
  • Administrator
More
2 years 11 months ago #144225 by Mr. Dam
Hi,
I am not sure the layout that you are using, but if it is Default layout, you can follow below steps to change from Created Date to Modified Date (of documents)
1. Open file: root -> components -> com_edocman -> view -> common -> documents_default.php
2. Find:
Code:
<div class="dateinformation">     <i class="edicon edicon-calendar"></i> <?php echo JHtml::_('date', $item->created_time, $config->date_format, true); ?> </div>
and change to
Code:
<div class="dateinformation">     <i class="edicon edicon-calendar"></i> <?php echo JHtml::_('date', $item->modified_time, $config->date_format, true); ?> </div>

Good luck
Dam

Please Log in or Create an account to join the conversation.

Moderators: Mr. Dam