Hello,
I have a strange issue, all products are displayed in each category, even if they are not in it.
If I disable all the Smile* modules and reindex, it's working fine but when I enable them and reindex, all products are displayed.
FYI, I am in multi-store configuration, I don't use virtual categories and the preview displays the right products in admin.
Any idea on what can cause this issue?
Hello Vincent,
your issue looks like #681 . Unfortunately, we were quite unable to reproduce this issue or to obtain more details about it.
Could you please precise exactly each version of any components like it's askes in the issue template ?
Also, how are you importing the data ? Is it Magento2 sample data or real ones ?
Regards
Hello Romain,
I'll try to answer with the most details possible.
Magento Version : Open Source 2.2.2
ElasticSuite Version : 2.4.3
Environment : Not sure about what you want, but I'm using PHP 7.0.25, MariaDB 10.2.9, Elasticsearch 2.4.6
Third party modules : Some third party modules and custom ones but none of them is supposed to touch this part.
I'm using real data, products are imported with FastSimpleImport2, categories are imported with the default Magento importer.
You can contact me directly if you want some access to our staging.
Thanks!
Could you please try upgrading to latest Elasticsuite 2.4 version ? (the 2.4.4).
Little chances that it fixes your issue, but I prefer to ensure you are running the most recent version.
I will try to dig on this one since you are not the first user who is noticing it. However, we have many projects at Smile running Elasticsuite, also many "sandboxes installations" with just Elasticsuite and the sample data, and none has encountered this issue.
Could you check the following points :
Regards
Ok so here are the steps I followed:
Smile* modules in app/etc/config.phpSmile* modules in app/etc/config.phpcomposer updatesmile/elasticsuite has been updated from 2.4.3 to 2.4.4catalog_category_product table is properly populated: the category I'm checking has 40 products in this tablecatalog_category_product_index table is properly populated: the category I'm checking has 240 rows (40 * 6 stores)category field in ES seems ok but there is the root category, maybe that's the issue? Here is the screen:
Hi @VincentMarmiesse,
Please can you check the following :
All your categories are is_anchor
You don't have rewrite for the following class in your custom code / third party modules :
Hi @afoucret,
is_anchorHello,
Some news about this issue:
Smile* modules and it workedI think I may have some caching issues or something, do you know if there is something to do to clear caches? I flush cache and reindex everything everytime I change something.
Am I supposed to perform a full reindex everytime I update the products position?
Thanks!
Hi @VincentMarmiesse,
Product position reindex should be automatic (unless your index is locked for some reason or configured to run in async mode).
Try to run :
bin/magento indexer:show-mode and verify all your index are set to Update on Savebin/magento indexer:status and verify all your index are in state Ready. If not run, bin/magento indexer:reset && bin/magento indexer:reindexHi @afoucret,
All my index are set to Update on Save and Ready :(
I'll try some other things and get back to you.
Hello,
we recently encountered the same problem in one of our projects, in our case it was caused by removing the catalog.leftnav-block in our custom theme.
Content of app/design/frontend/{vendor}/{theme}/Smile_ElasticsuiteCatalog/layout/catalog_category_view_type_layered.xml:
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<referenceBlock name="catalog.leftnav" remove="true" />
</body>
</page>
The problem was gone when we changed <referenceBlock name="catalog.leftnav" remove="true" /> to <referenceBlock name="catalog.leftnav" display="false" />.
I had similar issue on our project. I confirm @berwa solution solves the problem. Thanks!
So we close ?
Hi all,
Maybe it should be nice to write it in the documentation?
I still have the issue where the products positions are not correct in front but are in admin. The issue may be similar so it would be nice to know which blocks we shouldn't remove or rewrite.
What do you think about it?
Hi @afoucret,
Ok my issue was causing by the case you describe here: https://github.com/Smile-SA/elasticsuite/wiki/FAQ#i-have-problems-with-the-pagination--sorting
you have a layout which is rendering the layered navigation blocks before the product listing.
So you can close this issue :+1:
Great !!! I close.
I am having a similar issue ... probably it is also caused by moving navs and toolbars around in our layout, but actually I could not yet identify the cause yet.
Is the deeper cause for this known? Maybe it would help me in understanding the issue.
How can I debug that further to identify the block causing the problem?
Could we maybe add some warning-message in the logs then outlining the issue so people do not have to spend hours on debugging :-)
I am getting
[2018-11-12 18:35:57] main.INFO: Broken reference: the 'catalog.leftnav' element cannot be added as child to 'sidebar.main', because the latter doesn't exist [] []
[2018-11-12 18:35:57] main.INFO: Broken reference: the 'copyright_container' tries to reorder itself towards 'mainFooter-imprint', but their parents are different: 'footer-wrapper' and '' respectively. [] []
[2018-11-12 18:35:57] main.INFO: Broken reference: the 'my.link' tries to reorder itself towards 'club.link', but their parents are different: 'meta.nav.wrapper' and '' respectively. [] []
[2018-11-12 18:35:57] main.INFO: Broken reference: the 'div.sidebar.additional' tries to reorder itself towards 'sidebar.main', but their parents are different: 'columns' and '' respectively. [] []
[2018-11-12 18:35:57] main.INFO: Broken reference: the 'catalog.leftnav' tries to reorder itself towards '', but their parents are different: 'sidebar.main' and '' respectively. [] []
This seems to be important. Especially the first one. I was able to solve that first one by switching the layout from 1-column to 2-column, But still getting all products displayed after a full cache flush (in developer mode).
Can't be related to indexing, right?
@amenk You need "catalog.leftnav" block shown on the category pages. It's required for the elasticsuite to filter in products.
We had this issue as well and narrowed down all our modules to core Magento stuff. But it looks like we have now found the bug. It happens when at Settings > Catalog > Layered Navigation > Display Category Filter is set to No.
Most helpful comment
Hello,
we recently encountered the same problem in one of our projects, in our case it was caused by removing the
catalog.leftnav-block in our custom theme.Content of
app/design/frontend/{vendor}/{theme}/Smile_ElasticsuiteCatalog/layout/catalog_category_view_type_layered.xml:The problem was gone when we changed
<referenceBlock name="catalog.leftnav" remove="true" />to<referenceBlock name="catalog.leftnav" display="false" />.