I can skip modifiers in tpl file like this code below.
<br />
{if $oi.product_options}<br/>{include file="common/options_info.tpl" product_options=$oi.product_options skip_modifiers=true}{/if}<br />
```<br />
<br />
But I want to skip option_name too. (in product_options_descriptions table) How to skip option_name? Or how can I learn what can I skip?
You should modify the design\themes\YOUR_THEME\templates\common\options_info.tpl file. For example, for responsive theme replace:
{$po.option_name}:
with
{if !$skip_option_name}{$po.option_name}: {/if}
Them call this file in the following way:
{if $oi.product_options}
{include file="common/options_info.tpl" product_options=$oi.product_options skip_modifiers=true skip_option_name=true}{/if}
Hope this will help
[quote name='ooaykac' timestamp='1429873518' post='212560']
Great. Thank you eCom.
[/quote]
You are welcome!