There are no dates showing for the feed-items. Ideally it would pull the date from the feed tag. If it can't find a date it could show the date it was downloaded.

Comments

budda’s picture

I think that is down to your theme and your template? The usual $node->created and $node->updated timestamps are available.

chrishaslam’s picture

Dates are working fine, using <?php print $date?> in node.tpl.php (or something like aggregator-item.tpl.php)

"Ideally it would pull the date from the feed tag. If it can't find a date it could show the date it was downloaded."

I'm sure this is exactly what feedparser does, it takes the date from the
if it's available and if not falls back to the node creation time. This bug report can now be closed?

nathanraft’s picture

Status: Active » Closed (fixed)

Yes.. I figured that this was part of the content and did not try the tpl. So I put together a node-aggregator-item.tpl.php with all the normal stuff and added this line.

print format_date($node->created, 'custom', 'M d, Y');

Marking closed....