Hi,
Thanks for the report.
In the file "components/com_hikamarket/views/ordermarket/view.html.php" please remove the code
if($options) {
foreach($products as &$product) {
if(!empty($product['product']))
$order->products[] = $product['product'];
if(!empty($product['options'])) {
foreach($product['options'] as &$opt) {
$order->products[] = $opt;
}
unset($opt);
}
}
unset($product);
}
That block of code has been modified with the new design for the vendor order and has introduced that issue.
I'm working on the new order design for the main vendor ; I added a test case with some product options to be sure that the problem will be solve.
Regards,