archproject Posted February 3, 2011 Share Posted February 3, 2011 Hi all, I have a few combinations generated from the Product combination generator ... and I want to delete some of it efficiently without clicking the X button 36 times (need 36 combinations deleted)Please help Link to comment Share on other sites More sharing options...
AnnaEw Posted May 12, 2011 Share Posted May 12, 2011 I need this item too! Is there a way to place a tick box to select each combination I need to delete and then delete them all in 1 step? Help please! Link to comment Share on other sites More sharing options...
need4speed Posted January 10, 2012 Share Posted January 10, 2012 Yeah it whould be a time saver! Link to comment Share on other sites More sharing options...
Aldeag Posted January 10, 2012 Share Posted January 10, 2012 I need this item too! Is there a way to place a tick box to select each combination I need to delete and then delete them all in 1 step? Help please! It´s a must! Link to comment Share on other sites More sharing options...
Carolina Custom Designs Posted January 10, 2012 Share Posted January 10, 2012 This feature is pretty much already available to you All you need to do is go to the product; click on Combinations then select 'Product combinations generator'. Once you are there simply select all the combinations you want to delete from the right column attribute box and then just click 'Delete'. It is that simple. It will delete all the combinations you have highligted at once. To select multiple attributes just hold down Ctrl or to select all within a section hold the Shift key. Hope that helps! Marty Shue Link to comment Share on other sites More sharing options...
mrbinarydigit Posted January 16, 2012 Share Posted January 16, 2012 It is not correctly beacause in this way I delete all combinations with the attribute. Example Attribute A: grey, green, noir Attribute B: s, m, l, xl If I delete m attribute, the t-shirt m is cancelled but I have for example 4 t-shirt green m, but only t-shirt noir M is not present. In this case the generator do not make it. For esample this combination does not possible with generator: T-Shirt grey s T-Shirt grey l T-Shirt grey xl T-Shirt noir s T-Shirt noir xl T-Shirt green m In case I have 30 attributes it is a problem because set it manually is very hard. There is a solution? Thanks and pardon my english. Link to comment Share on other sites More sharing options...
stfrons Posted April 5, 2012 Share Posted April 5, 2012 Currently testing Prestashop and Magento, and even though the generator in itself is good, I am truly baffeled over not being able to delete more than one combination at a time. The tick boxes are everywhere else, why not here as well? Deal breaker for me, but this must be fixable? 1 Link to comment Share on other sites More sharing options...
senor.munoz Posted April 8, 2012 Share Posted April 8, 2012 Will be a great feature something like this. I've got the same problem (but in spanish ) Thank you! 1 Link to comment Share on other sites More sharing options...
SeadT Posted November 28, 2013 Share Posted November 28, 2013 Yes, this would be very useful. Isn't there a module that would add some check-boxes on the side? Link to comment Share on other sites More sharing options...
TTYouri Posted August 26, 2014 Share Posted August 26, 2014 Any news on this? The lack of bulk updating, or at the very least bulk deleting is hugely time-consuming and user-unfriendly. Link to comment Share on other sites More sharing options...
SeadT Posted August 28, 2014 Share Posted August 28, 2014 I recommend Mass Combination Editor by Presto-Changeo. It is $75 but definitely worth it. Link to comment Share on other sites More sharing options...
Aloud Posted January 5, 2015 Share Posted January 5, 2015 Bump I took over a Prestashop website and discovered a huge amount of combinations. I created a module to give me this, PM me for further info 1 Link to comment Share on other sites More sharing options...
design4VIP Posted August 18, 2015 Share Posted August 18, 2015 Bump I took over a Prestashop website and discovered a huge amount of combinations. I created a module to give me this, PM me for further info some short desription - tutorial about it? where I must combine? which controler/classes? You use helper or "hard code"? it's solutions to 1.5 or 1.6? ~1.6.0.14 or 1.6.1? Link to comment Share on other sites More sharing options...
trevorgilligan Posted August 28, 2015 Share Posted August 28, 2015 similar to @carolinacustomdesigns if you go in to generate combos , ctrl + a will highlight them all, click delete. then click a simple attribute such as "color = red" and click add. so you only have 1 attribute. click default value as 1. this should delete everything leaving only 1 combo. if this doesnt work, another way is to go into the php my admin mysql database, find the table attributes (if there is one.) search for the id of the product in here and delete all. this might work but i cant guarantee. its what i was going to do if the step by @carolinacustomdesigns didnt work, but it did Link to comment Share on other sites More sharing options...
musicmaster Posted August 29, 2015 Share Posted August 29, 2015 (edited) Triple Edit offers the possibility to mass delete selected combinations. Edited August 29, 2015 by musicmaster (see edit history) Link to comment Share on other sites More sharing options...
YasinTürk Posted January 15, 2016 Share Posted January 15, 2016 where modules? download link? Link to comment Share on other sites More sharing options...
vucumbra Posted October 8, 2016 Share Posted October 8, 2016 Bump I took over a Prestashop website and discovered a huge amount of combinations. I created a module to give me this, PM me for further info share your module please Link to comment Share on other sites More sharing options...
IgnacioPer Posted September 3, 2019 Share Posted September 3, 2019 You can delete combinations directly from the database. I always use MariaDB, but you could also do it with phpmyadmin. TRY IT AT YOUR OWN RISK and always make a backup of the database: touching the db can shot down your website. Replace the * with your database prefix. At first you need a query to retrieve the id_product_attribute of each combination. An easy way to do this is by running the following query: SELECT id_product_attribute, reference INTO OUTFILE 'comb_id_references.csv' FIELDS TERMINATED BY ';' ENCLOSED BY '"' LINES TERMINATED BY '\n' FROM *_product_attribute; You'll get a file named 'comb_id_references.csv' that tells you the id of each combination reference. You choose the ids of the combs you're going to delete, and then run the following MYSQL queries (you have to run the queries for each combination you want to delete): DELETE FROM *_product_attribute WHERE id_product_attribute=[your id_product_attribute]; DELETE FROM *_product_attribute_shop WHERE id_product_attribute=[your id_product_attribute]; DELETE FROM *_product_attribute_combination WHERE id_product_attribute=[your id_product_attribute]; DELETE FROM *_stock_available WHERE id_product_attribute=[your id_product_attribute]; 2 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