Nov 24, 2022 3:23 pm
Hi there,
I'd like to change the date format for the list of the last posts (see attached file), I'd like to have "8 novembre". All the other dates are ok only this one is on an English format. Is that possible?
Thanks!
2 Replies
Nov 25, 2022 1:27 pm
Hi @ghoode,
Do these steps:
Navigate to wp-content/plugins/wpforo/themes/2022/layouts/4/ copy forum-thread.php file
create /wpforo/ folder in your current active WordPress theme directory /wp-content/themes/yourtheme/, and keeping the same folder/file structure.
Navigate to wp-content/themes/yourtheme/wpforo/layouts/4/ paste forum-thread.php file
Now edit forum-thread.php file, in wp-content/themes/yourtheme/wpforo/layouts/4/
Find the below code part, it should be on 23 row:
<?php wpforo_date($thread['created'],'ago-date');
and replace that code with these one:
<?php wpforo_date($thread['created'],'j F',true,false);