No it require just some modifications in the file.
To hide the code and the price, remove the blocks:
<!-- PRODUCT PRICE -->
<?php
}
if($this->params->get('show_price','-1')=='-1'){
$config =& hikashop_config();
$this->params->set('show_price',$config->get('show_price'));
}
if($this->params->get('show_price')){
$this->setLayout('listing_price');
echo $this->loadTemplate();
}
?>
<!-- EO PRODUCT PRICE -->
And
<!-- PRODUCT CODE -->
<span class='hikashop_product_code_list'>
<?php if ($this->config->get('show_code')) { ?>
<a href="<?php echo $link;?>">
<?php
echo $this->row->product_code;
?>
</a>
<?php } ?>
</span>
<!-- EO PRODUCT CODE -->
The blocks are indicated by tags, you just have to move or remove these blocks to have what you need.