I have 4.6 installed and most of the developers use it. But only a few use the blogging portion. Is there way to list the bloggers on the site... maybe in a block. This would be really usefull. They can then click on the name and go to the bloggers specific page.

For example I have three users A, B, C.

While A has contributed to fourms and polls only B and C have blogs alive.

Can i get a block with B, C listed

Raj

Comments

rxs0569’s picture

May be some extra information next to the names like no of blog posts or the last update.... or great of the list was sorted by last upate or no of posts

etc etc

hope u get the idea

Bèr Kessels’s picture

The feature is pending; http://drupal.org/node/17030

---
Next time, please consider filing a support request.

[Bèr Kessels | Drupal services www.webschuur.com]

rxs0569’s picture

I got the code for custom block.... In the interim before the new release is avail how cna i add the "Last updated time" for that blogger in that block.

The code i have is the following

<?php
$result = db_query("SELECT u.uid, u.name, COUNT(0) AS num FROM {node} n LEFT JOIN {users} u ON u.uid = n.uid WHERE n.type = 'blog' GROUP BY u.uid, u.name ORDER BY u.name ASC");
while ($blog = db_fetch_object($result)) {
     $output .= '<li />'.l($blog->name. ' ('.$blog->num.')', 'blog/'.$blog->uid);
}
return '<ul>'.$output.'</ul>';
?>