Chant to capitalize

This commit is contained in:
Roman Pyrih
2026-01-14 10:32:31 +01:00
parent feb9fa2a31
commit a203e3b507
2 changed files with 12 additions and 8 deletions

View File

@@ -33,9 +33,13 @@
<br>
{** CUSTOM: hide secant variant label **}
<span class="control-label-selected">
{foreach from=$group.attributes key=id_attribute item=group_attribute}
{if $group_attribute.selected}{$group_attribute.name}{/if}
{/foreach}
<span class="control-label-selected">
{foreach from=$group.attributes item=group_attribute}
{if $group_attribute.selected}
{$group_attribute.name|substr:0:1|upper}{$group_attribute.name|substr:1}
{/if}
{/foreach}
</span>
</span>
</span>
@@ -79,7 +83,7 @@
class="{if $group_attribute.selected}active{/if}"
>
<span class="li-checkbox"></span>
{$group_attribute.name}
{$group_attribute.name|substr:0:1|upper}{$group_attribute.name|substr:1}
</li>
{/foreach}
</ul>