The new order by Date feature lists the blogs in the order they were created.
I'd like to be able to list the blogs in the order of the latest blog entry.

Comments

drupalnesia’s picture

Do you mean "the date where the blog published"?
Drupal has 2 fields to indicate the latest blog entry: changed and timestamp. I will find which field corresponding to your requirement.

hansrossel’s picture

changed = updated time
timestamp = created time

so to correspond to the request you should sort by timestamp.

aries’s picture

Hi Guys,

I'm working on configurable solution, where you can set how the module should sort. Stay tuned, it'll be ready really soon.

aries’s picture

Version: master » 5.x-1.4
Assigned: Unassigned » aries
Status: Active » Needs review

Here comes the patch. I introduced a new sorting option, please check your settings under /admin/settings/blogger . I've created two patch. The smaller one is useful after my code beautification patch (http://drupal.org/node/427564), the bigger one is against the 5.x-1.4.

Sponsored by KOBA.

aries’s picture

Sorry, I forgot to add the patches :)

aries’s picture

I've found a bug in my patch. The list was missing under "blogger/list". Here comes the fix. Forgot to mention my fix is sponsored by KOBA.

aries’s picture

StatusFileSize
new22.21 KB

New day, new fix :)
The lates patch fixes 3 issue:

  • The ordering on the node creation (the old feature) and changed (new feature) were buggy.
  • The pager of the blogger/list page was calculated badly when you've set up excluded users.

These are fixed.