Is it correct the version on your user info panel? I mean you run 4.1? If yes try to comment the below content:
core > front > global > reputation
{{if $content->canGiveReputation( -1 )}}
<a href='{$content->url( 'rep' )->setQueryString( 'rep', -1 )->csrf()}' data-action="giveReputation" class='ipsButton ipsButton_like ipsButton_veryLight'><i class='fa fa-times'></i> <span class='ipsHide' data-role='repCount'>{$content->reputation()}</span> {lang="unlike"}</a>
{{endif}}
and
core > front > global > reputationMini
{{if $canRepDown}}
<a href='{$giveRepUrl->setQueryString( array( 'rep' => -1, 'mini' => 1 ) )->csrf()}' data-action="giveReputation">{lang="unlike"}</a>
{{endif}}