Hi and thanks for the module ;)
I would like to ask you if there any chance to add time to shouts?
EXAMPLE: [12:05]Mark: Hello

And my other question is, how to make option to click on users who talk in shoutbox and the link leading to user profile?

THANKS and sorry for bad English :)

Greetings

Comments

Axlen’s picture

The time is there, but hidden. Just move the mouse cursor over one of the shouts and a message bubble will appear with the date and time of the post.

stella’s picture

Assigned: brzbg » Unassigned
Status: Active » Postponed (maintainer needs more info)

shadow2man: does the mouse hover-over solution suggested by Axlen suit your needs? Or would you still like it to be displayed in the shoutbox itself?

Please open a second feature request for your other query.

Cheers,
Stella

brzbg’s picture

Sorry but i need to be exactly before or after username. Its simple and there is no need to check every msg when is send ;) Thanks ;)

disterics’s picture

Version: 5.x-1.x-dev » master

Deferred to next release

Johnny D’s picture

This would be helpful :-)

migas’s picture

I would also prefer to have a simple date/time after the name (able to be activated/deactivated in settings):
e.g. username [31.12, 07:33]
I guess it would be useful, if the date is adjustable to the country. or like in Views with PHP-Code.

thanks, mike

burmistrow’s picture

Version: master » 6.x-1.0

And for 6.x make that option please

sapetto’s picture

Yes that would be very nice! Just a simple time and date next to the username

rv0’s picture

For people who are lazy like me to do it the proper way, and can't wait for the feature or do it themselves:
in shoutbox.module on line 329

change:

return "<div class=\" $shout_classes \" title=\"$title\">$img_links<b>$shout->url</b>: $shout->shout</div>\n";

to

return "<div class=\" $shout_classes \" title=\"$title\">$img_links" .
  format_date($shout->created, 'custom', 'H:i') . ' ' . "<b>$shout->url</b>: $shout->shout</div>\n";

(edit: that's in 24-hour time notation though; for 12-hour notation change 'H:i' to 'h:i', refer to the 'Time' section on http://ca3.php.net/manual/en/function.date.php for additional formatting tags)

vitalblue’s picture

Issue summary: View changes
Status: Postponed (maintainer needs more info) » Closed (outdated)