Jump to content

[HELP] attribute quantity


Recommended Posts

I found this code which i can show the attribute names on the product page:

{if isset($groups)}{strip}

   {foreach from=$combinations key=idCombination item=combination}
       {if $combination.quantity > 0}
           {assign var=attributes value=','|explode:$combination.list}
           {foreach from=$groups key=id_attribute_group item=group}
               {foreach from=$group.attributes key=id_attribute item=group_attribute}
                   {foreach from=$attributes item=attribute name=attribute quantity=attribute}
                       {if $id_attribute == $attribute|substr:1:-1}
                           {$group_attribute}{if !$smarty.foreach.attribute.last}, {/if}
                       {/if} 
                   {/foreach}
               {/foreach}
           {/foreach}                


       {/if}
   {/foreach}
{/strip}{/if} 


Anyone knows how to show the quantity also?

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...