-- HikaShop version -- : 4.3.0
-- Joomla version -- : 3.9.19
-- PHP version -- : 7.3.19
-- Browser(s) name and version -- : Firefox (latest at this time)
-- Error-message(debug-mod must be tuned on) -- : Call to undefined method
Hi,
I've found a small bug in the file :
joomla_root/components/com_hikashop/controllers/order.php
At the line 490 you have a call to an object that was not define:
$app->enqueueMessage(JText::_('INVALID_DATA'), 'error');
I suggest replacing it with this:
JFactory::getApplication()->enqueueMessage(JText::_('INVALID_DATA'), 'error');