- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-09-2021
06:49 AM
07-09-2021
06:49 AM
Some product is not showing in frontend
Hi I am new here
I update my product stock and status from disable to enable. after that I run indexer:reindex and i get error
When i check index management the product eav is not indexed
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-14-2021
03:35 AM
08-14-2021
03:35 AM
Re: Some product is not showing in frontend
Run the following command :-
1. Get Index Types Info
php bin/magento indexer:info
From the output, you will see the code for index type Product EAV is catalog_product_attribute.
2. checking the status of all the index types by using this command:
php bin/magento indexer:status
3. Reset all the indexes type
php bin/magento indexer:reset
4. Now catalog_product_attribute reindexed by using the following command:
php bin/magento indexer:reindex catalog_product_attribute
I hope it will help you Click Kudos and Accept as Solution.