MyCred User Ranks and Badges image does not display
-
Hi
I installed WPDicuz and mycred plugin at my site, I have placed the code below to functions.php file. However, the badge did not display correct. Could you please check your code and fix it?//////////////////////////////////////////////////////////////////////// // MyCred User Ranks and Badges Integration //////////////////////////// //////////////////////////////////////////////////////////////////////// add_filter('wpdiscuz_after_label', 'wpdiscuz_mc_after_label_html', 110, 2); function wpdiscuz_mc_after_label_html($afterLabelHtml, $comment) { if ($comment->user_id) { if (function_exists('mycred_get_users_rank')) { //User Rank $afterLabelHtml .= mycred_get_users_rank($comment->user_id, 'logo', 'post-thumbnail', array('class' => 'mycred-rank')); } if (function_exists('mycred_get_users_badges')) { //User Badges $users_badges = mycred_get_users_badges($comment->user_id); if (!empty($users_badges)) { foreach ($users_badges as $badge_id => $level) { $imageKey = ( $level > 0 ) ? 'level_image' . $level : 'main_image'; $afterLabelHtml .= '<img src="' . get_post_meta($badge_id, $imageKey, true) . '" width="22" height="22" class="mycred-badge earned" alt="' . get_the_title($badge_id) . '" title="' . get_the_title($badge_id) . '" />'; } } } } return $afterLabelHtml; }
Thanks
The page I need help with: [log in to see the link]
Viewing 8 replies - 1 through 8 (of 8 total)
Viewing 8 replies - 1 through 8 (of 8 total)
- The topic ‘MyCred User Ranks and Badges image does not display’ is closed to new replies.