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

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

  •  12-07-2023
  •  | 
  •  

Domanda

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

È stato utile?

Soluzione

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();
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top