fidesio/attribute-index-fix

N/A

Installs: 75

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 6

Forks: 3

Type:magento2-module

1.1.0 2017-09-23 11:47 UTC

This package is not auto-updated.

Last update: 2024-04-14 01:20:30 UTC


README

Magento 2 supports custom source models for attributes except for indexing them into the catalog_product_index_eav table (which feeds layered navigation).

The original problem is found in \Magento\Catalog\Model\ResourceModel\Product\Indexer\Eav\Source:302 where it ensures that the values saved exist in the eav_attribute_option table. When using that custom source model, those values do not exist.

The first / easy solution is to comment out those lines. That doesn't work for production so a more durable method needs to be had. While using a preference is not preferrable, this will solve the problem in the short term.

After some research and many hours spent, I found that @maderlock has a good fix: magento/magento2#417 (comment)

Here is how to get this running:

  • composer require fidesio/attribute-index-fix
  • php bin/magento module:enable SwiftOtter_AttributeIndexFix
  • php bin/magento cache:clean