Hi all,
Since a few days there are no results showing on the results-page and I'm not sure whats causing this.
LayeredNavigation is active and shows data in de sidebar what means there are products found, but the right column is empty.
This is the HTML-output.
The sidebar contains the results (attributes like color and size) but "column main" is pretty empty.
This is the output of the template path hints in case it's helpful:
Does anyone have an idea what could go wrong?
I'm using Magento 2.1.4 and the Porto theme of Smartwave.
Thanks in advance!
Wouter
It could be that there's a PHP error that's causing the output of products to fail. Have you checked the logs after turning on logging to the most sensitive level?
You could also try switching back to the default theme to see if it's something in the theme.
Hi, thanks for replying.
In the log I see this error when searching:
main.CRITICAL: Invalid method Magento\Framework\View\Element\Template::isContentMode [] []
An other error I got was regarding the StripTags function in the Filter of Magento.
The variable that is checked by strip_tags was an array, not a string.
I solved this by using a simple check:
if(is_array($value)) { $value = implode($value); }
I think it's weird because the search-component and this "isContentMode" is not changed at all.