Mori1983

Home \

Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • in reply to: Order by date format d-m-Y #1347
    Mori1983
    Participant

    Hi all, I’ll respond to myself in order to help if someone have de same problem I had.

    I’ve edited the /joomla/plugins/content/easyfolderlistingpro.php file, only the way it shows the date. This way, it still orders by Y-m-d but it shows d-m-Y.

    In line 787 I replaced

    $html .= $rows[$i];

    by

    $pieces = explode(“-“, $rows[$i]);

    $day = explode(” “, $pieces[2]);

    $html .= $day[0].”-“.$pieces[1].”-“.$pieces[0].” “.$day[1];

    So now it shows Day-Month-Year Hour:Minute:Second

    Thank you all ^^

    in reply to: Order by date format d-m-Y #1346
    Mori1983
    Participant

    I’m using Easy Folder Listing Pro v1.5

Viewing 2 posts - 1 through 2 (of 2 total)