Thank you very much for sharing this module!
Post automatically merged:
If you want to hide the feature name from the product details:
Edit this file: themes\{Theme name}\templates\catalog\_partials\product-details.tpl
Code:
{foreach from=$product.grouped_features item=feature}
<dt class="name">{$feature.name}</dt>
<dd class="value">{$feature.value|escape:'htmlall'|nl2br nofilter}</dd>
{/foreach}
Add a few lines:
Code:
{foreach from=$product.grouped_features item=feature}
{if $feature.name eq 'Condition'}
{else}
<dt class="name">{$feature.name}</dt>
<dd class="value">{$feature.value|escape:'htmlall'|nl2br nofilter}</dd>
{if}
{/foreach}
Post automatically merged:
Has anyone tried this on 8.2? Does it work?
I tested with version 8.2.1 and it works