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

有帮助吗?

解决方案

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();
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top