- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
/**
* Used to show configurable product attributes in case when all elements are out-of-stock
*
* "$_product->isSaleable() &&" should be commented out at line #100 (where "container2" block is outputted) in catalog/product/view.phtml
* to make this work
*
* @see Mage_Catalog_Model_Product::isSalable
* @param object $observer
*/
public function onCatalogProductIsSalableAfter($observer)
{
if (Mage::getStoreConfig('amstockstatus/general/outofstock'))
{
$salable = $observer->getSalable();
$stack = debug_backtrace();
foreach ($stack as $object)
{
if (isset($object['file']))
{
if ($object['file'])
{
if ( isset($object['file']) && false !== strpos($object['file'], 'options' . DIRECTORY_SEPARATOR . 'configurable'))
{
$salable->setData('is_salable', true);
}
}
}
}
}
}
Вот такой вот веселый модуль для Magento, одна из возможностей которого - отобразить опции для всех out-of-stock вариантов конфигурируемого товара.
Комментарии (0) RSS
Добавить комментарий