Question

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

Was it helpful?

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();
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top