Thanks upl8t, it doesn't include v5.1 unfortunately, and I can't easily use vqmod.
The shopping cart is actually a very small part of the project but they wanted one on a website based on Joomla so I used AceShop plugin because I used Opencart in v1.4.9 days. I was hoping that Opencart would be an unaltered separate folder within it so that I could update independently and use vqmod, but it isn't; most files are modded and it is not the latest version.
I made another mod:
Code: Select all
if ($this->config->get('config_alert_mail')) {
$subject = sprintf($language->get('text_new_subject'), html_entity_decode($this->config->get('config_name'), ENT_QUOTES, 'UTF-8'), $order_id);
$mail->setTo($this->config->get('config_email'));
$mail->send();
}
but I have to wait for them to test it on Monday.
php is not my strong suit so I will try to disassemble the vqmod to see if it does anything different.