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

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

  •  12-07-2023
  •  | 
  •  

Вопрос

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