I'm implementing the rating's module and would like to restrict ratings to only registered users. The instructions detail how to do this
Code:
If you would like to restrict reviews to only registered users you could open the
template file member_rating.tpl.php and add this:
{if $smarty.session.username<>""}
{$smarty.const.LANG_WRITE_REVIEW}</a>
{else}
Please login to add a review.
{/if}
But I can't find the member_rating.tpl.php template anywhere (I'm using Default).