yaloe2017 Posted August 18, 2017 Share Posted August 18, 2017 (edited) Hello, My shop is almost finished. There is one thing i cannot archive. I want my shoe sizes to be greyed out when the are out of stock. I know I can hide them via the backend (Display unavailable product attributes on the product page) Thank you! Edited August 18, 2017 by yaloe2017 (see edit history) Link to comment Share on other sites More sharing options...
yaloe2017 Posted August 18, 2017 Author Share Posted August 18, 2017 (edited) I fixed this issue: In product.tpl (add the black lines) <ul id="group_{$id_attribute_group}"> {foreach from=$group.attributes key=id_attribute item=group_attribute} {if {$group.attributes_quantity[{$id_attribute|intval}]} > 1} //product higher then 0 is stock <li class="input-container float-left"> <input class="input-radio" type="radio" data-product-attribute="{$id_attribute_group}" name="group[{$id_attribute_group}]" value="{$id_attribute}"{if $group_attribute.selected} checked="checked"{/if}> <span class="radio-label">{$group_attribute.name}</span> </li> {/if} {if {$group.attributes_quantity[{$id_attribute|intval}]} < 1} // product lower then -1 is out of stock <li class="input-container out-of-stock-float-left"> <input class="input-radio" type="radio" data-product-attribute="{$id_attribute_group}" name="group[{$id_attribute_group}]" value="{$id_attribute}"{if $group_attribute.selected} checked="checked"{/if}> <span class="radio-label">{$group_attribute.name}</span> </li> {/if} {/foreach} </ul> You can style using CSS: For example to use color red and line through: /* out of stock css */ li.input-container.out-of-stock-float-left { float: left !important; color: red !important; } li.input-container.out-of-stock-float-left span.radio-label { text-decoration: line-through; } /* end out of stock css */ Cheers Edited August 18, 2017 by yaloe2017 (see edit history) 1 Link to comment Share on other sites More sharing options...
Piter17 Posted October 7, 2019 Share Posted October 7, 2019 Hello, I need the same solution, but for presta 1.7. Anyone can help me? Link to comment Share on other sites More sharing options...
Piter17 Posted April 10, 2020 Share Posted April 10, 2020 BUMP Link to comment Share on other sites More sharing options...
Knowband Plugins Posted April 10, 2020 Share Posted April 10, 2020 Can need to make the similar changes in the following file for PS1.7 theme/{your_theme}/templates/catalog/partials/product-variants.tpl Link to comment Share on other sites More sharing options...
matejmili Posted April 12, 2020 Share Posted April 12, 2020 Hi! I use Prestashop 1.7.5.1 theme/{your_theme}/templates/catalog/partials/product-variants.tpl I have make changes but don't working fine. Can anyone help me how to fix it? <div class="product-variants"> {foreach from=$groups key=id_attribute_group item=group} {if !empty($group.attributes)} <div class="clearfix product-variants-item"> <span class="control-label">{$group.name}</span> {if $group.group_type == 'select'} <select class="form-control form-control-select" id="group_{$id_attribute_group}" data-product-attribute="{$id_attribute_group}" name="group[{$id_attribute_group}]"> {foreach from=$group.attributes key=id_attribute item=group_attribute} <option value="{$id_attribute}" title="{$group_attribute.name}"{if $group_attribute.selected} selected="selected"{/if}>{$group_attribute.name}</option> {/foreach} </select> {elseif $group.group_type == 'color'} <ul id="group_{$id_attribute_group}"> {foreach from=$group.attributes key=id_attribute item=group_attribute} {if {$group.attributes_quantity[{$id_attribute|intval}]} > 1} //product higher then 0 is stock <li class="pull-left input-container"> <label> <input class="input-color" type="radio" data-product-attribute="{$id_attribute_group}" name="group[{$id_attribute_group}]" value="{$id_attribute}"{if $group_attribute.selected} checked="checked"{/if}> <span {if $group_attribute.html_color_code}class="color" style="background-color: {$group_attribute.html_color_code}" {/if} {if $group_attribute.texture}class="color texture" style="background-image: url({$group_attribute.texture})" {/if} ><span class="sr-only">{$group_attribute.name}</span></span> </label> </li> {/if} {/foreach} </ul> {elseif $group.group_type == 'radio'} <ul id="group_{$id_attribute_group}"> {foreach from=$group.attributes key=id_attribute item=group_attribute} {if {$group.attributes_quantity[{$id_attribute|intval}]} < 1} // product lower then -1 is out of stock <li class="input-container pull-left"> <label> <input class="input-radio" type="radio" data-product-attribute="{$id_attribute_group}" name="group[{$id_attribute_group}]" value="{$id_attribute}"{if $group_attribute.selected} checked="checked"{/if}> <span class="radio-label">{$group_attribute.name}</span> </label> </li> {/if} {/foreach} </ul> {/if} </div> {/if} {/foreach} </div> Link to comment Share on other sites More sharing options...
Guest Posted April 12, 2020 Share Posted April 12, 2020 (edited) . Edited July 26, 2021 by Guest (see edit history) Link to comment Share on other sites More sharing options...
matejmili Posted April 12, 2020 Share Posted April 12, 2020 thank you! I'm a beginner so I don't have much experience.. I don't understand how to make that red line, that size should be crossed when it is sold out?? Link to comment Share on other sites More sharing options...
Guest Posted April 12, 2020 Share Posted April 12, 2020 (edited) . Edited July 26, 2021 by Guest (see edit history) Link to comment Share on other sites More sharing options...
matejmili Posted April 12, 2020 Share Posted April 12, 2020 now it's red all, i want it to be just sold out red and strikethrough. Link to comment Share on other sites More sharing options...
matejmili Posted April 12, 2020 Share Posted April 12, 2020 i want same this Link to comment Share on other sites More sharing options...
Guest Posted April 12, 2020 Share Posted April 12, 2020 (edited) . Edited July 26, 2021 by Guest (see edit history) Link to comment Share on other sites More sharing options...
matejmili Posted April 12, 2020 Share Posted April 12, 2020 product-variants.tpl Link to comment Share on other sites More sharing options...
Guest Posted April 12, 2020 Share Posted April 12, 2020 (edited) . Edited July 26, 2021 by Guest (see edit history) Link to comment Share on other sites More sharing options...
matejmili Posted April 12, 2020 Share Posted April 12, 2020 sorry, here again. product-variants.tpl Link to comment Share on other sites More sharing options...
Guest Posted April 12, 2020 Share Posted April 12, 2020 (edited) . Edited July 26, 2021 by Guest (see edit history) Link to comment Share on other sites More sharing options...
matejmili Posted April 12, 2020 Share Posted April 12, 2020 sorry, i has add code but then get error on product page product-variants.tpl Link to comment Share on other sites More sharing options...
Guest Posted April 12, 2020 Share Posted April 12, 2020 (edited) . Edited July 26, 2021 by Guest (see edit history) Link to comment Share on other sites More sharing options...
matejmili Posted April 12, 2020 Share Posted April 12, 2020 now work, thank you very much! Link to comment Share on other sites More sharing options...
Guest Posted April 12, 2020 Share Posted April 12, 2020 (edited) . Edited July 26, 2021 by Guest (see edit history) Link to comment Share on other sites More sharing options...
Piter17 Posted April 12, 2020 Share Posted April 12, 2020 (edited) 50 minut temu, Guest napisał: Modified code for Prestashop 1.7. In attachment. Disable clicked values and change color to red. product-variants.tpl 4.27 kB · 2 downloads Hi, You are invaluable, thank you so much! I have got just a question about disabled attributes. Is it possible to grey them out, but make still active? I need the option: let me know, when the product is available again. P.S I fixed it:) You have to change: <li class="input-container" style="pointer-events: none; float: left !important;"> to <li class="input-container" style="pointer-events: auto; float: left !important;"> Edited April 12, 2020 by Piter17 (see edit history) Link to comment Share on other sites More sharing options...
Guest Posted April 12, 2020 Share Posted April 12, 2020 (edited) . Edited July 26, 2021 by Guest (see edit history) Link to comment Share on other sites More sharing options...
Guest Posted April 12, 2020 Share Posted April 12, 2020 (edited) . Edited July 26, 2021 by Guest (see edit history) Link to comment Share on other sites More sharing options...
Mayret Moda Colombia Posted April 13, 2020 Share Posted April 13, 2020 On 4/12/2020 at 3:59 PM, Guest said: I write a module on it to allow more settings, even for a drop-down list or colors. Tomorrow will be ready 😉 Will be free, but download only from my site. Hi, Do you have any news of that brilliant module? Link to comment Share on other sites More sharing options...
Guest Posted April 13, 2020 Share Posted April 13, 2020 (edited) . Edited July 26, 2021 by Guest (see edit history) Link to comment Share on other sites More sharing options...
Mayret Moda Colombia Posted April 13, 2020 Share Posted April 13, 2020 1 hour ago, Guest said: I'm doing the last testing. Ok! I will wait. It will be compatible with PS1.7X? Link to comment Share on other sites More sharing options...
Mayret Moda Colombia Posted April 13, 2020 Share Posted April 13, 2020 1 hour ago, Guest said: PS 1.6.1 to 1.7.6 Only radio buttons. My test page PS 1.7.6 here: https://e-apps.eu/test/ps-17/women/2-69-brown-bear-printed-sweater.html#/3-velikost-l It looks great, but I have a question, How does it behave with 1 size-color combination? For example: https://e-apps.eu/test/ps-17/men/1-hummingbird-printed-t-shirt.html If there is no stock of black for any size, is black and all sizes disabled? sorry for my english Link to comment Share on other sites More sharing options...
Guest Posted April 14, 2020 Share Posted April 14, 2020 (edited) . Edited July 26, 2021 by Guest (see edit history) Link to comment Share on other sites More sharing options...
LucasV Posted April 23, 2020 Share Posted April 23, 2020 On 4/12/2020 at 3:59 PM, Guest said: I write a module on it to allow more settings, even for a drop-down list or colors. Tomorrow will be ready 😉 Will be free, but download only from my site. Hi! Thanks for your work on this issue. I can't seem to find your module on your website, can I download it somewhere? Thanks. Lucas Link to comment Share on other sites More sharing options...
webmarko Posted May 20, 2020 Share Posted May 20, 2020 Hello, I would like to do the same thing, this my file template (Prestashop version 1.7.6.5) Thank you so much for your hellp product-variants.tpl Link to comment Share on other sites More sharing options...
webmarko Posted May 20, 2020 Share Posted May 20, 2020 I'm confused to use this code for my template file, can you please explain more. Thank you so much Link to comment Share on other sites More sharing options...
webmarko Posted May 20, 2020 Share Posted May 20, 2020 I'm having trouble putting this code into my file, could you help me please? Thank you so much Link to comment Share on other sites More sharing options...
bencassell Posted May 23, 2020 Share Posted May 23, 2020 This doesn't work for 1.7.6.5, I'm guessing because you can disable "out of stock" from view. I'd still really like the combination to show with a red line through it, is there a way to do it? Link to comment Share on other sites More sharing options...
LucasV Posted July 7, 2020 Share Posted July 7, 2020 I'm also still looking for a solution.. 😬 Link to comment Share on other sites More sharing options...
Aja2800 Posted August 27, 2020 Share Posted August 27, 2020 On 4/14/2020 at 6:44 AM, Guest said: Only sizes radio buttons. For other options I would have to write a java script that checks all the options. This is no longer easy. Did you make this module? I would be happy to pay for it, really need this functionality for my shop Link to comment Share on other sites More sharing options...
Aja2800 Posted August 27, 2020 Share Posted August 27, 2020 Just now, ndiaga said: Hi, Yes, I solve a client's problem with a module. Can you send a link? Thanks! Link to comment Share on other sites More sharing options...
LucasV Posted August 31, 2020 Share Posted August 31, 2020 Hi, I'm also interested. Link to comment Share on other sites More sharing options...
chemocycling Posted September 26, 2020 Share Posted September 26, 2020 i need the same think .did you solve this ? i need to strike out the out of stock attributes Link to comment Share on other sites More sharing options...
chemocycling Posted September 26, 2020 Share Posted September 26, 2020 6 minutes ago, ndiaga said: Yes, I did solve it . I share the code here : https://blog.prestatuts.com/prestashop-desable-product-combinations-when-out-of-stock/ i dont want to disable . i want to grey out (strike out) the out of stock Link to comment Share on other sites More sharing options...
chemocycling Posted September 26, 2020 Share Posted September 26, 2020 (edited) 3 minutes ago, ndiaga said: Yes desable means gray out. ok . 1.can this be clickable ? 2.in what place i put the code in product-variants.tpl ? can you help me product-variants (3).tpl Edited September 26, 2020 by chemocycling (see edit history) Link to comment Share on other sites More sharing options...
chemocycling Posted September 26, 2020 Share Posted September 26, 2020 On 4/12/2020 at 4:59 PM, Guest said: I write a module on it to allow more settings, even for a drop-down list or colors. Tomorrow will be ready 😉 Will be free, but download only from my site. hi where we can download that module . i cant find it thanks Link to comment Share on other sites More sharing options...
Inter Svetainė Posted October 15, 2020 Share Posted October 15, 2020 On 4/12/2020 at 3:20 PM, Guest said: Add custom style to TPL code. to: You edit this in the code section where count is <1. In this code section, you need to add a condition when count = 0. If you don't have the knowledge, it's better to hire someone and you're done in a few minutes. Please never use !important in CSS. Just add needed styling in custom.css or similar file to overwrite theme or/and global CSS declarations. Link to comment Share on other sites More sharing options...
rosejaafar Posted November 12, 2020 Share Posted November 12, 2020 (edited) On 8/19/2017 at 4:05 AM, yaloe2017 said: I fixed this issue: In product.tpl (add the black lines) <ul id="group_{$id_attribute_group}"> {foreach from=$group.attributes key=id_attribute item=group_attribute} {if {$group.attributes_quantity[{$id_attribute|intval}]} > 1} //product higher then 0 is stock <li class="input-container float-left"> <input class="input-radio" type="radio" data-product-attribute="{$id_attribute_group}" name="group[{$id_attribute_group}]" value="{$id_attribute}"{if $group_attribute.selected} checked="checked"{/if}> <span class="radio-label">{$group_attribute.name}</span> </li> {/if} {if {$group.attributes_quantity[{$id_attribute|intval}]} < 1} // product lower then -1 is out of stock <li class="input-container out-of-stock-float-left"> <input class="input-radio" type="radio" data-product-attribute="{$id_attribute_group}" name="group[{$id_attribute_group}]" value="{$id_attribute}"{if $group_attribute.selected} checked="checked"{/if}> <span class="radio-label">{$group_attribute.name}</span> </li> {/if} {/foreach} </ul> You can style using CSS: For example to use color red and line through: /* out of stock css */ li.input-container.out-of-stock-float-left { float: left !important; color: red !important; } li.input-container.out-of-stock-float-left span.radio-label { text-decoration: line-through; } /* end out of stock css */ Cheers I have make changes but don't working fine. Can anyone help me how to fix it? Edited November 14, 2020 by rosejaafar (see edit history) Link to comment Share on other sites More sharing options...
Inter Svetainė Posted November 12, 2020 Share Posted November 12, 2020 Could You try to mark places in screenshot where to look at and what You want to do? Link to comment Share on other sites More sharing options...
rosejaafar Posted November 13, 2020 Share Posted November 13, 2020 6 hours ago, Inter Svetainė said: Could You try to mark places in screenshot where to look at and what You want to do? my size attributes don't work properly after i make a change and just a certain size appear. it should appear from size S to 3XL and position of the size not well organized .Please help me😕 Link to comment Share on other sites More sharing options...
rosejaafar Posted November 13, 2020 Share Posted November 13, 2020 6 hours ago, Inter Svetainė said: Could You try to mark places in screenshot where to look at and what You want to do? i want my sizes attributes same like this,,i have use the code but not work well Link to comment Share on other sites More sharing options...
Inter Svetainė Posted November 13, 2020 Share Posted November 13, 2020 6 hours ago, rosejaafar said: i want my sizes attributes same like this,,i have use the code but not work well How good You are in the programing? HTML from 1 to 10. CSS from 1 to 10. PHP from 1 to 10. Are You familiar with Prestashop 1.7.x structure? I need to know this to help You. Link to comment Share on other sites More sharing options...
rosejaafar Posted November 13, 2020 Share Posted November 13, 2020 1 hour ago, Inter Svetainė said: How good You are in the programing? HTML from 1 to 10. CSS from 1 to 10. PHP from 1 to 10. Are You familiar with Prestashop 1.7.x structure? I need to know this to help You. I'm IT student and still learning about programming..my HTML knowledge from 8 to 9,,but PHP about 5 to 6...Nope,,im not familiar with Prestashop 1.7 structure,,first time i'm create website use prestashop.Please help me to find the error..This website for my internship project. Link to comment Share on other sites More sharing options...
Guest Posted November 14, 2020 Share Posted November 14, 2020 (edited) . Edited July 26, 2021 by Guest (see edit history) Link to comment Share on other sites More sharing options...
rosejaafar Posted November 14, 2020 Share Posted November 14, 2020 Done,, my size attribute greyed out already for out of stock product,,thank you for your help☺️ Link to comment Share on other sites More sharing options...
Guest Posted November 14, 2020 Share Posted November 14, 2020 (edited) . Edited July 26, 2021 by Guest (see edit history) Link to comment Share on other sites More sharing options...
Inter Svetainė Posted December 4, 2020 Share Posted December 4, 2020 Please don't use inline styling never ever anywhere. https://softwareengineering.stackexchange.com/questions/319629/why-is-it-bad-to-use-inline-styling-in-html-for-generic-styles Link to comment Share on other sites More sharing options...
JBW Posted December 4, 2020 Share Posted December 4, 2020 I have released a new module that can disable/grey out attributes including colors that are out of stock and also insert the price impact or total price: https://addons.prestashop.com/en/product.php?id_product=50460 Link to comment Share on other sites More sharing options...
rb10 Posted December 14, 2020 Share Posted December 14, 2020 On 11/14/2020 at 7:58 AM, 4you.software said: ./themes/classic/templates/catalog/_partials/product-variants.tpl find: {elseif $group.group_type == 'radio'} change to: {elseif $group.group_type == 'radio'} <ul id="group_{$id_attribute_group}"> {foreach from=$group.attributes key=id_attribute item=group_attribute} <li class="input-container float-xs-left" {if {$group.attributes_quantity[{$id_attribute|intval}]} < 1}style="pointer-events:none;"{/if}> <label> <input class="input-radio" type="radio" data-product-attribute="{$id_attribute_group}" name="group[{$id_attribute_group}]" value="{$id_attribute}"{if $group_attribute.selected} checked="checked"{/if}> <span class="radio-label" {if {$group.attributes_quantity[{$id_attribute|intval}]} < 1}style="color:red;"{/if}>{if {$group.attributes_quantity[{$id_attribute|intval}]} < 1}<strike>{$group_attribute.name}</strike>{else}{$group_attribute.name}{/if}</span> </label> </li> {/foreach} </ul> {/if} hi thanks for you, how i can apply this also for color attribute ? Link to comment Share on other sites More sharing options...
rb10 Posted December 14, 2020 Share Posted December 14, 2020 1 minute ago, ndiaga said: Hi, You can follow the tutorial I shared. thanks, where is tutorial link ? Link to comment Share on other sites More sharing options...
rb10 Posted December 14, 2020 Share Posted December 14, 2020 40 minutes ago, ndiaga said: https://blog.prestatuts.com/prestashop-desable-product-combinations-when-out-of-stock/ thanks, but this explain only for radio and not for color i need for this code part (i wanna have color like as grey but clickable) {elseif $group.group_type == 'color'} <ul id="group_{$id_attribute_group}"> {foreach from=$group.attributes key=id_attribute item=group_attribute} <li class="float-xs-left input-container"> <label> <input class="input-color" type="radio" data-product-attribute="{$id_attribute_group}" name="group[{$id_attribute_group}]" value="{$id_attribute}"{if $group_attribute.selected} checked="checked"{/if}> <span {if $group_attribute.html_color_code}class="color" style="background-color: {$group_attribute.html_color_code}" {/if} {if $group_attribute.texture}class="color texture" style="background-image: url({$group_attribute.texture})" {/if} ><span class="sr-only">{$group_attribute.name}</span></span> </label> </li> {/foreach} </ul> Link to comment Share on other sites More sharing options...
Guest Posted December 14, 2020 Share Posted December 14, 2020 (edited) . Edited July 26, 2021 by Guest (see edit history) Link to comment Share on other sites More sharing options...
rb10 Posted December 14, 2020 Share Posted December 14, 2020 17 minutes ago, 4you.software said: It's all working for me. Everything can be done, such as a crossed out color and text completion. I don't want anyone to contact me in a private message. If I want to answer, I will answer, if I want to give codes, I will give them. Programming gives me bread, advice in the forum gives me nothing. @ndiaga will definitely advise you. sorry for my message, i understand perfectly! for this result you have used code quoted over, because i can't see part for color. thanks, and sorry again! Link to comment Share on other sites More sharing options...
alebupal Posted January 20, 2021 Share Posted January 20, 2021 Hi, thank you very much for the code, but I have a problem that I cannot solve. I have two attributes: size and color. I have: Product X: color red, size L with 5 units. Product X: blue color, size L with 0 units. With this code, the product X with size L and blue color on the web is shown with stock because the stock is the sum of both sizes. Is there any possible solution? Link to comment Share on other sites More sharing options...
Ray UK Posted February 19, 2021 Share Posted February 19, 2021 @Guest Thankyou, that code is working fine Could something like this code be utilized for an out-of-stock button on the category list of products Something along the lines of this {if variants exist and stock is greater than 1 on any attribute} <Choose options button> {else} {if in-stock} <View Product> {else} <Out of stock button} {/if} Or if that's not possible, how about to add a product flag to the product on category list view saying "Out of stock" Many thanks Link to comment Share on other sites More sharing options...
Guest Posted February 20, 2021 Share Posted February 20, 2021 (edited) Product list Here is an example of how to find out if a product has variants, how quantity are in stock, etc ... ./themes/classic/templates/catalog/_partials/miniatures/product.tpl {if $product.main_variants} all variants quantity: {$product.quantity_all_versions} <br /> default variant quantity: {$product.quantity} <br /> {if $product.quantity_all_versions > 0} yes, count quantity all variants in stock <br /> {else} all variant quantity <= 0 <br /> {/if} {if $product.quantity > 0} yes, default variant in stock <br /> {else} default variant quantity <= 0 <br /> {/if} {else} product quantity without variant: {$product.quantity} {if $product.quantity > 0} yes, product in stock <br /> {else} product out of stock, quantity <= 0 <br /> {/if} {/if} Edited February 20, 2021 by Guest (see edit history) Link to comment Share on other sites More sharing options...
Ray UK Posted February 20, 2021 Share Posted February 20, 2021 (edited) HI Daniel, thanks for the reply and help. Can I just check that the first line is correct ? {if $product.main_variants} Its just that some of my products with variants says this is false so uses the code after the {else} statement. If I remove all that first line, the {else} and the last line {/if} then the variables do show the count for all the variants correctly, so they are fine. Many thanks Ray Edited February 20, 2021 by MerseyRay (see edit history) Link to comment Share on other sites More sharing options...
Guest Posted February 21, 2021 Share Posted February 21, 2021 $product.main_variants It's the same as a function= Product::hasAttributes(). I gave a code sample for Prestashop 1.7.7.0 Link to comment Share on other sites More sharing options...
Fedan80 Posted June 14, 2021 Share Posted June 14, 2021 This is a best way if you have one attribute for a product. But, if you have 2 attribute, you display in red only the attribute that are unavailable for all combinations. Link to comment Share on other sites More sharing options...
LuiMai91 Posted December 16, 2023 Share Posted December 16, 2023 On 14/11/2020 at 8:57 AM, rosejaafar dice: Done,, my size attribute greyed out already for out of stock product,,thank you for your help☺️ Hi everyone, i need this same solution for my clothing store, PS 1.7.6.1, i can't see messages of "Guest" user that seem to give the correct solution, can help me? Thanks Link to comment Share on other sites More sharing options...
Ray UK Posted December 18, 2023 Share Posted December 18, 2023 (edited) @LuiMai91 In your product-variants.tpl file, copy my "Span" section from here {elseif $group.group_type == 'radio'} <ul id="group_{$id_attribute_group}"> {foreach from=$group.attributes key=id_attribute item=group_attribute} <li class="input-container float-xs-left" {if {$group.attributes_quantity[{$id_attribute|intval}]} < 1}style="pointer-events:none;"{/if}> <label> <input class="input-radio" type="radio" data-product-attribute="{$id_attribute_group}" name="group[{$id_attribute_group}]" value="{$id_attribute}" title="{$group_attribute.name}"{if $group_attribute.selected} checked="checked"{/if}> <span class="radio-label" {if {$group.attributes_quantity[{$id_attribute|intval}]} < 1}style="color:red;"><strike>{$group_attribute.name}</strike>{else}"> {$group_attribute.name}{/if}</span> </label> </li> {/foreach} </ul> {/if} Edited December 18, 2023 by MerseyRay (see edit history) Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now