Expirable Featured Membership for BuddyPress
If you are using BuddyPress Featured Members plugin and need to expire/remove the users based on time, This post might help you.
One of our Members(Thank you Herve), asked about it in our forums a few week ago. @ravisharma put a tiny plugin to do it.
The plugin is available from github.
Link:- https://github.com/buddydev/bp-featured-member-expirable-membership
By default, It expires the user after 7 days. If you need to change the time, Please open the plugin file and look for this code
1 2 3 | private function get_interval() { return 7 * DAY_IN_SECONDS; // 7 days. } |
You should modify that value and return the number of seconds. For example, to expire a user in 2 hours, return 7200 (2*60*60).
You can find the line here on the repo.
Have fun.