Leaderboard question..
Does the system trigger email notification to users as they collect points? Or as they level up and rank between levels? Can we configure an email sequence to encourage users to return and engage a community?
Example;
- you are 182 points to level up to "Space Virtuoso"
- congratulations you just earn 500 points and leveled up to "Space Virtuoso"
As for me, I use Gamipress with a customizable leaderboard.
But the leaderboard for FluentCommunity, use this hooks(level and points upgrades):
For Level upgrades:
add_action('fluent_community/user_level_upgraded', function ($xprofile, $newLevel, $oldLevel) {
}, 10, 3);
For Points Updated:
add_action('fluent_community/user_points_updated', function ($profileModel, $oldPoints) {
}, 10, 2);
Use the above hooks, if you know how to code. Those will do the job perfectly.
