Jul 05, 2021 1:23 pm
Good morning, friends.
We are trying your good plugin wpForo in our non-profit school as "information sharing place" for teachers. I would like to ask you for a help with the plugin. When I create a new topic, I can see who read this, BUT this notification I see only for 1 hour. For example, this new topic read John, Susan and Carol. But after 1 hour this information is not visible / available. We would like to set more than 1 minute for this notification. Please, can I do anything for it? Example change any value in php script?
We are trying your good plugin wpForo in our non-profit school as "information sharing place" for teachers. I would like to ask you for a help with the plugin. When I create a new topic, I can see who read this, BUT this notification I see only for 1 hour. For example, this new topic read John, Susan and Carol. But after 1 hour this information is not visible / available. We would like to set more than 1 minute for this notification. Please, can I do anything for it? Example change any value in php script?
Thank you in advance! 🙂
Cenek (Teacher).
Cenek (Teacher).
5 Replies
Jul 07, 2021 5:14 am
We would like to set more than 1 minute for this notification.
What do you mean, saying more than 1 minute? The 1 hour is already more than 1 minute. Please specify an exact duration.
Jul 09, 2021 6:57 am
You can use this hook code in the functions.php file of your current active WordPress theme:
add_filter('wpforo_keep_visitors_data', function ($seconds){
return 2592000; //1 month
});