How to display product options in cart as plain text (no choice to change them)

Hey all,



My CS-Cart theme is coming on now.



One of the things I would like to modify is how the product option choices are displayed during the cart/checkout process.



Instead of listing the options with the ability to modify them in the cart/checkout, I just want to display them in plain text. Basically the same as they look in the ‘Product added to your cart’ popup.



I have searched all over here, and tried a few things with no luck, one being by copying the code from ‘product_notification.tpl’


{include file="common_templates/options_info.tpl" product_options=$product.product_option_data}
```<br />
<br />
There must be a small bit of code that can use to pull this information?<br />
<br />
Cheers very much!  <img src="upload://yGrKuhdxbbf2nIFvV2XDJuEFQb7.gif" class="bbc_emoticon" alt=":)">

OK, I’ve managed to figure this out by myself. Here is the answer for anyone else who wants to do the same:



Open: [template name]/customer/views/checkout/components/cart-items.tpl



Find:


<br />
		{if $smarty.capture.$name|trim}<br />
		<p><a id="sw_options_{$key}" class="cm-combo-on cm-combination">{$lang.text_click_here}</a></p><br />
<br />
		<div id="options_{$key}" class="product-options"><br />
			{$smarty.capture.$name}<br />
		</div><br />
		{/if}<br />
<br />

```<br />
<br />
and replace with:<br />
<br />
```php
<br />
		{if $smarty.capture.$name|trim}<br />
		<p><a id="sw_options_{$key}" class="cm-combo-on cm-combination hidden">{$lang.text_click_here}</a></p><br />
<br />
		<div id="options_{$key}" class="product-options hidden"><br />
			{$smarty.capture.$name}<br />
		</div><br />
        <div style="color: #999; font-size: 10px;">{hook name="checkout:summary_products"} {include file="common_templates/options_info.tpl" product_options=$product.product_options no_block=true}{/hook}<br />
        </div><br />
		{/if}<br />

```<br />
<br />
 <img src="upload://3CSXzhYnwJFbnLecfQNa90cDjBE.gif" class="bbc_emoticon" alt="B)">