Hi Amir
1- Please provide an option to let us disable the top section.
https://i.imgur.com/2NLdRYL.png
It already exists: https://screencast.com/t/g6sddF4m03PE
2- I want to show only rank’s badge, not the achievement badges under the avatar. How can I do that?
Instead of the code mentioned in Integration > MyCRED tab just use this:
////////////////////////////////////////////////////////////////////////
// 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) {
// keep your preffered profile plugin and remove others...
if (function_exists('mycred_get_users_rank')) { //User Rank
$afterLabelHtml .= mycred_get_users_rank($comment->user_id, 'logo', 'post-thumbnail', array('class' => 'mycred-rank'));
}
}
return $afterLabelHtml;
}