bmwjoeytsang Posted August 10, 2016 Share Posted August 10, 2016 When try to add new product and select "Pack of existing products" and Virtual product", it will show the error "You cannot use combinations with pack" and "You cannot use combinations with a virtual product. Now my eshop only can add standard product, Can anyone help to solve this problem. Thanks My platform: PrestaShop 1.6.1.6 Windows 2012 Server XAMPP 1.8.3 PHP: 5.5.15 Link to comment Share on other sites More sharing options...
rocky Posted August 10, 2016 Share Posted August 10, 2016 PrestaShop doesn't have this feature. You'll need to search for a module on the forums or on PrestaShop Addons. Link to comment Share on other sites More sharing options...
bmwjoeytsang Posted August 10, 2016 Author Share Posted August 10, 2016 Hi Rocky Thanks for your reply! I found this two option on product page which allow me to select when create new product, so I think it is the standard feature of prestshop! If this is not the standard version, why prestashop have this two option on product page? It will make us confuse Link to comment Share on other sites More sharing options...
rocky Posted August 10, 2016 Share Posted August 10, 2016 PrestaShop does support packs and virtual products, but not if there are combinations on the product. You need to go to the Combinations tab and delete all the combinations, then you'll be able to change the product to a pack or virtual product. Link to comment Share on other sites More sharing options...
ELITIV Posted August 16, 2016 Share Posted August 16, 2016 Hi. How to check if product isPack in .tpl? I want to check in product.tpl - { if state } - if product is "Pack of existing products" {if $product_type == Product::PTYPE_PACK} not working.... I want to return boolean. (PS 1.6.1.4) Any suggestion.... THX in advance. Link to comment Share on other sites More sharing options...
rocky Posted August 17, 2016 Share Posted August 17, 2016 Try the following in product.tpl: {if Pack::isPack($product->id)} And the following in product-list.tpl: {if Pack::isPack($product.id_product)} 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