Hello,
for only first name of the customer you can modify the line 188 in /main/controllers/account Reviews.php
[php]$add['author'] = $this->customer->getFirstName() .' '. $this->customer->getLastName();[/php]
Change For this:
[php]$add['author'] = $this->customer->getFirstName();[/php]