PrestaShop Forum

The best place in the world to ask questions about PrestaShop and get advice from our passionate community!

PrestaShop Forum

Jump to content

 

[SOLVED] How to show available combinations

25 replies to this topic
#1
vasikgreif

    PrestaShop Apprentice

  • Members
  • PipPip
  • 45 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

#2
rocky

    PrestaShop Superstar

  • US Moderators
  • 9995 posts
No, it's not possible. It would require dynamically changing the options in the dropdowns, which would be difficult.
Free PrestaShop Guides - Hover over CMS and then PrestaShop on the menu to view all guides

#3
vasikgreif

    PrestaShop Apprentice

  • Members
  • PipPip
  • 45 posts
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...

#4
rocky

    PrestaShop Superstar

  • US Moderators
  • 9995 posts
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.
Free PrestaShop Guides - Hover over CMS and then PrestaShop on the menu to view all guides

#5
vasikgreif

    PrestaShop Apprentice

  • Members
  • PipPip
  • 45 posts
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.

#6
rocky

    PrestaShop Superstar

  • US Moderators
  • 9995 posts
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}

Free PrestaShop Guides - Hover over CMS and then PrestaShop on the menu to view all guides

#7
vasikgreif

    PrestaShop Apprentice

  • Members
  • PipPip
  • 45 posts
Thanks, works like a charm!

#8
lightdown

    PrestaShop Newbie

  • Members
  • Pip
  • 6 posts
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

#9
rocky

    PrestaShop Superstar

  • US Moderators
  • 9995 posts
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.
Free PrestaShop Guides - Hover over CMS and then PrestaShop on the menu to view all guides

#10
cd2500

    PrestaShop Legend

  • US Moderators
  • 10504 posts

From 1277675889:

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 --> " ?
Presta 1.4.5.1/1.5.3.1, Presta Store Manager von eMagicOne. Mitarbeit und Tests bei Entwicklerversionen. We speak: Deutsch + English + Português + Español(Castellano) + Français. http://www.prestasho...mit-prestashop/
Freelancer für Prestashop zu kleinen Preisen - https://www.facebook.com/Cd2500

#11
rocky

    PrestaShop Superstar

  • US Moderators
  • 9995 posts
You can add this code wherever you want it to appear. You shouldn't overwrite any other code.
Free PrestaShop Guides - Hover over CMS and then PrestaShop on the menu to view all guides

#12
cd2500

    PrestaShop Legend

  • US Moderators
  • 10504 posts
ok. Thx, I try.
Presta 1.4.5.1/1.5.3.1, Presta Store Manager von eMagicOne. Mitarbeit und Tests bei Entwicklerversionen. We speak: Deutsch + English + Português + Español(Castellano) + Français. http://www.prestasho...mit-prestashop/
Freelancer für Prestashop zu kleinen Preisen - https://www.facebook.com/Cd2500

#13
Danny Sam

    PrestaShop Newbie

  • Members
  • Pip
  • 3 posts

From 1277675889:

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?

#14
Danny Sam

    PrestaShop Newbie

  • Members
  • Pip
  • 3 posts
can any one help me on this? I want to show the available combinations along with the reference and the cost. pls help..

#15
Dmcwebd

    PrestaShop Apprentice

  • Members
  • PipPip
  • 55 posts
is there any way to show the stock for each combination?
that would be great
thx

#16
em.pe

    PrestaShop Newbie

  • Members
  • Pip
  • 8 posts

From 1277675889:

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:

Quote

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?

Quote

Group1: size_A Group2: color_A, color_B, color_C ...
Group1: size_A, size_B Group2: color_A, color_B ...
...



Thanks in advance.

#17
Cosmi

    PrestaShop Newbie

  • Members
  • Pip
  • 18 posts
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!

#18
corint1

    PrestaShop Apprentice

  • Members
  • PipPip
  • 171 posts
how to test the products contained in the category page(product-list.tpl) if there are combinations. I want to disable the "add to cart" only for products that are combinations

#19
rocky

    PrestaShop Superstar

  • US Moderators
  • 9995 posts
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}

Free PrestaShop Guides - Hover over CMS and then PrestaShop on the menu to view all guides

#20
corint1

    PrestaShop Apprentice

  • Members
  • PipPip
  • 171 posts
Thanks for your answer was useful but with an amendment replacing "== 0" with "> 0"... will be a problem elsewhere ?