@antoney-thomas.
Please follow the steps below to get it resolved:
1. Please use this CSS code:
#wpforo-wrap .wpf-author-nicename{
display : none !important;
}
2. The following CSS code should solve the issue:
.author-title :first-child {
display: none !important;
}
3. The CSS code should riched the issue:
#wpforo-wrap .wpf-member-title.wpfut{
font-size: 14px !important;
}
All CSS code should be added in Dashboard > Forums > Settings >Styles admin page.
4. Please use the following JS code:
jQuery(document).ready(function ($) {
$.each($(".wpforo-mycred-badges-wrap"), function () {
$(this).insertBefore($(this).parents(".wpf-left").find(".wpf-author-nicename"));
});
});
5. The following JS code should solve the issue
jQuery(document).ready(function ($) {
$.each($(".author-rating-full"), function () {
$(this).insertBefore($(this).parents(".wpf-left").find(".wpf-author-nicename"));
});
});
Please put the following codes in the active theme functions.php file.
6. Regarding the email icon you've mentioned, this is the private message icon. Probably you're trying to send the private message yourself, that's the reason that you can't see the private comments icon.
Please note, that we don't provide support for style customization, we may help in 1-2 simple questions related to colors and background but not more. We can not help you customize all components of forum style, these are custom requirements and should be done by forum owners. We only help with general questions and issues.
Thank you for your understanding.