pawelszulc Posted October 16, 2020 Share Posted October 16, 2020 Im in product backoffice and editing product but when i click remove feature and save product, after refresh feature exist. whether it is possible to check how the data from the product is saved? Link to comment Share on other sites More sharing options...
teemui Posted February 10, 2021 Share Posted February 10, 2021 Hi, I have the same problem at 1.7.7.1. I cant remove the features, if I delete the feature and go away, then come back and it's there again. and if I delete the features they usually duplicate so theres a big list and I can't delete them. It's driving me nuts. Link to comment Share on other sites More sharing options...
endriu107 Posted February 10, 2021 Share Posted February 10, 2021 This is knowed bug, it happens when you fill input with custom value but not choose from select any feature name. Only way to fix it is clear those data in database. 1 Link to comment Share on other sites More sharing options...
teemui Posted February 10, 2021 Share Posted February 10, 2021 10 minutes ago, endriu107 said: This is knowed bug, it happens when you fill input with custom value but not choose from select any feature name. Only way to fix it is clear those data in database. Ok, thank you for the info. How can I remove the data from database? Link to comment Share on other sites More sharing options...
endriu107 Posted February 10, 2021 Share Posted February 10, 2021 You need to login to your database and edit tables: PREFIX_feature_product - delete all row where id_feature is 0 - also remember id_feature_value all deleted rows you will need this later PREFIX_feature_value_lang - delete all row where id_feature_value is same like above PREFIX_feature_value - delete all row where id_feature is 0 It is good practice to create copy database before editing, in case of trouble you wil be able to restore it. 2 Link to comment Share on other sites More sharing options...
teemui Posted February 10, 2021 Share Posted February 10, 2021 Thank you, got them removed! Link to comment Share on other sites More sharing options...
Tos85 Posted May 30, 2023 Share Posted May 30, 2023 Hello, I need to remove custom features from a single product. Can I proceed like this? DELETE FROM PREFIX_feature_value_lang WHERE id_feature_value IN ( SELECT id_feature_value FROM pm_feature_product WHERE id_product = ID_PRODUCT ); DELETE FROM PREFIX_feature_value WHERE id_feature_value IN ( SELECT id_feature_value FROM pm_feature_product WHERE id_product = ID_PRODUCT ); DELETE FROM PREFIX_feature_product WHERE id_product = ID_PRODUCT; Best, 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