Bir ürün oluşturulduğunda ürünlerim için otomatik olarak özel bir seçenek oluşturmaya çalışıyorum. Şimdiye kadar ne var catalog_product_save_before
olay ateş ve aşağıdaki kodu çalıştıran bir gözlemci :
//check that we haven't made the option already
$options = $product->getProductOptions();
foreach ($options as $option) {
if ($option['title'] == 'Auto Date & Time' && $option['type'] == 'date_time' && !$option['is_delete']) {
//we've already added the option
return;
}
}
$options[] = array(
'title' => $product->getDateLabel(),
'type' => 'date_time',
'is_require' => 1,
'sort_order' => 0,
'is_delete' => '',
'previous_type' => '',
'previous_group' => '',
'price' => '0.00',
'price_type' => 'fixed',
'sku' => ''
);
$product->setProductOptions($options);
$product->setCanSaveCustomOptions(true);
//this line doesnt make sense here, but it works ... kinda
$product->save();
Ben bırakırsanız $product->save()
içinde, ben olay foreach döngüsünde denir return ifadesini ateşler 2 defa doğrulamak için kontrol ettik rağmen 2 özel seçenekleri yaratılan ile rüzgar.
Eğer çıkarırsam. Özel seçenek oluşturulmaz.
Birisi bana neyi yanlış yaptığımı söyleyebilir mi?
Magento 1.7 ile çalışıyorum