Hi,
You can enable the option "Group options with product" in Configuration > Main > Cart and then edit the view "product / cart" and/or "checkout / cart" and comment / remove:
if($group){
foreach($this->rows as $j => $optionElement){
if($optionElement->cart_product_option_parent_id != $row->cart_product_id) continue;
echo '<p class="hikashop_cart_option_name">'. $optionElement->product_name.'</p>';
$input .='document.getElementById(\'cart_product_option_'.$optionElement->cart_product_id.'\').value=qty_field.value;';
echo '<input type="hidden" id="cart_product_option_'.$optionElement->cart_product_id.'" name="item['.$optionElement->cart_product_id.'][cart_product_quantity]" value="'.$row->cart_product_quantity.'"/>';
}
}