Hi,
Have your products used as options vairants ? If yes, it should be displayed in the cart, if the options have no variants so it's not displayed.
To change the button "Add to cart" to "Choose options", you can edit the file "components/com_hikashop/views/product/view.html.php" and in thee function "listing()" add:
$database->setQuery('SELECT * FROM '.hikashop_table('product_related').' WHERE product_related_type = '.$database->quote('options').' AND product_id IN ('.implode(',',$ids).')');
$options = $database->loadObjectList();
if(!empty($options)){
foreach($rows as $k => $product){
foreach($options as $option){
if($product->product_id==$option->product_id){
$rows[$k]->has_options = true;
break;
}
}
}
}
Before:
$currencyClass->getListingPrices($rows,$pageInfo->zone_id,$pageInfo->currency_id,$pageInfo->filter->price_display_type);
We have just added it on our end, and will be available for the next release.