Forums
Home / Plugin: bbp user ranking / Add Badge programmatically
(@christopherbouveret)
4 years ago
I am looking for a way / function to give users a Badge from functions.php. Is there any way to call a function to assign a badge to a user?
Thx in advance
(@robin-w)
the original code is at the bottom of user_profile.php
but
$i = 1 ; $name = 'badge'.$i.'name' ; $checkname= 'bur_'.$name ; update_user_meta( $user_id, $checkname, 1);
where $i is the badge number. setting to 1 adds this, to remove set to zero or delete the usermeta entry.