so here is the problem:
I'm using wordpress with Paid Memverships and BBpress and I want to show the Membership Level they have in the topics users info as an img . But i didn't find a thing for calling the membership level a user is on :O
Here is an excemple
if ( ? is Bronze Level ? ){
echo '<img src="images/bronze-badge.png">';
}
elseif ( ? is Silver Level ? ){
echo '<img src="images/silver-badge.png">';
}
elseif ( ? is Gold Level ? ){
echo '<img src="images/gold-badge.png">';
}
else {
null;
}
Any help?