Hi,
To have the price on 2 lines for the product listing, you can edit the view "product / listing_price" and replce:
echo JText::_('PRICE_BEFORE_TAX'); BY echo '<br/>'.JText::_('PRICE_BEFORE_TAX');
And to display only the total without VAT, you can edit the view "checkout / cart" and try to replace:
					<td class="hikashop_cart_subtotal_value">
					<?php
						$this->row=$this->total;
						echo $this->loadTemplate();
					?>
					</td>
By:
					<td class="hikashop_cart_subtotal_value">
					<?php
						$price = $this->row->prices;
						echo $this->currencyHelper->format($price->price_orig_value,$price->price_orig_currency_id);
					?>
					</td>