-- HikaShop version -- : 5.1.1
-- Joomla version -- : 5.2.0
-- PHP version -- : 8.2
We have a user account creation process via the new Joomla commands (php cli/joomla.php user:add ...)
However, the `hikashop_user` plugin system triggers an error on the `onAfterStoreUser` event.
There seems to be a use of
not accessible from the Joomla CLI context.
For the moment, we have been able to get around the problem by adding the following lines to `hikashop_user`:
if (method_exists($app, ‘isClient’) && $app->isClient(‘cli’)) {
return;
}