Hi,
I think I've finally found the solution.
Replace the code:
}elseif(isset($query['view'])){
$segments[] = $query['view'];
unset( $query['view'] );
if(isset($query['layout'])){
$segments[] = $query['layout'];
unset( $query['layout'] );
}
}
by the code:
}elseif(isset($query['view'])){
unset( $query['view'] );
if(isset($query['layout'])){
unset( $query['layout'] );
}
}
in the file components/com_hikashop/router.php and that should fix the issue as it did on my end.
Let us know if you have any other issue happening because of that change.