Hey Peter,
Thanks for replying so fast.
The date displayed as 28th Aug is fine for people in the US (and maybe UK?)
I now changed the format in the vieuws/list.php item.
I changed
<?php
if ( date( 'Ymd' ) == date( 'Ymd', strtotime( $tweet->created_at ) ) ) {
// Covert created at date into timeago format
$created = human_time_diff( date( 'U', strtotime( $tweet->created_at )), current_time( 'timestamp' ) );
} else {
// Convert created at date into easily readable format.
$created = date( 'jS M', strtotime( $tweet->created_at ) );
}
?>
To
<?php
// Convert created at date into easily readable format.
$created = date('d-m-Y', strtotime($tweet->created_at));
?>
wich creates a format as 30-08-2013
For me this is fine, untill I update the plugin again but than I’ll adjust the code again, thats no big problem.
But I don’t think displaying an other format on hovering is nice for people with other timeformats in their country.
I don’t really understand what you mean by I don’t see a dropdown…
You mean it is reasonable or you dont see it happen?
Anyway, the date is a really small problem for most people I think, but I think it would be easier if they can choose the date format (if it’s possible).
Sorry for my bad english and thanks for the plugin:)