necroshine Posted June 24, 2015 Share Posted June 24, 2015 Hi, I need to add multiple attributes to a product but I do not need to have multiple combinations. Ex: Laptop Color (Black or White) Mouse Color (Black or Gray) I only need to manage stock of the laptop by color but I do not care about the mouse color. From what I tested, currently I have to create combinations of all attributes, and that means I have to manage the stock for all the combinations Any one knows a module that is capable of something like this? Thnak You. Link to comment Share on other sites More sharing options...
LuzoWeb Posted June 25, 2015 Share Posted June 25, 2015 (edited) Hi, A module is not enough. We must review the entire process if you want to simplify entering the stock. The easiest way is to modiffier the PrestaShop core. Edited June 25, 2015 by LuzoWeb (see edit history) Link to comment Share on other sites More sharing options...
necroshine Posted June 25, 2015 Author Share Posted June 25, 2015 Thanks for your reply! Although i'm a developer, i'm not familiar with Prestashop, but I think the module doesn't have to be that "radical" Essentially whet I need, is a module that can add a combobox field or a color choice field on the product page for the buyer to choose, those fields don't need to be associated with the current prestashop attribute/combination system. Link to comment Share on other sites More sharing options...
LuzoWeb Posted June 25, 2015 Share Posted June 25, 2015 (edited) I only need to manage stock of the laptop by color but I do not care about the mouse color. The easiest way is to modiffier the PrestaShop core. For example, modify prestashp core to assume -1 in stock to inhibite the stock behaviour. Else, i hope you a good refactoring Edited June 25, 2015 by LuzoWeb (see edit history) Link to comment Share on other sites More sharing options...
Naldinho Posted June 26, 2015 Share Posted June 26, 2015 There is a module that does this Attribute Wizard Pro by Presto Changeo with the intended purpose being to circumvent the issues that having too many combinations creates. For example, I have products that have 8-10 attributes with 3-10 options per attribute so the number of combinations grows quickly and PrestaShop has issues dealing with products that have more than 2500-3000 combinations. I can't give you any guidance on how the module handles inventory since as a custom manufacturer the concept of stock makes no sense so I disabled inventory management. Link to comment Share on other sites More sharing options...
akelwood Posted February 4, 2016 Share Posted February 4, 2016 (edited) Hey, don't know if it is to late... anyway i had the same issue, wanted to associate mulitples colors on one product for a filter purpose, because i can have product with multiples colors, but no need to manage colors choices on the product page. A quick (an dirty) solution is to add combination with single colors into your Product > Combination Then add some quantities into it Product > Quantities And finally, hack the product.tpl (i use default-bootstrap on Prestashop 1.6) around line 300 approx (i already modified it) replace {elseif ($group.group_type == 'color')} by {elseif ($group.group_type == 'color') && 1==0} Edited February 4, 2016 by akelwood (see edit history) Link to comment Share on other sites More sharing options...
onlydeshpande Posted December 26, 2018 Share Posted December 26, 2018 On 2/4/2016 at 6:37 PM, akelwood said: Hey, don't know if it is to late... anyway i had the same issue, wanted to associate mulitples colors on one product for a filter purpose, because i can have product with multiples colors, but no need to manage colors choices on the product page. A quick (an dirty) solution is to add combination with single colors into your Product > Combination Then add some quantities into it Product > Quantities And finally, hack the product.tpl (i use default-bootstrap on Prestashop 1.6) around line 300 approx (i already modified it) replace {elseif ($group.group_type == 'color')} by {elseif ($group.group_type == 'color') && 1==0} @Akelwood - I tried the above solution but it didnt work. The error I get on product detail page is "this combination is not available" and Add to cart button is hidden. Any solution? 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