Magento show empty grouped product -


i want tot display grouped products in magento(version 1.9.1.1) if don't have active simple product attached them.

it's possible me view grouped product on frontend if visit product using direct url, when use search form or check category page don't see product.

if activate simple product associated grouped product grouped product appears in category page , search form.

thanks in advance!

this due bug in magento's grouped product price indexer (mage_catalog_model_resource_product_indexer_price_grouped).

the indexing process takes account grouped products have simple products associated, see mage_catalog_model_resource_product_indexer_price_grouped line 118:

if (!is_null($entityids)) {     $select->where('l.product_id in(?)', $entityids); } 

this needs changed

if (!is_null($entityids)) {     $select->where('e.entity_id in(?)', $entityids); } 

to make work. also, mass indexing of product prices (via admin interface or via shell) fixes problem because reindexall() function of named class not limit grouped products have associated simple products either.

please note shouldn't make changes within core file overwrite class instead.

the issue has been reported magento.


Comments

Popular posts from this blog

Java 3D LWJGL collision -

spring - SubProtocolWebSocketHandler - No handlers -

methods - python can't use function in submodule -