by axew3 » Mon May 02, 2016 8:05 am
Hello, date about this can be changed in, until the widget has been updated to be more comfortable and powerful:
open file: wp-content/plugins/wp-w3all-phpbb-integration/views/
phpbb_last_topics.php
there are two
echo instructions, one for iframe mode one for not iframe, but the two on bottom have follow code:
Code: Select all
date_i18n( 'H:i Y-m-d', $value->topic_last_post_time )
you need to change the value of:
H:i Y-m-d
examples from php.net:
Code: Select all
F j, Y, g:i a // March 10, 2001, 5:16 pm
m.d.y // 03.10.01
j, n, Y // 10, 3, 2001
Ymd // 20010310
D M j G:i:s T Y // Sat Mar 10 17:16:18 MST 2001
H:m:s \m \i\s\ \m\o\n\t\h // 17:03:18 m is month
H:i:s // 17:16:18
Y-m-d H:i:s // 2001-03-10 17:16:18
if still in trouble, just let know what kind of data you like to display.
Hello, date about this can be changed in, until the widget has been updated to be more comfortable and powerful:
open file: wp-content/plugins/wp-w3all-phpbb-integration/views/[b]phpbb_last_topics.php[/b]
there are two [b]echo[/b] instructions, one for iframe mode one for not iframe, but the two on bottom have follow code:
[code]date_i18n( 'H:i Y-m-d', $value->topic_last_post_time )[/code]
you need to change the value of:
[b]H:i Y-m-d[/b]
examples from php.net:
[code]F j, Y, g:i a // March 10, 2001, 5:16 pm
m.d.y // 03.10.01
j, n, Y // 10, 3, 2001
Ymd // 20010310
D M j G:i:s T Y // Sat Mar 10 17:16:18 MST 2001
H:m:s \m \i\s\ \m\o\n\t\h // 17:03:18 m is month
H:i:s // 17:16:18
Y-m-d H:i:s // 2001-03-10 17:16:18[/code]
if still in trouble, just let know what kind of data you like to display.