Hi,
It's a small change in the new release of Joomla which causes the problem.
In the file administrator/components/com_hikashop/classes/mail.php
Change the line:
$this->mailer->AddReplyTo(array($this->cleanText($mail->reply_email),$replyToName));
to:
if(HIKASHOP_J30) {
$this->mailer->addReplyTo($this->cleanText($mail->reply_email), $replyToName);
} else {
$this->mailer->addReplyTo(array($this->cleanText($mail->reply_email), $replyToName));
}
And in the file
administrator/components/com_hikashop/classes/order.php
Change the line
$mail->mailer->addReplyTo(array($user_email,$user_name));
to:
if(HIKASHOP_J30) {
$mail->mailer->addReplyTo($mail->cleanText($user_email), $user_name);
} else {
$mail->mailer->addReplyTo(array($user_email, $user_name));
}
That will fix the problem.
We've added the patches on our end too, so you can also just download the install package via the menu My account>My subscriptions and install it on your website and that will add the patches and fix the problem.