Ok, try then to disable these fields in Profile Fields

However you'll still be able to see rating by visiting direct link.
In such a case to hide it you can use some CSS.
Add this code to HTML-top:
<style>
#pun-respect #pun-main h1:after {
content: "You have no permission to view this page.";
display: block;
text-align: center;
}
#pun-respect #pun-main h1 span, #pun-respect #pun-main .section {
display: none;
}
#pun-profile #viewprofile .container li:nth-child(6), #pun-profile #viewprofile .container li:nth-child(7) {
display: none;
}
</style>
If you visit userprofile as a guest or regular user you'll see that it contains Respect/Positive links. To hide them count the columns and replace red numbers above with you numbers.
