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

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

  •  12-07-2023
  •  | 
  •  

Pregunta

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

¿Fue útil?

Solución

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();
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top