How to delete product custom option value programmatically in Magento? [closed]

StackOverflow https://stackoverflow.com/questions/23388263

  •  12-07-2023
  •  | 
  •  

Question

I want to remove a custom-option value for a product. Please help me.

Était-ce utile?

La solution

If ,you want delete option of product custom then used below code.

Where $valueId= option ID

$optionValue=Mage::getModel('catalog/product_option_value')->load($valueId);
$optionValue->delete();
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top