Limited Support
Our team is currently on holiday, so support will be limited during this period. Response times may be slower than usual, and some inquiries may be delayed.
We appreciate your patience and understanding, and we’ll resume our usual support by the end of August.
Sep 05, 2023 8:36 am
I have a question, the page where the recent threads are shown, what criteria does it have? If a few weeks pass without any recent posts, it remains empty. Can the duration be modified?
3 Replies
Sep 05, 2023 9:24 am
open themes / 2022 / recent.php and edit the value 30
see code below
$days = apply_filters( 'wpforo_recent_posts_limit', 30 );
Sep 05, 2023 9:28 am
Thanks for the help, I understand then that the default value is 30 days.
Sep 05, 2023 12:19 pm
Or you can just add this code to your https://wordpress.org/plugins/code-snippets/
add_filter( 'wpforo_recent_posts_limit', function(){ return 90; } );