Hi,
I see !
There is an issue with the display of the modules ; the order is lost.
To fix it, you have to edit the file "administrator/components/com_hikamarket/classes/modules.php" and replace
$ret[1] = $this->db->loadObjectList('id');
By
$value_modules = $this->db->loadObjectList('id');
$ret[1] = array();
foreach($value as $v) {
if(isset($value_modules [$v]))
$ret[1][$v] = $value_modules [$v];
}
unset($value_modules );
So it will keep the ordering of the values while generating the content for the namebox.
Regards,