Jump to content

[SOLVED] How to show available combinations


Recommended Posts

Hi, I have a product, there are 3 groups of attributes, in each group cca 10 attributes. Now when I select the combination that doesn't exist, Presta gives "this combination doesn't exist" message (something like that, I don't have the english language file). Is there a way to hide the combinations that don't exist? I mean when I select one attribute from first group, the attributes in other groups that don't exist with this one would be hidden? Thanks

Link to comment
Share on other sites

Thanks for reply, is there another solution how to let the customer know which combinations are available? Now the customer has to guess what combinations could be available, wchich with raising number of options is really boring...

Link to comment
Share on other sites

It already displays the number of items in stock when you select a quantity, so the customer can see if a combination is available before clicking "Add to cart". I think that is enough, but if you really need to display a list of unavailable combinations, you could use code like the following in product.tpl:

{if isset($groups)}{strip}
   {l s='The following combinations are unavailable:'}

   {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}
                       {if $id_attribute == $attribute|substr:1:-1}
                           {$group_attribute}{if !$smarty.foreach.attribute.last}, {/if}
                       {/if} 
                   {/foreach}
               {/foreach}
           {/foreach}                


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



This code probably isn't very efficient, but it should work.

Link to comment
Share on other sites

Hi, thanks for your help, I think I didn't specify exactly enough what I need. The code you posted will show list of combinations out of stock, right? I would need to make a list of valid combinations, combinations that exist.
My problem is I have an item that has 3 groups of attributes, 10 attributes in each group, but not all the combinations of them exist (let's say only 20 percent of all possible combinations exist). Now the customer has to guess the valid combinations.

Link to comment
Share on other sites

In that case, use the following code:

{if isset($groups)}{strip}
   {l s='The following combinations are available:'}

   {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}
                       {if $id_attribute == $attribute|substr:1:-1}
                           {$group_attribute}{if !$smarty.foreach.attribute.last}, {/if}
                       {/if} 
                   {/foreach}
               {/foreach}
           {/foreach}                


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

  • Like 1
Link to comment
Share on other sites

  • 1 month later...

Hi everybody,
I´m searching for something like this code, but now, i need to put an add a cart from this list.
For example, in my shop , the code from rocky show this:
140, 80, PDRD
140, 80, W-23
140, 80, w27
210, 280, w-24

Its Ok, those are combinations from my products, but, below i see the selects that i want to delete. I need the people buy the products from the list above.
Each combination has a reference. Another option would be put a select with references and hidden the other selects

Anyone knows how to make this?
Thanks for all

Link to comment
Share on other sites

It sounds like I should incorporate this code into the next version of my "Product attributes as radio buttons and checkboxes" module. I was planning to add a "Combination view" as well as the "Attribute view" it currently has, then add the option to have "Add to cart" buttons next to each. I just have to find time to do it.

  • Like 2
Link to comment
Share on other sites

  • 5 weeks later...
In that case, use the following code:

{if isset($groups)}{strip}
   {l s='The following combinations are available:'}

   {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}
                       {if $id_attribute == $attribute|substr:1:-1}
                           {$group_attribute}{if !$smarty.foreach.attribute.last}, {/if}
                       {/if} 
                   {/foreach}
               {/foreach}
           {/foreach}                


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



I need the same, is this code instead of one in product.tpl or just to ammend ? In wicht Postition ? after of before block " <!-- attributes --> " ?
Link to comment
Share on other sites

  • 3 months later...
In that case, use the following code:

{if isset($groups)}{strip}
   {l s='The following combinations are available:'}

   {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}
                       {if $id_attribute == $attribute|substr:1:-1}
                           {$group_attribute}{if !$smarty.foreach.attribute.last}, {/if}
                       {/if} 
                   {/foreach}
               {/foreach}
           {/foreach}                


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



How do I also display the combination reference and price along with the available combination list?
Link to comment
Share on other sites

  • 1 month later...
In that case, use the following code:
{if isset($groups)}{strip}
   {l s='The following combinations are available:'}

   {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}
                       {if $id_attribute == $attribute|substr:1:-1}
                           {$group_attribute}{if !$smarty.foreach.attribute.last}, {/if}
                       {/if} 
                   {/foreach}
               {/foreach}
           {/foreach}                


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




Thank you very much for this code! :)
But I have a problem...

Now this code generate something like this:
size_1, color_1, color_2, color_3 ...
size_1, size_2, color_1, color_2 ...
...


But how to display attributes with names of groups inside?
Group1: size_A Group2: color_A, color_B, color_C ...
Group1: size_A, size_B Group2: color_A, color_B ...
...



Thanks in advance.
Link to comment
Share on other sites

  • 2 weeks later...

Dear PrestaShop developers,

Is there any way to show available combinations in product-list.tpl ? I tried to modify the above code but the result is blank.
Here is what I did: (I added "product." to some variables... )

{if isset($groups)}{strip}
   {l s='The following combinations are available:'}

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


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


Thanks to all!

Link to comment
Share on other sites

In PrestaShop v1.4, you can simply go to the Preferences > Products tab and change 'Display "add to cart" button when product has attributes' to 'No', then click the save button. In PrestaShop v1.3, you must put the following code around the add to cart button code:

{if $product.id_product_attribute == 0}



and the following after:

{/if}

Link to comment
Share on other sites

I thought products with attributes has an id_product_attribute greater than 0, which is why I said == 0, so that only products without attributes display "Add to cart". Using > 0 should hide the "Add to cart" button on all products that don't have attributes.

Link to comment
Share on other sites

  • 1 year later...

Hello rocky. I want to ask. Is it possible now to show available combinations via dropdown select? I mean like this case.

I have combinations like this :

1. Color Black size M

2. Color Black size S

3. Color Orange size S

 

Can we update the product.tpl so it could be dynamically changing (using javascript on change maybe) So if the customer choose color black it will show attribute groups size with have value M and S. But if the customer choose the orange color it will show only "S" value in Size.

  • Like 1
Link to comment
Share on other sites

  • 2 months later...

Hello rocky. I want to ask. Is it possible now to show available combinations via dropdown select? I mean like this case.

I have combinations like this :

1. Color Black size M

2. Color Black size S

3. Color Orange size S

 

Can we update the product.tpl so it could be dynamically changing (using javascript on change maybe) So if the customer choose color black it will show attribute groups size with have value M and S. But if the customer choose the orange color it will show only "S" value in Size.

 

did you solve your preblem, i have same?

  • Like 1
Link to comment
Share on other sites

  • 1 month later...
  • 8 months later...

Hi, about a combinations i have

 

The question is which is more correct and better way to check if is set combinations?

 

Is enough to put in *.tpl files :

 

{if !isset ($groups)}
//some code if not set combinations at all for this product
<div></div>
<div>Combinations NOT found! Show normal cart</div>
{/if}
//here is a code for all possibilities with or without combinations
<div>Some code</div>
{if isset ($groups)}
//here is code which shows only if combinations founded
<div>Combinations found! Do not show a cart, but show table combinations i use</div>
{/if}

 

Is this all correct way to check {if !isset ($groups)} ?

 

And can i use same check in every module i have installed?

Edited by anseme (see edit history)
Link to comment
Share on other sites

  • 3 months later...
  • 3 weeks later...
  • 4 months later...
  • 6 months later...

In that case, use the following code:

 

{if isset($groups)}{strip}    {l s='The following combinations are available:'}
    {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}                        {if $id_attribute == $attribute|substr:1:-1}                            {$group_attribute}{if !$smarty.foreach.attribute.last}, {/if}                        {/if}                     {/foreach}                {/foreach}            {/foreach}                            
        {/if}    {/foreach}{/strip}{/if}

 

if i understand it right this code is to showing only combinations that have quantites greater than 0. if it is this case,

 

where should i put this code?

 

what happens when some of existing combinations with quantites = 0 get new quantites?

 

will this combinations be visible when the quantites changes from 0 to 1?

 

thx in forward

 

regards

 

p.s i am using ver 1.6.0.8

is there any option to choose such thing in ver. 1.6.0.8

 

 

p.p.s. i found the option! ignore this post

Edited by skadoic1 (see edit history)
Link to comment
Share on other sites

  • 1 month later...

if i understand it right this code is to showing only combinations that have quantites greater than 0. if it is this case,

 

where should i put this code?

 

what happens when some of existing combinations with quantites = 0 get new quantites?

 

will this combinations be visible when the quantites changes from 0 to 1?

 

thx in forward

 

regards

 

p.s i am using ver 1.6.0.8

is there any option to choose such thing in ver. 1.6.0.8

 

 

p.p.s. i found the option! ignore this post

 

Wich is the option? Show us. Thanks

Link to comment
Share on other sites

  • 8 months later...

Hy, First sorry for my bad english

I want to show if the combination doesn`t exist, like text "this combination doesn`t exist", but i don`t want to show text "this product is no longer in stoc", in product-tpl.

If i comment the text with no longer... automatic disable the text with this combination dosent exist...the add to cart dosent appaer if not exist the combination, but i want to show same this text "this combination doesn`t exist.

Please help me how .

Respect,

Krisztian

Edited by ZoZo21 (see edit history)
Link to comment
Share on other sites

  • 3 months later...

Hello and thanks rocky for the code, works very good:

{if isset($groups)}{strip}    {l s='The following combinations are unavailable:'}
    {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}                        {if $id_attribute == $attribute|substr:1:-1}                            {$group_attribute}{if !$smarty.foreach.attribute.last}, {/if}                        {/if}                     {/foreach}                {/foreach}            {/foreach}                            
        {/if}    {/foreach}{/strip}{/if}

But how to not show the "{l s='The following combinations are unavailable:'}" if all combinations are available ? With this code the unavailable text appear if there are all combination available too.

Thanks !

  • Like 1
Link to comment
Share on other sites

  • 1 month later...

Wich is the option? Show us. Thanks

under preferences go to products page.

 

 

Show Unavailable variations on the product page = No.

 

the combinations with qty = 0 will not show on frontoffice

 

if the qty changes from 0 to 1, the combination will be on frontoffice visible

 

using prestashop 1.6.1.1

Edited by skadoic1 (see edit history)
Link to comment
Share on other sites

  • 2 months later...

I have modified Rocky's code to display it on a table:

{if isset($groups)}
   {strip}    {l s='The following combinations are unavailable:'}
   <br />
   <table>
     <thead>
       <tr>
         {foreach from=$groups key=id_attribute_group item=group}
            {if $group.attributes|@count}
               <th>{$group.name|escape:'html':'UTF-8'} </th>
            {/if}
         {/foreach}
       </tr>
     </thead>
     <tbody>
        {foreach from=$combinations key=idCombination item=combination}
           {if $combination.quantity == 0}
              <tr>
                 {assign var=attributes value=','|explode:$combination.list}
                 {foreach from=$groups key=id_attribute_group item=group}
                    <td>
                    {foreach from=$group.attributes key=id_attribute item=group_attribute}
                       {foreach from=$attributes item=attribute name=attribute}
                          {if $id_attribute == $attribute|substr:1:-1}
                             {$group_attribute}
                          {/if}
                       {/foreach}
                    {/foreach}
                    </td>
                 {/foreach}
              </tr>
           {/if}
        {/foreach}
     </tbody>
   </table>
   {/strip}
{/if}

I will try to create a "Select me!" button with jquery that allows the customer to actually choose that combination by clicking it.

I hope this helps. And thanks Rocky for your code, it really helped me.

Link to comment
Share on other sites

  • 5 months later...
  • 2 weeks later...

Hello guys is any way to hide the unavailable combinations form the default list?

Thanks

 

 

Where would you hide your unavailable combinations? Backoffice or frontoffice?

 

As i know in backoffice you can't do it. But in Frontoffice i posted in this thread how to solve not to show combinations with no quantity. In prestashop is built in this option.

Link to comment
Share on other sites

  • 1 year later...

How can i show combination group name  in cart summary or top cart block .Now when i add some combination to cart it displays only values of combinations like:  5,6   and we dont know if it is length or width .

I would like to show  length:5, width:6

i noticed that in block cart we have:

{if isset($product.attributes_small)}
												
													<strong><a href="{$link->getProductLink($product, $product.link_rewrite, $product.category, null, null, $product.id_shop, $product.id_product_attribute)|escape:'html':'UTF-8'}" title="{l s='Product detail' mod='blockcart'}"> {$product.attributes_small}</a></strong>
												
											{/if}

how can i get names of attrobutes (group name)

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...