George
Forum Replies Created
-
Users on my site have a username and a full name.. it seems that if a user has the same username and full name, the rank displays correctly.
If the username and full name are different, it displays the full name in the rank section.
Any ideas?
Everything else is working perfectly and your plugin is amazing. I will be purchasing the lottery and notification plugins as soon as I can figure out a way to show the user’s rank on their profile and under their name on the bbpress forums.
That’s the end goal.. but it all shows the username with anything you’ve posted here in support.
I tried to debug but didn’t come back with any mycred issues which is the confusing part. I can’t display any user’s rank anywhere.. it just spits out the user’s username across the site. I’ve tried deactivating plugins, checking code, and wp-debug to no avail.
Can I give you a link to take a look?
We have 5 ranks.
I assigned ranks to users, no luck.Latest buddypress, latest bbpress. See example: http://oi39.tinypic.com/aytwma.jpg
Stated when mycred was installed.
On my bbpress forum posts, the rank displays as: Member
On my buddypress, the user’s username is displayed as the rank.See example here: http://oi39.tinypic.com/aytwma.jpg
The last part of this doesn’t work. When I add:
add_action( 'bbp_theme_after_reply_author_details', 'add_rank_in_author_details' ); function add_rank_in_author_details() { $reply_id = bbp_get_reply_id(); if ( bbp_is_reply_anonymous( $reply_id ) ) return; $user_id = bbp_get_reply_author_id( $reply_id ); if ( mycred_exclude_user( $user_id ) ) return; echo 'Rank: ' . mycred_get_users_rank( $user_id ); }All that happens is that the reply topic is echo’ed .. not the user’s rank.
Seems to only affect some users.. which is even stranger. Any ideas?
Forum: Fixing WordPress
In reply to: BBcode and BBpress 2 error. Please help.Resolved. Disregard.