Hi,
In the file "administrator/components/com_hikamarket/classes/category.php" please replace
$option = JRequest::getString('option','');
$ctrl = JRequest::getString('ctrl','');
$viewName = $view->getName();
if($option != HIKAMARKET_COMPONENT || $ctrl != 'vendor' || $viewName != 'category')
return;
By
$option = JRequest::getString('option','');
$ctrl = JRequest::getString('ctrl','');
$task = JRequest::getString('task','');
$viewName = $view->getName();
if($option != HIKAMARKET_COMPONENT || $ctrl != 'vendor' || $task != 'show' || $viewName != 'category')
return;
It will skip the synchronization when display a vendor listing and where there is no "vendor id" to synchronize with.
Regards,