When the specific product does not save when returning to the bundled item page, your product's has_options and required_options might have changed. Try changing these with an import of your SKU,
Note: you may need to change it in the database under catalog_product_entity.
An example of some queries:
SELECT * FROM catalog_product_entity WHERE sku = '219266';
UPDATE catalog_product_entity SET required_options = 0 WHERE sku = '219266';
This should solve it.
No comments:
Post a Comment