The intro type includes the title, it's normal.
The description is not cut properly. It should keep the text before the read more tag, not the code after the read more tag.
You should replace the line:
$description = substr($product->product_description,$pos);
by:
$description = substr($product->product_description,0,$pos);
in the file plugins/acymailing/hikashop.php to solve that.
For the cusotmization of that product display, You need to create a template file, as explained in the documentation link provided earlier.
If you modify the file directly, you won't be able to update...