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