Hi there,
You just have to edit the show_default view (in Display>Views) for product and replace these lines:
<span id="hikashop_product_price_main" class="hikashop_product_price_main">
		<?php
		//LAYOUT listing_price
		if ($this->params->get('show_price')) {
			$this->row = & $this->element;
			$this->setLayout('listing_price');
			echo $this->loadTemplate();
		}
		?>
	</span>
with these ones:
<span id="hikashop_product_price_with_options_main" class="hikashop_product_price_with_options_main">
</span>
then remove this code (to avoid two display of the price):
if($this->params->get('show_price')){ ?>
		<span id="hikashop_product_price_with_options_main" class="hikashop_product_price_with_options_main">
		</span>
	<?php } ?>