v1.6-v1.7-v8x Waver - light and fast PrestaShop product flags labels custom flag label last version 20/11/2023

Eleos

Well-known member
Master
Diamond
Elite
Joined
Dec 1, 2020
Messages
355
Reaction score
921
Points
93
NullCash
2,518
thanks for sharing.

Waver - light and fast PrestaShop product flags​

Version 1.0.2

What is the latest version?
Last Update 17 October 2024
 

veikoj

New member
XNullUser
Joined
Apr 13, 2025
Messages
4
Reaction score
0
Points
1
Location
Estoni
NullCash
1
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
 
Last edited:
Top