Hi,
Edit the file components/com_hikashop/views/address/view.html.php
and look for the code:
$userCMS = JFactory::getUser();
if(!$userCMS->guest) {
$name = $userCMS->get('name');
$pos = strpos($name, ' ');
if($pos !== false) {
$address->address_firstname = substr($name, 0, $pos);
$name = substr($name, $pos + 1);
}
$address->address_lastname = $name;
}
in both the functions show and form in that file.
If you don't want the last name to be prefilled, just change the line:
$address->address_lastname = $name;
to:
$address->address_lastname = '';
It's basically the same change for the firstname if you also don't want to prefill it.