Recent Topics

1 May 06, 2010 19:14    

My b2evolution Version: 3.3.3

Hello all,

I often write multiple posts for a day, but write them the day before. Sometimes I want to change the order of posts which means I need to find out the time of one post and then move another post to before or after that time.

It would be really helpful if the post list would show the post time as well as the date so I don't have to go to the edit page for one post to find its time and then go to the other post and change its time. Would make the whole process faster if I could just see the times for all the posts in the list.

Does anybody know if that's configurable now or how one might make that modification?

Thanks!
Ross
http://rossputin.com

2 May 06, 2010 19:22

what is that "post list" you are talking about ?

a.) a post list widget in front end ?
b.) or the backoffice post list [post/comments] /*http://www.blog.com/admin.php?ctrl=items&blog=1

is it b.) i presume ?

3 May 06, 2010 19:32

Definitely b.) !!!

4 May 06, 2010 19:52

okay than.. ready for some core hacking ? remember its not a good thing to do as you will lose your changes with an upgrade..

crack open your ...inc\items\views\_item_list_table.view.php, wander about line 72 you will see a line saying:

		'td' => '@get_permanent_link( get_icon(\'permalink\') )@ <span class="date">@get_issue_date()@</span>',

make that;

'td' => '@get_permanent_link( get_icon(\'permalink\') )@ <span class="date">@get_issue_date()@ , @issue_time()@</span>',

in order to see the date, and the time.

5 May 06, 2010 20:15

Awesome, I'll give it a try as soon as I have time and report back!

Thanks!


Form is loading...